What problem does it solve? Executing a multi-task implementation plan in a single session leads to context pollution, inconsistent quality, and missed spec requirements. This Skill orchestrates plan execution by delegating each task to a fresh subagent and enforcing systematic review between tasks. ## Core Features & Use Cases - Per-Task Subagent Dispatch: Each plan task runs in a fresh subagent with complete task context, preventing confusion from accumulated state. - Two-Stage Review: Every task passes a spec compliance review first, then a code quality review, with fix-and-re-review loops until approved. - Final Integration Review: After all tasks complete, a reviewer checks cross-task consistency, runs the full test suite, and confirms merge readiness. - Use Case: You have a 5-task authentication plan from the writing-plans skill. This Skill dispatches an implementer for the User model, verifies it against the spec, reviews code quality, then repeats for password hashing, login endpoint, and remaining tasks. ## Quick Start Execute the implementation plan in docs/plans/feature-plan.md using subagent-driven development with spec and quality reviews for each task.