tdd-obra
Installation
SKILL.md
Test-Driven Development (TDD) Skill
Overview
This skill enforces strict test-first development methodology. The core principle: "Write the test first. Watch it fail. Write minimal code to pass." If you didn't watch the test fail, you don't know if it tests the right thing.
Quick Start
- Write one failing test - Minimal test demonstrating desired behavior
- Verify RED - Run test, confirm it fails (not errors)
- Write minimal code - Just enough to pass
- Verify GREEN - All tests pass
- Refactor - Clean up while maintaining green