Skip to content
Development
Skill

/tdd

This skill should be used when the user asks to "add a feature using TDD", "fix a bug with TDD", "do TDD", "red-green-refactor", "write a failing test first", "use test-driven development", "start TDD", "test first approach", "TDD loop", "TDD cycle", or mentions TDD workflow,

From plugin
tdder
1414 skills7 agents2 commands1 hook
Install
$ npx -y skills add t1/tdder --skill tdd --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/tdd

Context preview

The summary Claude sees to decide when to auto-load this skill.

This skill should be used when the user asks to "add a feature using TDD", "fix a bug with TDD", "do TDD", "red-green-refactor", "write a failing test first", "use test-driven development", "start TDD", "test first approach", "TDD loop", "TDD cycle", or mentions TDD workflow,

SKILL.md

tdd.SKILL.md
name: tdd
description: >
  This skill should be used when the user asks to "add a feature using TDD", "fix a bug with TDD",
  "do TDD", "red-green-refactor", "write a failing test first", "use test-driven development",
  "start TDD", "test first approach", "TDD loop", "TDD cycle",
  or mentions TDD workflow, baby steps, guessing game, or red-green-refactor cycles.
  Not applicable for pure refactoring without new tests.

Test-Driven Development (TDD)

Strict Red-Green-Refactor discipline for adding features and fixing bugs. This skill is language-agnostic; language-specific conventions are provided by separate skills.

Core Process

1. Test List First

Create a list of test cases for **base functionality only** before writing any implementation. Use the language's equivalent of pending/todo tests (e.g., `it.todo()`, `@Disabled`, `@Ignore`). Focus on core functionality, not advanced features.

2. Test List Approval

After creating the test list, present it as markdown. Then, if the `human-in-the-loop` is not `off`, use `AskUserQuestion`:

  • **Question:** "Want to adjust the test list before we start?"
  • **Options:**
  • "Looks good, start" — proceed with the first test
  • "Add more tests" — wait for the user to specify additional tests

3. One Test at a Time

Convert exactly **one** pending test to executable test code at a time. All other tests remain as pending descriptions. Never have more than one failing test in the red phase. Implement only what is needed to make that single test pass. Do not think ahead or implement features for future tests.

4. Red-Green-Refactor Cycle

Red Phase (Compilation Error)

1. Write the test referencing a non-existent function/class. 2. Predict: "This will fail with a compilation error on `<symbol>`." 3. Run — confirm compilation error, compare with prediction.

Red Phase (Runtime Error)

1. Create an empty function/class returning a wrong value. 2. Predict: "This will fail with an assertion error — expected `<X>`, got `<Y>`." 3. Run — confirm assertion error, compare with prediction.

Green Phase

1. Predict: "This will pass after I implement `<X>`." 2. Implement **minimal** code to make the test pass. Do not add features for future tests. Do not optimize or refactor yet. 3. Run — confirm green, compare with prediction.

Refactor Phase

**Must** attempt at least one refactoring. If no improvement is possible, document why.

Trigger a **Clean Code Review**: use the Agent tool with `subagent_type=clean-code-reviewer` to spawn the clean code review agent. Pass it the paths of the implementation and test files modified in this TDD cycle.

Present the agent's findings using the **Refactoring Scope** process from the Clean Code skill (present as markdown, then, if the `human-in-the-loop` is not `off`, ask via `AskUserQuestion`). Apply approved suggestions, ensuring all tests continue to pass after each change.

**Naming evaluation (first priority):**

  • Ask: "Does this name clearly describe what the function actually does based on all tests so far?"
  • Ask: "Has the function's purpose become clearer/more specific through the latest test?"
  • Rename if the name does not capture the current full intent.

Apply the 4 Rules of Simple Design: tests pass, no duplication, reveals intent, fewest elements.

If no refactoring improves the code, document why the current state is optimal and move on.

5. Baby Steps

Make the smallest possible change to get to green. If a test fails, make it pass with the simplest implementation. Do not try to solve multiple problems at once.

Human-in-the-Loop

Check the project's `.claude/tdder.local.md` settings file (in the project root) for the human-in-the-loop level. If no settings file exists, use `AskUserQuestion` to ask:

  • **Question:** "How much involvement do you want during TDD cycles?"
  • **Options:**
  • "Every phase (Recommended)" — stop after each Red, Green, Refactor phase
  • "End of cycle" — stop after each complete Red-Green-Refactor cycle
  • "Off" — run autonomously, report results at the end
  • Persist the choice in `.claude/tdder.local.md` so subsequent sessions reuse it.

Level: `every-phase`

Stop after **every TDD phase** (Red, Green, Refactor). Summarize what was completed and explicitly ask for permission to continue:

  • After Red: "Red phase complete. Should I proceed to Green phase?"
  • After Green: "Green phase complete. Should I proceed to Refactor phase?"
  • After Refactor: "Refactor phase complete. Should I proceed to the next test?"

Level: `end-of-cycle`

Stop after each **complete Red-Green-Refactor cycle**. Summarize the full cycle and ask: "Cycle complete. Should I proceed to the next test?"

Level: `off`

Run autonomously without stopping. Report results at the end.

Failed Prediction Recovery

Regardless of level, **immediately stop** when a guessing game prediction fails significantly. Explain the prediction failure, assess implications, and ask whether to investigate further or continue.

Phase Summaries

When stopping for human review, include:

**After Red Phase:**

  • Which test was activated
  • Prediction made and whether it was correct
  • Type of failure achieved (compilation/runtime error)

**After Green Phase:**

  • Implementation approach taken (minimal code added)
  • Confirmation that test now passes
  • Trade-offs or decisions made

**After Refactor Phase:**

  • Naming changes made
  • Mass calculations (before/after, if APP skill is available)
  • Structural improvements
  • Refactoring opportunities rejected and why

TDD Mindset

TDD practices will feel counterintuitive and uncomfortable. This discomfort indicates the discipline is being followed correctly. For detailed analysis of psychological resistance, common failure modes, and recovery strategies, see `failure-modes.md`.

Best Practices

  • One assertion per test when possible
  • Clear, descriptive test names
  • Tests should be independent (no shared sta
Read more
Ships withtdder

A plugin for pi, Claude Code, and OpenCode that guides AI agents through disciplined Test-Driven Development and Clean Code practices. Note that currently this is WORK IN PROGRESS! I'm not even trying to keep it stable or tested.

Get the whole plugin

Other skills on tdder.

app
Skill

app

This skill should be used when the user asks to "calculate code mass", "measure code complexity with APP", "compare implementations using APP", "apply Absolute…

@t1@t1View Skill
clean-code
Skill

clean-code

This skill should be used when the user asks to "refactor code", "review code quality", "apply clean code principles", "check for code smells", "improve code…

@t1@t1View Skill
grill-po
Skill

grill-po

Requirements grilling session with a Product Owner (or anyone in that role). Challenges plans against the existing domain model, sharpens terminology, and…

@t1@t1View Skill
java
Skill

java

Always load this skill when writing, modifying, creating, or moving Java or Kotlin source code, or when project setup has already chosen Java/Kotlin as the…

@t1@t1View Skill