What problem does it solve? Executing a multi-task implementation plan in a single session leads to context pollution, inconsistent quality, and undetected spec drift. This Skill orchestrates plan execution through isolated subagents with enforced review gates so every task is verified before moving on. ## Core Features & Use Cases - Per-Task Subagent Dispatch: Each plan task runs in a fresh subagent with full task text and project context provided directly, avoiding accumulated state confusion. - Two-Stage Review Gates: 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 feature plan. The Skill dispatches an implementer subagent for the User model, verifies it against the spec, reviews code quality, then repeats for password hashing, login endpoint, and remaining tasks before a final integration check. ## Quick Start Execute the implementation plan in docs/plans/feature-plan.md using subagent-driven development with spec and quality reviews for each task.