What problem does it solve? Large features and multi-file changes often get written in one giant pass, making bugs hard to locate, reviews painful, and rollbacks risky. This Skill enforces an incremental delivery discipline so every change lands in small, tested, independently revertable steps. ## Core Features & Use Cases - Increment Cycle: A repeatable Implement → Test → Verify → Commit loop that keeps the codebase buildable and green after every slice. - Slicing Strategies: Vertical slices, contract-first slicing for parallel backend/frontend work, and risk-first slicing to de-risk uncertain components early. - Implementation Rules: Simplicity-first checks, scope discipline, feature flags for incomplete work, safe defaults, and rollback-friendly commits. - Use Case: When adding a full CRUD feature, deliver it as four slices (create, list, edit, delete), each tested end-to-end and committed separately, instead of one 500-line change. ## Quick Start Ask the agent to implement the next task incrementally, starting with only the database schema and API endpoint, running the test and build commands after each slice before moving to the UI.