tdd-methodoly-expert
TDD Methodology Expert
Enforce and reinforce Test-Driven Development (TDD) methodology throughout the software development process. This skill provides comprehensive guidance, automated validation, and continuous reinforcement of the Red-Green-Refactor cycle.
When to Use This Skill
This skill automatically activates when:
- TDD is mentioned in
CLAUDE.mdorCLAUDE.local.md - TDD is referenced in project memory
- The user explicitly requests TDD methodology
- The user asks to write tests or implement features
Use this skill for:
- Implementing new features using TDD
- Refactoring existing code with test protection
- Fixing bugs with test-first approach
- Ensuring code quality through TDD discipline
- Validating that TDD principles are being followed
Do NOT use this skill for:
- Pure design discussions without implementation
- Documentation-only tasks
- Research or exploration tasks
Core TDD Methodology
Test-Driven Development follows a strict three-phase cycle that must be repeated for every increment of functionality:
🔴 Red Phase: Write a Failing Test
Always write the test before any production code.
- Write a test that expresses the desired behavior
- Run the test and verify it fails (for the right reason)
- Confirm the failure message indicates what's missing
Red Phase Principles:
- Test must be simple and focused on one behavior
- Test name should clearly describe expected behavior
- Test should be readable without looking at implementation
- Failure should be meaningful and guide implementation
Example Flow:
1. Write: test_should_calculate_total_with_tax()
2. Run: Test fails - "ShoppingCart has no attribute 'calculate_total'"
3. ✅ Ready for Green phase
🟢 Green Phase: Make the Test Pass
Write minimal code to make the failing test pass.
- Implement the simplest code that makes the test pass
- Run the test and verify it passes
- Run all tests to ensure nothing broke
Green Phase Principles:
- Write only enough code to pass the current test
- Don't add features not required by tests
- It's okay to use shortcuts (you'll refactor later)
- Focus on making it work, not making it perfect
Example Flow:
1. Implement: def calculate_total(self, tax_rate): ...
2. Run: Test passes ✅
3. Run all: All tests pass ✅
4. ✅ Ready for Refactor phase
🔵 Refactor Phase: Improve the Code
Clean up code while maintaining passing tests.
- Identify duplication, poor names, or structural issues
- Refactor incrementally, running tests after each change
- Verify all tests still pass
- Repeat until code is clean
Refactor Phase Principles:
- Never refactor with failing tests
- Make small, safe changes
- Run tests after each refactoring step
- Improve both production code and test code
- Apply design patterns and best practices
Example Flow:
1. Identify: Duplicated tax calculation logic
2. Extract: Move to _calculate_tax() method
3. Run tests: All pass ✅
4. Improve: Better variable names
5. Run tests: All pass ✅
6. ✅ Commit and move to next feature
TDD Workflow Integration
Before Starting Any Code Task
Step 1: Understand the Requirement
- Break down the task into small, testable behaviors
- Identify the simplest test case to start with
- State which TDD phase you're entering (Red)
Step 2: Plan the Test
- Describe what test you're about to write
- Explain what behavior it will verify
- Confirm test will fail before implementation
During Implementation
Always follow this sequence:
- 🔴 Red: Write failing test → Run → Verify failure
- 🟢 Green: Write minimal code → Run → Verify pass
- 🔵 Refactor: Improve code → Run → Verify still passes
- Commit: Save working, tested, clean code
- Repeat: Next test for next behavior
Never skip phases or reverse the order.
Communicating TDD Progress
In every response involving code changes, explicitly state:
- Current phase: Which phase you're in (Red/Green/Refactor)
- Test status: Whether tests are passing or failing
- Next steps: What comes next in the cycle
Example Communication:
🔴 RED PHASE: Writing a test for calculating order total with discounts.
Test: test_should_apply_percentage_discount_to_order_total()
Expected to fail because Order.apply_discount() doesn't exist yet.
[Test code here]
Running test... ❌ Fails as expected: "Order has no attribute 'apply_discount'"
🟢 GREEN PHASE: Implementing minimal code to pass the test...
[Implementation code here]
Running test... ✅ Passes!
Running all tests... ✅ All pass!
🔵 REFACTOR PHASE: Improving the discount calculation structure...
[Refactored code here]
Running all tests... ✅ All pass!
Ready to commit this increment.
Bundled Tools and Resources
Scripts
check_tdd_compliance.py
Analyzes code to detect TDD compliance issues and code smells that indicate test-after development.
Usage:
python scripts/check_tdd_compliance.py <path-to-code>
What it checks:
- Nested conditionals (sign of poor TDD structure)
- Long methods (TDD produces small, focused methods)
- Complex boolean conditions (TDD encourages extraction)
- Missing abstractions (type checking vs polymorphism)
- Test coverage (presence of corresponding test files)
When to use:
- After completing a feature or module
- Before committing code
- When reviewing code quality
- During refactoring sessions
validate_tests.py
Validates that tests exist, are properly structured, and follow TDD patterns.
Usage:
python scripts/validate_tests.py <path-to-tests>
What it checks:
- Test file existence and structure
- Test case count and naming
- Arrange-Act-Assert pattern adherence
- Test size and complexity
- Descriptive test names
When to use:
- Before committing new tests
- When validating test quality
- During code review
- After writing a batch of tests
setup_hooks.sh
Installs git hooks and Claude Code hooks to enforce TDD methodology automatically.
Usage:
bash scripts/setup_hooks.sh <project-directory>
What it installs:
- Git pre-commit hook: Validates TDD compliance before commits
- Claude user-prompt-submit hook: Injects TDD reminders into every interaction
- Updates CLAUDE.md to document TDD requirement
When to use:
- Once at project initialization
- When onboarding new team members to TDD
- When setting up TDD enforcement for the first time
References
Load these references when deeper understanding is needed:
tdd-principles.md
Comprehensive guide to TDD methodology including:
- The Red-Green-Refactor cycle in detail
- TDD philosophy and benefits
- Best practices and common mistakes
- TDD in different contexts (unit, integration, acceptance)
- Measuring TDD effectiveness
When to reference: When explaining TDD concepts or resolving questions about methodology.
code-smells.md
Catalog of code smells that indicate test-after development:
- High-severity smells (nested conditionals, long methods, god objects)
- Medium-severity smells (type checking, duplication, primitive obsession)
- Low-severity smells (magic numbers, long parameter lists)
- Detection strategies and refactoring guidance
When to reference: When analyzing code quality or identifying non-TDD patterns.
Grep patterns for searching:
- Nested conditionals:
if.*:\s*\n\s+if - Long methods: Count lines between function definitions
- Type checking:
isinstance\(|typeof - God classes: Count methods per class
testing-patterns.md
Language-agnostic testing patterns and best practices:
- Test structure patterns (AAA, Given-When-Then)
- Test organization (fixtures, builders, object mothers)
- Assertion patterns
- Test doubles (stubs, mocks, fakes)
- Parameterized testing
- Exception testing
- Test naming conventions
When to reference: When writing tests or improving test structure.
Assets
Hook Templates
Located in assets/hook-templates/:
- pre-commit.sh: Git hook that runs TDD compliance checks before allowing commits
- user-prompt-submit.sh: Claude Code hook that injects TDD reminders before every user prompt
These templates are used by setup_hooks.sh and can be customized for specific project needs.
Further reference
See references/tdd-reference.md for prompt-based validation and setup, TDD enforcement rules, common scenarios, workflow integration, troubleshooting, and summary.
More from thedaviddias/skill-check
skill-check
Use when the user wants to validate, lint, or audit agent skill files (SKILL.md). Use when they say "validate these skills," "check this repo's skills," "lint SKILL.md files," or "audit skills in [repo URL]." Run skill-check locally or against a cloned GitHub repo and summarize findings.
2mcp-builder
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
2brainstorming
Use when starting creative work (features, components, functionality, or behavior changes) to clarify user intent, requirements, and design before implementation.
2agent-browser
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction.
2github-gh
Interact with GitHub using the `gh` CLI. Use when managing issues, PRs, workflow runs, or advanced API queries via `gh issue`, `gh pr`, `gh run`, and `gh api`.
2template-skill
Replace with description of the skill and when Claude should use it.
1