tdd — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited tdd (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use when implementing any feature or bugfix, before writing implementation code.
NO PRODUCTION CODE WITHOUT A FAILING TEST FIRSTWrite code before the test? Delete it. Start over.
No exceptions:
Write one minimal test showing what should happen.
MANDATORY. Never skip.
Write simplest code to pass the test.
MANDATORY.
After green only:
Keep tests green. Don't add behavior.
"I'll write tests after" Tests written after pass immediately. Passing immediately proves nothing. Test-first forces you to see the test fail, proving it actually tests something.
"Tests after achieve same goals" No. Tests-after answer "What does this do?" Tests-first answer "What should this do?"
"Deleting X hours of work is wasteful" Sunk cost fallacy. The time is gone. The waste is keeping code you can't trust.
All mean: Delete code. Start over with TDD.
| Excuse | Reality |
|---|---|
| "Too simple to test" | Simple code breaks. Test takes 30 seconds. |
| "I'll test after" | Tests passing immediately prove nothing. |
| "Already manually tested" | Ad-hoc ≠ systematic. No record, can't re-run. |
| "TDD will slow me down" | TDD faster than debugging later. |
Before marking work complete:
Can't check all boxes? You skipped TDD. Start over.
Use this skill when the task directly matches the workflow described above.
Do not use this skill when the request is unrelated, low-stakes, or better handled by a simpler direct response.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.