AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Tdd Fix

skill-ao92265-claude-code-playbook-tdd-fix · by ao92265

Strict TDD bug-fix loop. Failing test first, then minimal fix, then full CI parity (tsc -b + tests + lint) before PR. Use for bug-fix issues. Triggers "/tdd-fix", "tdd bug", "fix issue #N with tdd".

— No reviews yet
0 installs
25 views
0.0% view→install

Install

$ agentstack add skill-ao92265-claude-code-playbook-tdd-fix

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ao92265-claude-code-playbook-tdd-fix)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Tdd Fix? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

TDD Fix Loop

Eliminates wrong-approach / buggy-first-pass friction by forcing red→green→ship.

Phase 1 — RED

  1. Read issue, reproduce bug locally.
  2. Write a test that captures expected behavior. Test MUST fail.
  3. Run tsc -b && npm test — confirm test fails for the RIGHT reason (not compile error, not wrong assertion).
  4. Commit failing test alone: test: failing case for #N.

Phase 2 — GREEN

  1. Implement MINIMAL fix. No refactor, no adjacent cleanup.
  2. After every edit run full CI parity:

`` tsc -b && npm test && npm run lint ``

  1. Loop until all three pass. NEVER skip a step.
  2. 3 failed attempts → STOP, explain blocker, ask user.

Phase 3 — SHIP

  1. Commit fix separate from test: fix: (#N).
  2. git branch --show-current before push.
  3. gh pr create referencing issue.

Hard Rules

  • Use tsc -b (CI parity), NEVER tsc --noEmit.
  • NEVER edit prisma/schema.prisma without explicit user auth.
  • NEVER bypass hooks (--no-verify, [skip-verify]) without user say-so.
  • NEVER claim done without paste of tsc -b && npm test && npm run lint exit codes.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.