Install
$ agentstack add skill-franklywatson-claude-rig-tdd-plus ✓ 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+ — Disciplined Implementation
Wraps superpowers:test-driven-development. Requires superpowers to be installed.
This skill activates tdd+ phase in the enforcement layer. During this phase:
- Full test suite runs are redirected (use scoped tests only)
- Stale test warnings fire when source edits lack test updates
- Active enforcement rules from session context are enforced (see session-start output; real dependencies in stack/E2E (integration-layer) tests by default)
Procedure
Phase A: Setup
- Announce phase entry:
``` Now using tdd+ skill. Enforcement layer active:
- Test scope: scoped runs only (full suite reserved for verify+)
- Stale tests: warnings when source edited without test updates
- Zero-defect: every failure must be fixed before proceeding
```
- Load the plan from
docs/plans/.
- Identify the task(s) to implement.
- If branch discipline is active (see session-start output) and you are on a
protected branch, create an isolated workspace before implementing — a worktree (superpowers:using-git-worktrees) when the plan is multi-task or the working tree is dirty, a plain feature branch otherwise.
Phase B: Implement Each Task (delegate to superpowers:test-driven-development)
- For each task in the plan, follow RED-GREEN-REFACTOR:
RED — Write the failing test first:
- Write a test that captures the task's requirement
- Use full-loop assertions where applicable:
- Primary: does the function return the expected value?
- Second-order: did the side effect occur? (state change, log entry, event)
- Third-order: is the system still consistent? (no orphan records, no leaked connections)
- If the plan defines a signal stack, each task's completion gate is its
named gating signal — run that signal and show its output before marking the task done
- Run the test: it MUST fail (if it passes immediately, the test is wrong)
- Show the failure output
GREEN — Write minimal code to make the test pass:
- Write the smallest possible implementation
- Do not add features not in the plan
- Run the scoped test:
npx vitest run tests/path/to/specific.test.ts - Show the passing output
REFACTOR — Clean up while tests pass:
- Improve code structure without changing behavior
- Run scoped tests after each refactoring step
- Commit after each completed task
- After each source file edit, check:
- Was the corresponding test file also updated?
- If not, the enforcement layer will emit a stale test warning
- Address it before proceeding to the next task
Phase C: Task Completion
- After each task, verify:
- [ ] Test was written first and shown to fail
- [ ] Implementation makes the test pass
- [ ] Scoped test run passes (not full suite)
- [ ] Active enforcement rules followed (see session-start output)
- [ ] Commit made with descriptive message
- Proceed to next task or exit tdd+ phase when all plan tasks complete.
Test Scope Rules
During tdd+ phase, the enforcement layer redirects:
npx vitest run(full suite) → advise to run scoped tests onlypytest(full suite) → advise to run specific test file
Use scoped commands:
npx vitest run tests/router/resolver.test.ts
pytest tests/test_config.py::test_load_config
Full suite runs happen during verify+ phase, not here.
Skill Chain
After completing all plan tasks with tdd+:
- Invoke
/verify+to run full suite and verify against plan acceptance criteria
Completion
Report one of these states when the skill finishes:
- DONE — All plan tasks implemented with passing scoped tests. No constitutional violations.
- DONEWITHCONCERNS — All tasks implemented but some tests need attention or minor deviations exist.
- BLOCKED — Tests failing, cannot proceed without fixing. Return to RED phase.
- NEEDS_CONTEXT — Need user input to resolve an implementation ambiguity or design question.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: franklywatson
- Source: franklywatson/claude-rig
- 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.