tdd
SolidThe test-first gate. Routed to by /feature (after the spec is approved), /fix, and /refactor before any implementation code is written. Six gated phases — obligation scan, red, green, obligation verify, coverage, lint. No feature code exists before Phase 1 clears; nothing reaches commit-gate until all six are green.
Install
Quality Score: 81/100
Skill Content
Details
- Author
- arbiterForge
- Repository
- arbiterForge/codeArbiter
- Created
- 4 months ago
- Last Updated
- yesterday
- Language
- Python
- License
- AGPL-3.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
test-driven-development
Rigid TDD process for writing and verifying tests before implementation. Use when implementing any feature or bugfix. Receives test case bullet points from the plan and enforces red-green cycle.
test-driven-development
Use when implementing ANY feature or bugfix, before writing implementation code. Write the failing test first, watch it fail, write minimal code to pass, refactor. Triggers whenever you are about to write production code, fix a bug, or change behavior — and especially when you catch yourself wanting to "skip tests just this once".
tdd
Use when implementing any feature or bugfix. Red-Green-Refactor cycle enforced. Write the failing test first, then minimal implementation.