Claude-skill-registry gate-5-test-execution
Gate 5 validation: Test execution and 100% pass rate requirement
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/gate-5-test-execution" ~/.claude/skills/majiayu000-claude-skill-registry-gate-5-test-execution && rm -rf "$T"
manifest:
skills/data/gate-5-test-execution/SKILL.mdsource content
Gate 5: Test Execution
STOP AND CHECK:
# 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.