What problem does it solve? Stryker mutation testing can fail silently in ways that look like a broken quality gate: equivalent mutants no test can kill, Stryker disable next-line comments that never take effect, and sharded CI merges that report survivors the owning shard already killed. This Skill provides deterministic fixes for each of these three traps. ## Core Features & Use Cases - Equivalent mutant resolution: Prove whether a survivor is equivalent, adopt the simpler program by deleting dead code, or annotate with a proof-based reason when no honest refactor exists (e.g., ArrayDeclaration mutants on React hook dependency arrays). - Directive placement correction: Fix Stryker disable next-line comments that dangle above }, []); and lead no node, by expanding the call so the array literal starts on its own line. - Sharded merge ownership: Rebuild shard packing with the same algorithm the shards used, keep each file only from its current owner, and drop stale incremental-cache results. - Use Case: A merged sharded mutation report shows a score lower than every individual shard's report. Use this Skill to identify stale-owner results from incremental caches and correct the merge to respect file ownership. ## Quick Start Ask the AI to explain why a Stryker survivor with an empty killedBy list persists and how to fix it without lowering the break threshold.