Execute
Implements tasks using a TDD workflow with specialized executor subagents.
What Happens
- The orchestrator spawns
konductor-executorsubagents for each task - Each executor follows TDD: write tests first, then implement
- Subagents start with fresh context containing only relevant specs
- Progress is tracked in
.konductor/state.toml
TDD Workflow
For each task:
- Write failing test based on acceptance criteria
- Implement minimal code to pass the test
- Refactor while keeping tests green
- Commit with clear message
Usage
Context Rot Prevention
Each executor subagent starts fresh with only the current phase plan and relevant specs. This prevents accumulated conversation history from degrading decision quality.