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: Sends each plan task to a fresh delegate_task subagent with full context, preventing accumulated state from confusing later work. - Two-Stage Review Pipeline: Runs a spec compliance review first, then a code quality review, with fix-and-re-review loops until each stage passes. - Final Integration Review: After all tasks complete, dispatches a reviewer to verify cross-task consistency, run the full test suite, and confirm merge readiness. - Use Case: Given a plan file like docs/plans/auth-feature.md with five tasks (User model, password hashing, login endpoint, JWT generation, registration endpoint), the Skill creates a todo list, implements each task via TDD-following subagents, reviews each twice, and delivers a fully tested feature. ## Quick Start Execute the implementation plan in docs/plans/feature-plan.md by dispatching a fresh subagent for each task with spec and quality reviews between tasks.