What problem does it solve? Code coverage only proves a line executed, not that a test would catch it being wrong. This Skill runs StrykerJS mutation testing against the source files you changed, surfacing mutants that survive your test suite so you can find assertions the suite executes but never actually checks. ## Core Features & Use Cases - Scoped mutation runs: Execute one bounded run per session against explicitly named changed source files using the repository harness with --in-place and a time cap. - Survivor triage: Classify survivors as missing assertions, equivalent mutants, wrong-level tests, or harness false positives, then fix only the first kind in a single batch. - CI report interpretation: Read the sticky CI mutation comment and downloadable JSON artifact to triage only the survivors in your diff's line ranges, including stacked-PR edge cases. - Use Case: After adding tests for a parser, run the harness once before opening the PR, kill the top surviving mutants with targeted assertions, and record the remaining survivors by file and line in the PR body. ## Quick Start Ask the AI to run mutation testing on the source files you just changed and triage the surviving mutants before opening your pull request.