Agent skill · Testing & QA

tdd

Test-driven development workflow with philosophy guide - plan → write tests → implement → validate

parcadeigithub.com/parcadeiGitHub ↗
claude-codeMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill tdd --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 9 KB
Bundled scripts: none
Path: .claude/skills/tdd/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# /tdd - Test-Driven Development Workflow Strict TDD workflow: tests first, then implementation. ## When to Use - "Implement X using TDD" - "Build this feature test-first" - "Write tests for X then implement" - Any feature where test coverage is critical - Bug fixes that need regression tests --- # TDD Philosophy ## Overview Write the test first. Watch it fail. Write minimal code to pass. **Core principle:** If you didn't watch the test fail, you don't know if it tests the right thing. **Violating the letter of the rules is violating the spirit of the rules.** ## The Iron Law ``` NO PRODUCTION CODE WITHOUT A FAILING TEST FIRST ``` Write code before the test? Delete it. Start over. **No exceptions:** - Don't keep it as "reference" - Don't "adapt" it while writing tests - Don't look at it - Delete means delete Implement fresh from tests. Period. ## Red-Green-Refactor ### RED - Write Failing Test Write one minimal test showing what should happen. **Good:** ```typescript test('retries failed operations 3 times', async () => { let attempts = 0; const operation = () => { attempts++; if (attempts < 3) throw new Error('fail'); return 'success'; }; const result = await retryOperation(operat

What's inside
Steps it walks through
  1. When to Use
  2. Overview
  3. The Iron Law
  4. Red-Green-Refactor
  5. RED - Write Failing Test
  6. Verify RED - Watch It Fail
  7. GREEN - Minimal Code
  8. Verify GREEN - Watch It Pass
  9. REFACTOR - Clean Up
  10. Common Rationalizations
  11. Red Flags - STOP and Start Over
  12. Verification Checklist
  13. When Stuck
  14. Workflow Overview
Commands it runs
npm test path/to/test.test.ts
or
pytest path/to/test_file.py
More from Continuous-Claude-v3
All skills →
About this skill
What does the tdd skill do?

Test-driven development workflow with philosophy guide - plan → write tests → implement → validate

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill tdd --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going