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 through isolated subagents with systematic review gates so each task is verified before moving on. ## Core Features & Use Cases - Fresh Subagent Per Task: Dispatches an isolated implementer subagent via delegate_task with complete task context, preventing accumulated state from confusing later work. - Two-Stage Review Pipeline: Runs a spec compliance review first, then a code quality review, looping fixes until both pass before marking a task complete. - Final Integration Review: After all tasks finish, dispatches a reviewer to check cross-task consistency, run the full test suite, and confirm merge readiness. - Use Case: You have a plan file with five tasks for an authentication feature. This Skill reads the plan once, builds a todo list, implements each task through TDD-following subagents, reviews each against spec and quality criteria, and delivers a fully tested implementation. ## Quick Start Execute the implementation plan in docs/plans/feature-plan.md using subagent-driven development with per-task spec and quality reviews.