What problem does it solve? Code coverage metrics show which lines run during tests but not whether tests actually verify behavior. This Skill reveals weak tests by introducing deliberate bugs into production code one at a time and checking whether the test suite catches each one, exposing gaps that coverage reports miss. ## Core Features & Use Cases - Guided Mutation Workflow: Applies 3-8 targeted mutations per file from a catalogue of eight categories (side-effect deletion, condition negation, boundary changes, return value swaps, and more), running the test suite after each and reverting immediately via git. - Diagnostic Quality Assessment: Rates each killed mutation as Clear, Indirect, or Cascading to evaluate how actionable test failure messages are. - Actionable Reporting: Produces a summary table with mutation score, lists survived mutations with explanations, and writes [TEST] TODOs to TODOS.md for closure via the /tdd workflow. - Use Case: Before a release, run mutation testing on a critical module like the payment pipeline to discover that a deleted cache-write line goes unnoticed by any test, then track the gap as a TODO. ## Quick Start Ask the AI to run mutation testing on a specific file or directory, for example: run mutation testing on the src/pipeline module.