What problem does it solve?
This Skill solves the problem of implementing an execution plan reliably by coordinating task decomposition, fresh execution context per task, and automated gatekeeping to prevent spec drift and low-quality code.
Core Features & Use Cases
- Fresh subagent per task: Dispatches a clean implementer for each task to reduce context pollution and cross-task confusion.
- Two-stage review per task: Runs a spec-compliance review first, then a code-quality review to catch correctness and workmanship issues early.
- Plan-driven task execution: Reads and parses an implementation plan once, extracts the full task specs, and then executes tasks using those concrete instructions.
- Use Case: When you have an implementation plan for a feature (e.g., adding an auth endpoint and data model changes), this Skill executes each task with TDD-aligned instructions and iterative review loops before moving on.
Quick Start
Use the subagent-driven-development skill to execute an existing implementation plan by dispatching an implementer and running spec-compliance and code-quality reviews for each extracted task.