What problem does it solve? Turning a written spec or set of tickets into working, verified code requires discipline: writing tests first, running typechecks, and reviewing the result. This Skill structures that implementation workflow so the work is built, tested, reviewed, and committed in a consistent order. ## Core Features & Use Cases - Spec-Driven Implementation: Builds the work described by the user in a spec or set of tickets. - Test-Driven Workflow: Applies /tdd at pre-agreed seams, runs typechecking and single test files regularly, and runs the full test suite once at the end. - Review and Commit: Finishes by running /code-review on the work and committing it to the current branch. - Use Case: You have a ticket describing a new API endpoint. Invoke this Skill to implement it with TDD, verify it with typechecks and tests, review the changes, and commit them to your branch. ## Quick Start Implement the work described in my spec or tickets using test-driven development, then review and commit it.