What problem does it solve?
It removes the quality and consistency failures that happen when implementing complex plans in one long, stateful agent run, by enforcing a fresh subagent per task plus a two-stage review before moving on.
Core Features & Use Cases
- Per-task fresh implementation: Dispatches an implementer subagent for each independent task using the full task context directly in the prompt to avoid accumulated-state confusion.
- Two-stage review pipeline: Runs a spec compliance reviewer first (verify exactly matches the plan), then a code quality reviewer (tests, conventions, and security-minded checks).
- Plan-to-todo execution: Reads and parses an implementation plan once, builds a todo list, and tracks task completion with commit-ready expectations.
- Integration review at the end: Performs a final integration reviewer pass to catch cross-task inconsistencies and confirm tests.
Quick Start
Use the skill to execute an implementation plan by instructing the agent to read your feature plan file once, create a todo list for all extracted tasks, then delegate each task to an implementer subagent followed by spec and quality review until everything is integrated and tests pass.