Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Tdd

ASecurity

Use whenever the user asks to build a feature, fix a bug, or wants strict test-driven development (red-green-refactor). Also trigger on "/foreman:tdd", "/tdd", "write the test first", or "TDD this".

2 stars
0 votes
0 copies
0 views
Added 9/22/2026
developmentrustgotestingrefactoring

Security Analysis

A100/100

Scanned 9/24/2026

Install to Claude Code

$npx -y skills add JustinK33/foreman --skill tdd --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Tdd?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Tdd
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/justink33-tdd/badge)](https://www.skillsdirectory.com/skills/justink33-tdd)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: tdd
description: Use whenever the user asks to build a feature, fix a bug, or wants strict test-driven development (red-green-refactor). Also trigger on "/foreman:tdd", "/tdd", "write the test first", or "TDD this".
argument-hint: "[what to build]"
---

# Test-Driven Development

Red, green, refactor. In that order, every time. No production code without a failing test that demanded it.

## The loop

1. **Red** - Write one small test for behavior that doesn't exist yet. Run it. Confirm it fails, and fails for the reason you expect (not a typo or import error). A test you haven't watched fail is a test you can't trust.
2. **Green** - Write the *smallest* amount of code that makes the test pass. Hardcoding a return value to pass one test is correct at this stage if that's genuinely the minimum. Resist the urge to also handle the next three cases you can already see coming.
3. **Refactor** - With the safety net of a passing test, clean up: remove duplication, rename for clarity, extract only if extraction earns its keep. Tests must stay green through this step. If they don't, you broke behavior, not just structure.
4. Repeat for the next smallest behavior.

## Test quality bar

- One assertion concept per test. If a test needs three "and"s in its name, split it.
- Test names describe behavior, not implementation: `rejects_withdrawal_over_balance`, not `test_withdraw_2`.
- Arrange-Act-Assert (or Given-When-Then) structure, visually separated, no need to label it.
- Cover: the happy path, the boundary (empty, zero, max, off-by-one), and the failure mode (invalid input, exception). Skip redundant tests that vary only in irrelevant input.
- Mock at architectural boundaries (network, filesystem, clock, external services), not internal collaborators. Over-mocking makes tests pass while the real integration is broken.
- A test that never fails when the code is wrong is worse than no test. Sanity-check new tests by breaking the code and confirming the test catches it.

## When the user has existing code with no tests

Don't try to blanket the file. Characterize current behavior with a few tests first (this locks in what the code *does*, not what it *should* do), then apply the red-green-refactor loop only to the part you're changing.

## What this skill does not do

It doesn't decide *what* to build, that's the task at hand, it governs *how* the code gets built once you know.
The "green" step should reach for the smallest thing that passes, not the most general one: the next test can force generality when it actually exists.

It also doesn't have to be invoked to be enforced.
The `after-edit` hook watches for production code landing in a repo that tests itself with no test naming the file, and says so at the moment it happens.
The hook catches the omission; this skill is how you fix it.

## Anti-patterns to avoid

- Writing all the tests up front, then all the code. That's "test-first," not TDD; you lose the fast feedback loop and the tests stop steering the design.
- Testing private/internal implementation details instead of observable behavior. Refactoring should never require touching the tests unless the public contract changed.
- Skipping the "watch it fail" step. A test that passes immediately might be testing nothing.

Attribution

JustinK33JustinK33
View sourceMore from JustinK33 →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284722 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →