Install
$ agentstack add skill-ao92265-claude-code-playbook-tdd-fix ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
TDD Fix Loop
Eliminates wrong-approach / buggy-first-pass friction by forcing red→green→ship.
Phase 1 — RED
- Read issue, reproduce bug locally.
- Write a test that captures expected behavior. Test MUST fail.
- Run
tsc -b && npm test— confirm test fails for the RIGHT reason (not compile error, not wrong assertion). - Commit failing test alone:
test: failing case for #N.
Phase 2 — GREEN
- Implement MINIMAL fix. No refactor, no adjacent cleanup.
- After every edit run full CI parity:
`` tsc -b && npm test && npm run lint ``
- Loop until all three pass. NEVER skip a step.
- 3 failed attempts → STOP, explain blocker, ask user.
Phase 3 — SHIP
- Commit fix separate from test:
fix: (#N). git branch --show-currentbefore push.gh pr createreferencing issue.
Hard Rules
- Use
tsc -b(CI parity), NEVERtsc --noEmit. - NEVER edit
prisma/schema.prismawithout 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 lintexit codes.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ao92265
- Source: ao92265/claude-code-playbook
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.