sc-test
Installation
SKILL.md
Testing & Coverage Skill
Test execution with coverage analysis, interactive gap identification, test generation, and iterative coverage improvement.
Quick Start
# Run all tests
/sc:test
# Unit tests with coverage
/sc:test src/components --type unit --coverage
# Coverage gap analysis - identify untested code
/sc:test --gap-analysis --target 80
# Generate missing tests to reach target coverage
/sc:test --generate --target 80 --module src/services