Add Claude Code conductor commands, MCP server, MMA exec scripts, and implement py_get_var_declaration / py_set_var_declaration which were registered in dispatch and tool specs but had no function bodies. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1002 B
1002 B
description
| description |
|---|
| Show current conductor track status — active tracks, phases, pending tasks |
/conductor-status
Read the conductor track registry and all active tracks, then report current project state.
Steps
- Read
conductor/tracks.mdfor the track registry - For each track directory in
conductor/tracks/:- Read
metadata.jsonfor status - Read
plan.mdand count: total tasks, completed[x], in-progress[~], pending[ ] - Identify the current phase (first phase with
[~]or[ ]tasks)
- Read
- Read
JOURNAL.mdlast 3 entries for recent activity context
Output Format
Present a summary table:
| Track | Status | Phase | Progress | Last SHA |
|-------|--------|-------|----------|----------|
Then for each in-progress track, list the specific next pending task.
Important
- This is READ-ONLY — do not modify any files
- Report exactly what the plan.md files say
- Flag any discrepancies (e.g., metadata says "new" but plan.md has [x] tasks)