What problem does it solve?
This skill coordinates a team of coder agents to implement a feature specification by breaking work into waves, dispatching tasks in parallel, and gating with code reviews between waves. It does not write code itself but orchestrates the work and ensures smooth handoffs between waves.
Core Features & Use Cases
- Wave-based orchestration: loads a specs/{feature}/ folder, identifies the next incomplete wave, and prepares the tasks for parallel execution.
- Parallel coder agents: spawns coder subagents for each task with focused context, enabling concurrent progress.
- Code review gate: runs a unified review step between waves to verify integration, quality, and safety.
- Resumable progress tracking: can resume from the exact point it left off by reading the spec task statuses.
- Non-code-writing orchestrator: the orchestrator manages coordination and commits only after successful review.
Quick Start
Create a specs/{feature}/ folder with task-{nn}-*.md files, then invoke the skill to start implementing the feature.