Claude Skill

test-driven-development

Drives implementation by writing a failing test first, then the smallest code that passes it. Use this before writing implementation code for any feature or bugfix, when a bug needs a regression test, when existing code is hard to change safely, or when someone asks whether a cha

LLM Mart · 0 points · 14 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download cbrock84-headcount-plugins_technology_skills_test-driven-development-9cbf340.zip · 1 KB
Part of cbrock84/headcount — 160 skills

Install

skills CLI npx skills add https://github.com/cbrock84/headcount/tree/main/plugins/technology/skills/test-driven-development
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install cbrock84-headcount@llmmart
Git git clone https://github.com/cbrock84/headcount.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole cbrock84/headcount collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Test-driven development

The loop

  1. Red — write one test that fails for the right reason. Run it. A test that passes immediately is testing nothing; a test that errors instead of failing is testing the wrong thing.
  2. Green — the smallest change that makes it pass. Ugly is fine here.
  3. Refactor — clean up with the test green. If it goes red, you changed behavior, not structure.

Never skip step 1. Writing the test after the code produces a test shaped to the implementation, which is the one shape that cannot catch the implementation being wrong.

What to test

Test behavior at the boundary a caller actually depends on. For each unit ask: if this broke silently, who notices and how? If the answer is nobody, delete the code rather than test it.

  • Test: branching logic, boundary conditions, error paths, anything with a past bug, contracts between modules.
  • Do not test: getters, framework behavior, private helpers reachable only through a public path already covered, exact wording of log lines.

Bugs

Every bug gets a failing test before the fix, reproducing it at the smallest scope that shows it. That test is the proof the bug existed and the guard that it stays fixed. A fix without one is a claim.

Rules

  • One behavior per test. A test asserting five things tells you almost nothing when it fails.
  • The test name states the behavior, not the method: rejects_expired_token, not test_auth.
  • Never weaken an assertion to get green. If a test is inconvenient, the design is telling you something.
  • Never mock what you own — mock the network and the clock, not your own modules. Mocking your own code tests the mock.

Never

  • Write the test after the code and call it test-driven. You will test what you built rather than what was required.
  • Skip watching the test fail. A test that has never failed proves nothing.
  • Delete or skip a failing test to unblock a release. Fix it, or revert what broke it.
  • Treat a coverage number as the goal. It counts lines executed, not behavior pinned down.

Return contract

Report the tests added, what each pins down, what is deliberately untested and why, and the actual command you ran with its output. "Tests pass" without the command output is not a result.

Files (headcount)
  • SKILL.md 2.6 KB
    ---
    name: test-driven-development
    description: Drives implementation by writing a failing test first, then the smallest code that passes it. Use this before writing implementation code for any feature or bugfix, when a bug needs a regression test, when existing code is hard to change safely, or when someone asks whether a change is covered. Also use to decide what is worth testing and what is not.
    ---
    
    # Test-driven development
    
    ## The loop
    
    1. **Red** — write one test that fails for the right reason. Run it. A test that passes immediately
       is testing nothing; a test that errors instead of failing is testing the wrong thing.
    2. **Green** — the smallest change that makes it pass. Ugly is fine here.
    3. **Refactor** — clean up with the test green. If it goes red, you changed behavior, not structure.
    
    Never skip step 1. Writing the test after the code produces a test shaped to the implementation,
    which is the one shape that cannot catch the implementation being wrong.
    
    ## What to test
    
    Test behavior at the boundary a caller actually depends on. For each unit ask: if this broke
    silently, who notices and how? If the answer is nobody, delete the code rather than test it.
    
    - **Test**: branching logic, boundary conditions, error paths, anything with a past bug, contracts
      between modules.
    - **Do not test**: getters, framework behavior, private helpers reachable only through a public path
      already covered, exact wording of log lines.
    
    ## Bugs
    
    Every bug gets a failing test *before* the fix, reproducing it at the smallest scope that shows it.
    That test is the proof the bug existed and the guard that it stays fixed. A fix without one is a
    claim.
    
    ## Rules
    
    - One behavior per test. A test asserting five things tells you almost nothing when it fails.
    - The test name states the behavior, not the method: `rejects_expired_token`, not `test_auth`.
    - Never weaken an assertion to get green. If a test is inconvenient, the design is telling you
      something.
    - Never mock what you own — mock the network and the clock, not your own modules. Mocking your own
      code tests the mock.
    
    ## Never
    
    - Write the test after the code and call it test-driven. You will test what you built rather than what was required.
    - Skip watching the test fail. A test that has never failed proves nothing.
    - Delete or skip a failing test to unblock a release. Fix it, or revert what broke it.
    - Treat a coverage number as the goal. It counts lines executed, not behavior pinned down.
    
    ## Return contract
    
    Report the tests added, what each pins down, what is deliberately untested and why, and the actual
    command you ran with its output. "Tests pass" without the command output is not a result.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related