What problem does it solve? Long implementation plans clutter the main conversation with step-by-step execution details, making it hard to track progress and review work. This Skill executes one plan step in a clean, isolated worker context so the main conversation stays focused while still enforcing the plan's TDD and validation contract. ## Core Features & Use Cases - Isolated Step Execution: Parses a plan file, extracts the target step plus its Context and Key Decisions sections, and dispatches a self-contained prompt to a fresh worker context. - Contract Enforcement: The worker prompt enforces TDD red-green ordering, runs every validation command, requires evidence for non-mechanical checks, and forbids out-of-scope changes or unrequested commits. - Structured Reporting: Relays a verbatim DONE or BLOCKED report with files changed, validation results, and a Next pointer for continuing the plan. - Use Case: After writing a spec and plan for a feature, run the skill with the plan name and step number to execute step 3 without polluting your main session, then review the diff and proceed to step 4. ## Quick Start Ask the AI to run implement-step with your plan name and step number, for example implement step 2 of the auth-refactor plan.