Implement
Implement the work described in the spec or tickets, then verify and land it. This skill is a thin orchestrator - it chains the focused skills together rather than reinventing them.
Flow
- Implement. Work through the spec or tickets. Use
/tddwherever it fits, at pre-agreed seams: write the failing test, make it pass, refactor. - Verify. Run typechecking and single test files regularly as you go, then run the full test suite once at the end. Run these through your project's tooling (for example
devenv --no-tui shell -- <cmd>). Don't move on while checks are red. - Review. Use
/code-reviewto review the work before committing. - Commit. Commit to the current branch using a conventional commit message.
Keep each step honest: don't skip Verify or Review, and don't commit over failing checks.
Adapted from mattpocock/skills (MIT).