Skip to main content
ClaudeWave
Slash Command238 repo starsupdated 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.

Install in Claude Code
Copy
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
Then start a new Claude Code session; the slash command loads automatically.

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."