What problem does it solve? Turning a written implementation plan into working code often goes wrong when steps are skipped, verifications are ignored, or the executor guesses past blockers. This Skill enforces a disciplined loop: load the plan, review it critically, execute tasks in small batches, and report for feedback before continuing. ## Core Features & Use Cases - Critical plan review: Reads the full plan file first and raises questions or concerns with the user before any execution begins. - Batched execution: Works through tasks in batches of three by default, marking each task in_progress and completed, and running the verifications specified in the plan. - Stop-on-blocker discipline: Halts immediately on missing dependencies, failing tests, unclear instructions, or repeated verification failures instead of guessing. - Use Case: After generating an implementation plan with a planning skill, hand the plan file to this Skill to implement it task by task, pausing after each batch so you can review the changes and verification output. ## Quick Start Ask the assistant to execute the implementation plan in your plan file, working in batches and pausing for your feedback after each batch.