Skip to main content
ClaudeWave
Slash Command238 estrellas del repoactualizado 4mo ago

status

The status command provides a unified dashboard of Gastown operations by querying active convoys, running agents, and pending tasks. Use it to monitor system health, identify what work is in progress, see which agents are active, and discover tasks ready for assignment without blockers.

Instalar en Claude Code
Copiar
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/maslennikov-ig/claude-code-orchestrator-kit/HEAD/.claude/commands/status.md -o ~/.claude/commands/status.md
Después abre una sesión nueva de Claude Code; el slash command carga automáticamente.

status.md

Show a unified view of everything happening in Gastown.

**What you must do:**

1. Determine the rig name:
   ```bash
   RIG=$(basename "$(git rev-parse --show-toplevel)")
   ```

2. Run these commands and present a consolidated summary:

   Active convoys:
   ```bash
   gt convoy list
   ```

   Town status (running agents):
   ```bash
   gt status --fast
   ```

   Pending tasks ready for work:
   ```bash
   cd ~/gt/$RIG/mayor/rig && bd ready
   ```

**Present the results as a clear summary:**

- **Active Work**: List running convoys with their polecats and progress
- **Agents**: Which polecats are active and what they're doing
- **Ready Tasks**: Tasks available for assignment (no blockers)
- **Issues**: Any health warnings if present

Keep it concise. If everything is idle, just say "No active work. X tasks ready."