Agent skill
gate-5-test-execution
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/gate-5-test-execution
SKILL.md
Gate 5: Test Execution
STOP AND CHECK:
bash
# All tests must pass
npm test
echo "Exit code: $?"
# Must be 0
# No failures
npm test 2>&1 | grep -i "fail"
# Must return nothing
PROCEED ONLY IF:
- ✅ All new tests pass
- ✅ No regression in existing tests
- ✅ Zero test failures
- ✅ Coverage maintained or improved
IF FAILED: Fix failing tests before building.
Didn't find tool you were looking for?