--- description: Initialize session — read CLAUDE.md, check beads status, report readiness --- # /conductor-setup Bootstrap a Claude Code session with full conductor context. Run this at session start. ## Steps 1. **Read Core Document:** - `CLAUDE.md` — architecture, workflow, conventions, MMA commands 2. **Check Beads Status:** ```powershell cd C:\projects\rook bd ready --json # unblocked tasks available to work on bd list --json # full task list with dependency state ``` Identify any in-progress tasks (claimed but not done). 3. **Check Recent Git Activity:** ```powershell cd C:\projects\rook git log --oneline -10 ``` 4. **Report Readiness:** ``` ## Session Ready **Next Task:** {id} — {title} **Blocked Tasks:** {count} tasks waiting on dependencies **Last Commit:** {git log -1 oneline} Ready to: - `/conductor-implement` — work on next task - `/conductor-status` — full task overview - `/conductor-new-track` — plan new work ``` ## Important - READ-ONLY — do not modify files or claim tasks yet