What problem does it solve? Turning a planned, already-designed step into working code often leads to scope creep, untested changes, and bloated diffs that are painful to review. This Skill enforces disciplined execution: one step, one test-first implementation, one clean commit. ## Core Features & Use Cases - Test-first implementation: Works in red-green-refactor cycles, writing one failing test and one minimal implementation per behavior, with unit and integration tests alongside the code. - Scope locking: Quotes the step verbatim, measures the finished diff against it, and stops rather than guessing when work is ambiguous, too large, or still needs designing. - Convention discovery: Reads the project's documented coding, testing, and commit conventions (or infers them from surrounding code and git history) instead of assuming paths or formats. - Use Case: After a planning skill decomposes a feature into numbered steps, invoke this Skill with "implement step 3 of the plan" to get a single tested, reviewable commit for exactly that step. ## Quick Start Ask the agent to implement step 3 of the delivery plan, test-first, and commit it as one reviewable diff.