| name | tdd-local |
| description | Test-first local development workflow for Oz using a red-green-refactor loop in the current repository |
TDD Local
Use this skill when you want Oz to work test-first in a local repository.
TDD loop
- Write or update a test that captures the next behavior
- Run the test and confirm it fails for the expected reason
- Implement the smallest change needed to make it pass
- Re-run the affected tests
- Refactor only after the test is green
- Run a broader verification pass before finishing
Constraints
- No production code before a failing test when a test can reasonably be written
- Keep each cycle focused on one behavior
- Match the repository's existing test style and framework