From mutation-tester
Runs mutation testing on source code to evaluate test suite effectiveness. Detects project language, executes mutants, calculates mutation score, and suggests test cases for survived mutants.
How this command is triggered — by the user, by Claude, or both
Slash command
/mutation-tester:mutateThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /mutate - Run Mutation Testing Run mutation testing to evaluate test suite effectiveness. ## Steps 1. Detect the project language and testing framework from configuration files 2. Check if a mutation testing tool is installed (Stryker for JS/TS, mutmut for Python, PITest for Java) 3. If not installed, provide installation instructions for the appropriate tool 4. Identify the source files and their corresponding test files 5. Configure mutation operators: arithmetic, conditional, string, return value mutations 6. Run the mutation testing tool on the target source files 7. Monitor progre...
Run mutation testing to evaluate test suite effectiveness.
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub twzrd-sol/awesome-claude-code-toolkit --plugin mutation-tester/mutateRuns mutation testing on source code to evaluate test suite effectiveness. Detects project language, executes mutants, calculates mutation score, and suggests test cases for survived mutants.
/mutateRuns mutation testing to verify test suite quality—builds a custom AST-based tool or uses an existing framework, supports differential mutation via path argument, and reports score with survivors.
/add-mutation-testingConfigures mutation testing for a project: selects a framework, sets up operators, integrates with CI/CD, and enforces quality gates.
/mutation-testRuns feature-scoped mutation testing on implementation files to validate test suite quality, producing a per-file mutation report with kill rate metrics.
/analyze-testsAudits test quality across a repository or specified scope, identifying tautological tests, coverage gaming, and missing corner cases.