What problem does it solve? Large features implemented in a single pass produce unreviewable commits, hidden bugs, and broken intermediate states. This Skill enforces an implement-test-verify-commit cycle so every increment leaves the codebase in a working, testable state. ## Core Features & Use Cases - Increment Cycle Discipline: Guides each slice through implement, test, verify, and commit steps before moving to the next piece of functionality. - Four Slicing Strategies: Provides vertical slicing, contract-first slicing, risk-first slicing, and sequential subagent slicing for different project shapes. - Subagent Orchestration Rules: Defines workspace modes, single-writer constraints, context compaction blocks, scratchpad handoffs, and failure circuit breakers for delegating slices to subagents. - Use Case: When building a task management feature, implement create-task end-to-end first (DB, API, UI), verify tests pass, commit, then add list, edit, and delete as separate verified slices. ## Quick Start Ask the agent to implement the feature incrementally using thin vertical slices, testing and committing after each slice.