
from specialist-agent10
Run disciplined TDD cycles: write a failing test, implement the minimal fix, then refactor — for features and bugfixes where correctness matters.
This skill guides an agent through strict Test-Driven Development cycles for implementing features or fixing bugs. It prescribes a RED → GREEN → REFACTOR workflow, auto-detects the project's test runner, and documents verification outputs so changes are provable.
Use when implementing business logic, calculations, authentication, payments, or any code where correctness and regressions matter. Avoid for throwaway prototypes or pure UI layout changes. Ideal for refactors that need tests added.
Agents that can run shell commands and edit code (Copilot/Codex-style or CI-capable agents) will benefit most. Recommended for agent toolchains with bash access and git integration.
This skill has not been reviewed by our automated audit pipeline yet.
/verify — Verification Before Completion
Run fresh verification commands (tests, build, lint, types) and require full output evidence before claiming work is complete or merging changes.
/learn — Interactive Learning Mode
Teaching-first implementation assistant: explains why decisions are made, walks through architecture, and produces incremental code with pedagogy for onboarding