From blueprint
Guides TDD workflow: understand desired behavior, write minimal failing test (Red), implement to pass (Green), simplify (Refactor). For behavioral changes or bugs with clear verification.
How this skill is triggered — by the user, by Claude, or both
Slash command
/blueprint:tdd <task reference or behavior> e.g. 'LIN-123' or 'retry logic for API client'<task reference or behavior> e.g. 'LIN-123' or 'retry logic for API client'The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this for behavioral changes where a failing test can describe the desired outcome before implementation.
Use this for behavioral changes where a failing test can describe the desired outcome before implementation.
npx claudepluginhub owainlewis/blueprint --plugin blueprintEnforces test-driven development for features, bug fixes, and refactoring. Requires failing tests before any production code, with guidance on test types and spec-to-test mapping.
Enforces Test-Driven Development: write failing tests first, then minimal code to pass, refactor. For implementation tasks, bug fixes needing regression tests, behavior changes.
Enforces RED-GREEN-REFACTOR TDD cycle: write a failing test first, then minimal code to pass, then refactor. Use when implementing features or fixing bugs during the implement phase.