project-test-loop
SKILL.md
Run automated TDD cycle: test β fix β refactor.
Note: Configure project-specific test/build commands in CLAUDE.md or .claude/rules/ for automatic detection.
Steps:
-
Detect test command (if not already configured):
- Check
package.jsonforscripts.test(Node.js) - Check for
pytestorpython -m unittest(Python) - Check for
cargo test(Rust) - Check for
go test ./...(Go) - Check
Makefilefor test target - If not found, ask user how to run tests
- Check
-
Run test suite:
# Run detected test command [test_command] -
Analyze results:
If tests FAIL:
- Parse failure output
- Identify failing tests:
- Which tests failed?
- What assertions failed?
- What was expected vs actual?
- Identify root cause:
- Bug in implementation?
- Missing implementation?
- Incorrect test?
- Make minimal fix:
- Fix only what's needed to pass the failing test
- Don't add extra functionality
- Don't fix tests (fix code instead)
- Re-run tests to confirm fix
- Loop back to step 2
If tests PASS:
- Check for refactoring opportunities:
- Code duplication?
- Unclear naming?
- Long functions?
- Complex logic that can be simplified?
- Magic numbers/strings to extract?
- If refactoring identified:
- Refactor while keeping tests green
- Re-run tests after each refactoring
- Ensure tests still pass
- If no refactoring needed:
- Report success
- Stop loop
-
Repeat until:
- All tests pass AND
- No obvious refactoring opportunities
OR stop if:
- User intervention needed
- Blocked by external dependency
- Unclear how to fix failure
-
Report results:
π§ͺ Test Loop Results: Cycles: [N] iterations Fixes Applied: - [Fix 1]: [Brief description] - [Fix 2]: [Brief description] Refactorings Performed: - [Refactor 1]: [Brief description] - [Refactor 2]: [Brief description] Current Status: β All tests pass β Code refactored π Ready for commit OR β οΈ Blocked: [Reason] π Next steps: [Recommendation]
TDD Cycle Details:
RED Phase (If starting new feature)
- Write failing test describing desired behavior
- Run tests β Should FAIL (expected)
- This command picks up from here
GREEN Phase (This command handles)
- Run tests
- If fail β Make minimal fix
- Re-run tests β Should PASS
- Loop until all pass
REFACTOR Phase (This command handles)
- Tests pass
- Look for improvements
- Refactor
- Re-run tests β Should STILL PASS
- Loop until no improvements
Common Failure Patterns:
Pattern: Missing Implementation
- Symptom:
undefined is not a function,NameError, etc. - Fix: Implement the missing function/class/method
- Minimal: Just the signature, return dummy value
Pattern: Wrong Return Value
- Symptom:
Expected X but got Y - Fix: Update implementation to return correct value
- Minimal: Don't add extra logic, just fix the return
Pattern: Missing Edge Case
- Symptom: Test fails for specific input
- Fix: Handle the edge case
- Minimal: Add condition for this case only
Pattern: Integration Issue
- Symptom: Test fails when components interact
- Fix: Fix the integration point
- Minimal: Fix just the integration, not entire components
Refactoring Opportunities:
Look for:
- Duplicated code β Extract to function
- Magic numbers β Extract to constants
- Long functions β Break into smaller functions
- Complex conditionals β Extract to well-named functions
- Unclear names β Rename to be descriptive
- Comments explaining code β Refactor code to be self-explanatory
Don't:
- Change behavior
- Add new functionality
- Skip test runs
- Make tests pass by changing tests
Auto-Stop Conditions:
Stop and report if:
- All tests pass + no refactoring needed (SUCCESS)
- Same test fails 3 times in a row (STUCK)
- Error in test command itself (TEST SETUP ISSUE)
- External dependency unavailable (BLOCKED)
- Unclear how to fix (NEEDS USER INPUT)
Integration with Blueprint Development:
This command applies project-specific skills:
- Testing strategies: Knows how to structure tests
- Implementation guides: Knows how to implement fixes
- Quality standards: Knows what to refactor
- Architecture patterns: Knows where code should go
Weekly Installs
47
Repository
laurigates/clauβ¦-pluginsGitHub Stars
13
First Seen
Feb 9, 2026
Security Audits
Installed on
github-copilot47
codex47
kimi-cli47
gemini-cli47
cursor47
opencode47