chore(setup): initialize project with CLAUDE.md, MCP config, and conductor commands

- CLAUDE.md: full project guidance (architecture, MMA workflow, beads task lifecycle,
  code conventions, policy rules, commit guidelines)
- .mcp.json: manual-slop-tools MCP server registration (26+ dev tools)
- .claude/settings.json: Claude Code project settings
- .claude/settings.local.json: MCP server permissions
- .claude/commands/: 9 conductor slash commands (conductor-setup, conductor-status,
  conductor-implement, conductor-new-track, conductor-verify, mma-tier1 through tier4)
This commit is contained in:
2026-03-01 21:30:22 -05:00
parent f8ded797e4
commit f15d1bc866
13 changed files with 771 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
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