What problem does it solve? Coverage percentages hide the gaps that matter: a repo at 87% line coverage can have fully untested error paths in billing code. This Skill turns raw coverage reports into a risk-ranked list of what actually needs testing, separating executed code from verified code. ## Core Features & Use Cases - Branch-over-line analysis: Reads branch coverage instead of line coverage so compound conditionals are scored honestly. - Risk-ranked gap review: Prioritizes uncovered error paths in money, auth, and data-writing code over cosmetic gaps. - Mutation spot-checks: Hand-mutates green high-risk code (or uses mutmut, pitest, Stryker) to catch executed-but-unasserted tests. - Diff-based gates: Replaces absolute thresholds with diff coverage on changed lines via diff-cover or Codecov patch status. - Use Case: A PR fails a coverage gate. Instead of padding assertion-light tests, you open the HTML report, find the red except branches in the refund module, delete 300 lines of dead code the report exposed, and add six targeted tests. ## Quick Start Analyze the coverage report for this repository and tell me which untested regions actually matter and what to do about each one.