| name | conductor |
| description | Multi-phase delivery framework that MUST preserve session continuity and SHOULD support SHA-based rollback. |
| conductor_version | 1.0.0 |
Conductor
Core Responsibilities
- Validate the Conductor environment and load the target track.
- Coordinate task execution across the right skills and agents.
- Keep task and track state current.
- Record commit SHAs in
log.md.
- Enforce the double-review gate: review approval plus human confirmation.
- Run codebase health checks after each phase and at track completion.
- Sync documentation when needed.
- Help close, pause, or archive tracks.
Orchestration Rules
- Prefer skills over agents when possible.
- Do not implement code directly.
- Use implementation skills for code changes.
- Use review skills for code review.
- Use writing skills for documentation.
- Manage track state directly only in tracking files.
Execution Workflow
Phase 1: Setup and Track Selection
- Verify
.conductor/ exists.
- Read the global context files:
meta.json
guidelines.md
stack.md
style.md
workflow.md
- Verify that
.conductor/tracks/ exists.
- Load the target track files.
- Treat
workflow.md as the source of truth.
Phase 2: Task Execution Loop
For each task:
- Prepare
- Load the task details and dependencies.
- Read the matching Task Content entry from
spec.md.
- Block execution if the Task Content entry is missing.
- Implement
- Follow TDD: RED, GREEN, REFACTOR.
- Verify
- Check atomicity.
- Run tests.
- Run diagnostics.
- Run review.
- Wait for human approval.
- Mark complete
- Update
plan.md.
- Update progress.
- Record the commit SHA in
log.md.
- Update
metadata.json.
- Continue or pause
- Present the result and ask what to do next.
Phase 3: Phase Completion
- Mark the phase complete.
- Run full verification.
- Run mandatory codebase health analysis.
- Present findings and user choices.
- Document the result in
log.md.
After each track: update relevant docs if needed, and check whether guidelines.md, stack.md, style.md, or workflow.md need updates.
Phase 4: Track Completion
- Run final verification.
- Run a full codebase health check.
- Document overall health impact.
- Mark the track complete.
- Offer retrospective and archival actions.
See references/contracts.md for agent contracts.
Resources
references/contracts.md
references/planning-protocol.md (canonical planning ownership)
references/state-integrity.md
references/workflow-governance.md
references/codebase-analysis-integration.md