What problem does it solve? Large features implemented in one pass produce bugs that are hard to locate, broken builds between steps, and commits that are impossible to review or revert. This Skill enforces an incremental workflow where every change is built, tested, and committed in small working slices. ## Core Features & Use Cases - Vertical Slicing: Breaks features into complete end-to-end paths (database migration, API route, UI form) so each slice leaves the system in a working, testable state. - Risk-First Ordering: Tackles the riskiest integration first so failures surface before significant effort is invested. - Scope & Simplicity Discipline: Prevents scope creep, premature abstraction, and unrelated refactors through explicit implementation rules and red-flag detection. - Use Case: When adding a full CRUD feature to a Next.js app, implement create, list, edit, and delete as four separate tested slices instead of one 500-line change, keeping the build green after every commit. ## Quick Start Ask the AI to implement the new feature incrementally in small tested slices, committing after each working step.