What problem does it solve?
Large, unreviewed code changes often go in the wrong direction before anyone notices. This Skill enforces an incremental development workflow where each step is small, validated, and committed before moving on, reducing rework and keeping changes reviewable.
Core Features & Use Cases
- Smallest-Step Implementation: Breaks work into the smallest meaningful change and implements only that step.
- Feedback Checkpoints: Pauses after every step to review uncommitted changes and confirm direction with the user.
- Commit-Per-Step Discipline: Commits each validated step before agreeing on the next one.
- Use Case: When refactoring a legacy module, apply one isolated change at a time, review the diff together, confirm it compiles, commit, and only then proceed to the next change.
Quick Start
Use the tiny-stepping skill to implement this feature one small step at a time, pausing for my feedback after each step.