What problem does it solve? Large features implemented in one pass produce unreviewable diffs, hidden bugs, and broken builds. This Skill enforces a disciplined increment cycle — implement, test, verify, commit — so every change lands in a working, revertable state. ## Core Features & Use Cases - Increment Cycle: Each slice is implemented, tested against the repository's own test/build/lint commands, verified, and committed before moving on. - Slicing Strategies: Vertical slices, contract-first slicing for parallel backend/frontend work, and risk-first slicing to surface uncertainty early. - Scope and Simplicity Rules: Guards against scope creep, premature abstraction, mixed-concern commits, and broken intermediate states, with feature flags for incomplete work. - Use Case: When building a task management feature, deliver it as four slices — create, list, edit, delete — each fully tested and committed end-to-end rather than one 500-line changeset. ## Quick Start Implement this feature incrementally, starting with just the database schema and API endpoint, and run the test suite after each slice before committing.