test-driven-developmentlisted
Install: claude install-skill DYAI2025/Plumbline
# Test-driven Development
## Red-Green-Refactor
1. Pick one REQ/task.
2. Write or update the smallest failing test first.
3. Run it and record the failing command/output.
4. Implement the minimum production change.
5. Run the targeted test, then the broader suite.
6. Refactor only with tests green.
Do not add production behavior that is not covered by a requirement or regression test.