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>
1.5 KiB
1.5 KiB
description
| description |
|---|
| Initialize conductor context — read product docs, verify structure, report readiness |
/conductor-setup
Bootstrap a Claude Code session with full conductor context. Run this at session start.
Steps
-
Read Core Documents:
conductor/index.md— navigation hubconductor/product.md— product visionconductor/product-guidelines.md— UX/code standardsconductor/tech-stack.md— technology constraintsconductor/workflow.md— task lifecycle (skim; reference during implementation)
-
Check Active Tracks:
- List all directories in
conductor/tracks/ - Read each
metadata.jsonfor status - Read each
plan.mdfor current task state - Identify the track with
[~]in-progress tasks
- List all directories in
-
Check Session Context:
- Read
TASKS.mdif it exists — check for IN_PROGRESS or BLOCKED tasks - Read last 3 entries in
JOURNAL.mdfor recent activity - Run
git log --oneline -10for recent commits
- Read
-
Report Readiness: Present a session startup summary:
## Session Ready **Active Track:** {track name} — Phase {N}, Task: {current task description} **Recent Activity:** {last journal entry title} **Last Commit:** {git log -1 oneline} Ready to: - `/conductor-implement` — resume active track - `/conductor-status` — full status overview - `/conductor-new-track` — start new work
Important
- This is READ-ONLY — do not modify files
- This replaces Gemini's
activate_skill mma-orchestrator+/conductor:setup