From tdd-workflow
Enforces strict TDD workflow for feature implementation: write one failing test, minimal code to pass, refactor, repeat. Prevents writing full test suites upfront.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tdd-workflow:tdd-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The goal of this skill is to implement a true test driven development workflow. This means:
The goal of this skill is to implement a true test driven development workflow. This means:
Repeat this until you've completed the functionality desired.
Remember to never do any of the following:
npx claudepluginhub dgalarza/claude-code-workflows --plugin tdd-workflowEnforces strict TDD red-green-refactor cycle: write failing test first, minimal implementation to pass, then refactor. Use before coding for test-driven safe development.
Guides TDD workflow with red-green-refactor cycle: plan interfaces, tracer bullet tests, minimal implementation to green, refactor under tests. For explicit TDD requests only.