What problem does it solve?
It turns an implementation plan into reliable code by executing tasks with fresh subagents and enforcing two-stage validation (spec compliance first, then code quality).
Core Features & Use Cases
- Two-stage review pipeline: Verifies each task against the original plan spec, then checks code quality and security before moving on.
- Fresh subagent per task: Prevents context pollution by giving each task a clean, focused execution environment.
- Plan-to-todo execution: Reads and parses a plan once, then dispatches tasks with complete task context instead of re-reading the plan repeatedly.
- TDD-aligned implementation: Requires implementer subagents to write failing tests first, implement minimally, verify tests pass, and avoid regressions.
- Batch integration pass: Performs a final integration review after all tasks are completed.
Examples
- Converting an authentication or feature plan into working code by breaking it into small tasks like “create model”, “add hashing”, and “create endpoint”, with automated spec and quality checks for every task.
Quick Start
Ask the agent to execute your existing implementation plan by running the subagent-driven-development workflow with spec-compliance review followed by code-quality approval for each task.