conductor
10
总安装量
10
周安装量
#29484
全站排名
安装命令
npx skills add https://github.com/reinamaccredy/maestro --skill conductor
Agent 安装分布
antigravity
7
claude-code
6
codex
6
gemini-cli
6
opencode
5
windsurf
4
Skill 文档
Conductor: Implementation Execution
Execute tracks with TDD and parallel routing.
Entry Points
| Trigger | Action | Reference |
|---|---|---|
/conductor-setup |
Initialize project context | workflows/setup.md |
/conductor-implement |
Execute track (auto-routes if parallel) | workflows/implement.md |
ca, /conductor-autonomous |
Run ralph.sh directly (no Task/sub-agents) | workflows/autonomous.md |
/conductor-status |
Display progress overview | structure.md |
/conductor-revise |
Update spec/plan mid-work | workflows.md#revisions |
Related Skills (Not Owned by Conductor)
| For… | Use Skill | Triggers |
|---|---|---|
| Design phases (1-8) | designing | ds, cn, /conductor-design, /conductor-newtrack |
| Session handoffs | handoff | ho, /conductor-finish, /conductor-handoff |
Quick Reference
| Phase | Purpose | Output | Skill |
|---|---|---|---|
| Requirements | Understand problem | design.md | designing |
| Plan | Create spec + plan | spec.md + plan.md | designing |
| Implement | Build with TDD | Code + tests | conductor |
| Autonomous | Ralph loop execution | Auto-verified stories | conductor |
| Reflect | Verify before shipping | LEARNINGS.md | handoff |
Core Principles
- Load core first – Load maestro-core for routing table and fallback policies
- TDD by default – RED â GREEN â REFACTOR (use
--no-tddto disable) - Beads integration – Zero manual
bdcommands in happy path - Parallel routing –
## Track Assignmentsin plan.md triggers orchestrator - Validation gates – Automatic checks at each phase transition
Directory Structure
conductor/
âââ product.md, tech-stack.md, workflow.md # Project context
âââ code_styleguides/ # Language-specific style rules
âââ CODEMAPS/ # Architecture docs
âââ handoffs/ # Session context
âââ spikes/ # Research spikes (pl output)
âââ tracks/<track_id>/ # Per-track work
âââ design.md, spec.md, plan.md # Planning artifacts
âââ metadata.json # State tracking (includes planning state)
See structure.md for full details.
Beads Integration
All execution routes through orchestrator with Agent Mail coordination:
- Workers claim beads via
bd update --status in_progress - Workers close beads via
bd close --reason completed|skipped|blocked - File reservations via
file_reservation_paths - Communication via
send_message/fetch_inbox
See beads/integration.md for all 13 integration points.
/conductor-implement Auto-Routing
- Read
metadata.json– checkorchestratedflag - Read
plan.md– check for## Track Assignments - Check
beads.fileScopes– file-scope based grouping (see execution/file-scope-extractor) - If parallel detected (â¥2 non-overlapping groups) â Load orchestrator skill
- Else â Sequential execution with TDD
File Scope Detection
File scopes determine parallel routing (see execution/parallel-grouping):
- Tasks touching same files â sequential (same track)
- Tasks touching different files â parallel (separate tracks)
Anti-Patterns
- â Manual
bdcommands when workflow commands exist - â Ignoring validation gate failures
- â Using conductor for design (use designing instead)
- â Using conductor for handoffs (use handoff instead)
Related
- designing – Double Diamond design + track creation
- handoff – Session cycling and finish workflow
- tracking – Issue tracking (beads)
- orchestrator – Parallel execution
- maestro-core – Routing policies