tdd

tdd is a skill for Claude Code from youdotcom-oss/agent-skills. It costs 63 tokens per session (635 once invoked), scanned A, original, MIT.

A test-first development workflow. TDD, or test-driven development, means writing a test for expected behavior before implementing the code.

In plain words
What is it for?
Use it when building or fixing features, especially when integration tests or tests of a program’s public behavior are needed.
Why use it?
It makes behavior changes easier to verify and helps catch broken public interfaces, fallback paths, and error cases early.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

Part of the you plugin — 8 skills shipped together

Good fit Use it when building or fixing features, especially when integration tests or tests of a program’s public behavior are needed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/youdotcom-oss/agent-skills/tdd
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add youdotcom-oss/agent-skills --skill tdd
Clone the repo
git clone --depth 1 https://github.com/youdotcom-oss/agent-skills

Made for: Claude Code.

Or install you, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tdd

README.md
[![agentmods](https://agentmods.dev/badge/skills/youdotcom-oss/agent-skills/tdd.svg)](https://agentmods.dev/skills/youdotcom-oss/agent-skills/tdd)
Your own site
<a href="https://agentmods.dev/skills/youdotcom-oss/agent-skills/tdd"><img src="https://agentmods.dev/badge/skills/youdotcom-oss/agent-skills/tdd.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 635 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00063 $0.00635
Opus 5 $0.00032 $0.00318
Sonnet 5 $0.00013 $0.00127
Haiku 4.5 $0.00006 $0.00064

Measured 8d ago against content hash 4a36f55baf4b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

tdd scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • tdd — 88% identical, 7 lines differ
.agents/skills/tdd/SKILL.md · 67 lines

How it starts

The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Test-Driven Development

Core Rule

Work in vertical red-green-refactor slices:

  1. RED: write one test for one observable behavior.
  2. GREEN: implement the smallest production change that makes that test pass.
  3. REFACTOR: clean up only while tests are green.

Do not write a batch of imagined tests before implementation. Each new test should respond to what the last cycle taught you about the actual behavior and interface.

Plaited Defaults

  • Use bun test for targeted tests and bun --bun tsc --noEmit for the type gate.
  • Use test, not it, and organize with describe.
  • Prefer real dependencies and real runtime boundaries over mocks.
  • Mock only external boundaries such as remote APIs, time, randomness, or rare filesystem cases.
  • Avoid conditional assertions: assert the branch first, then assert branch-specific values.
  • Test both branches for conditionals, fallbacks, and error paths.
  • Exercise public interfaces and runtime contracts rather than private helpers.
  • Follow applicable repo skills and AGENTS.md rules for the touched area.

When Starting Work

Explore the codebase first. If the public interface, expected behavior, or risk boundary is discoverable from code, tests, or docs, use that evidence instead of asking the user.

Ask one concise question only when the decision cannot be discovered and a reasonable assumption would be risky. Include your recommended answer.

Before writing production code, identify:

  • the public interface or runtime boundary under test
  • the first observable behavior to prove
  • the targeted test command for the cycle
  • the broader validation needed before handoff

Cycle Discipline

For each behavior:

  1. Add or update exactly one focused test.
  2. Run the targeted test and confirm it fails for the intended reason.
  3. Implement only enough code to pass.
  4. Run the same targeted test and confirm it passes.
  5. Refactor if useful, then rerun the affected tests.

If the test passes before production code changes, it is not a valid RED signal. Tighten the test, choose a different behavior, or explain why existing coverage already proves the behavior.

Read the full file on GitHub · 67 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 67 lines · 63 tokens per session scan A 4a36f55baf4b

Subscribe to this mod's changes

tdd is a skill published in the GitHub repository youdotcom-oss/agent-skills (67 stars, last pushed 7d ago), licensed MIT. It adds 63 tokens to every session and 635 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.