A demo project for testing and showcasing claude-conductor.
This is a synthetic Python/React project used to demonstrate how claude-conductor coordinates parallel Claude Code sessions. The code is placeholder; the value is in the SESSIONS.md and dashboard that show multi-session orchestration in action.
- 3 parallel sessions with different personas (Akira, Sasha, Robin) working on backend, frontend, and tests simultaneously
- Live dashboard showing session status, persona icons, activity, elapsed time, and dependency tracking
- Plan checklist that auto-updates as sessions complete
- Conflict detection when sessions touch overlapping file scopes
- CLI + dashboard side-by-side for full coordination visibility
src/
api/ Akira's domain: flight-path API endpoints
routes.py
models.py
ui/ Sasha's domain: launch sequence UI wizard
components/
pages/
tests/ Robin's domain: integration test suite
test_api.py
test_ui.py
# Install claude-conductor
cd ../claude-conductor && bash install.sh
# Initialize conductor in this project
cd ../acme-jet-pack
claude-conductor init
# Register parallel sessions
claude-conductor add --persona Akira --task "Implement flight-path API endpoints" --files "src/api/"
claude-conductor add --persona Sasha --task "Build launch sequence UI wizard" --files "src/ui/" --depends "#1"
claude-conductor add --persona Robin --task "Write integration tests" --files "src/tests/, src/api/" --depends "#1"
# Open the live dashboard
claude-conductor dash --open
# Update session status as work progresses
claude-conductor u 1 coding --activity "writing endpoints"
claude-conductor d 1
claude-conductor u 2 coding --activity "building components"
# Check for file conflicts
claude-conductor conflictsThis project is part of the Code Katz suite of tools for Claude Code.
MIT