What problem does it solve? Large feature implementations often fail because too many changes are batched together, making bugs hard to isolate and diffs impossible to review. This Skill enforces a disciplined one-task-at-a-time workflow so every change is small, verified, and reversible. ## Core Features & Use Cases - Single-Task Focus: Picks exactly one task from the plan, re-reads its acceptance criterion, and implements only the minimal change required. - Thin Vertical Slices: Each task produces working end-to-end code, using feature flags for partially complete functionality. - Verify-Before-Next Discipline: Runs type checks, tests, and regression checks before moving on, with a structured implementation log and per-task commits. - Use Case: You have a multi-task feature plan for a web app. Invoke this Skill to execute each task sequentially, producing small reviewable commits and a complete implementation log instead of one risky mega-diff. ## Quick Start Use the incremental-implementation skill to execute the next incomplete task in my feature plan, verify it, and commit before continuing.