mutation-testing
Installation
SKILL.md
Mutation Testing
Overview
This skill sets up mutation testing to evaluate test suite quality by introducing deliberate code changes (mutants) and verifying tests catch them. A high mutation score indicates tests are effective at catching real bugs.
Version: 0.1.0 Status: Initial Release
What This Skill Does
Mutation Testing Workflow:
- Analyze codebase to identify mutation targets
- Generate mutants (deliberate code changes)
- Run test suite against each mutant
- Report mutation score and surviving mutants
- Recommend test improvements for weak spots