implement-feature
Installation
SKILL.md
Implement Feature
Orchestrate the parallel implementation of a feature specification by dispatching coder agents wave-by-wave. This skill reads a spec folder (created by create-spec), identifies the next wave of parallelizable work, spawns coder agents for each task, and runs a code review gate before moving to the next wave.
The orchestrator never writes code itself. Its job is to:
- Parse the spec and determine what to do next
- Give each coder agent exactly the context it needs
- Verify the results via code review
- Manage the fix loop if review finds issues
- Track progress and commit completed waves
Prerequisites
A specs/{feature}/ directory containing:
README.mdwith wave assignments and task status checkboxesrequirements.mdwith feature contexttasks/task-{nn}-*.mdfiles (one per task, self-contained)
This structure is produced by the create-spec skill. If the user doesn't have a spec folder, suggest they create one first.