What problem does it solve? Pull Requests often ship with insufficient or fragile tests, letting critical bugs and regressions slip into production. This Skill reviews the test coverage of a PR, identifies critical gaps, and evaluates whether existing tests actually protect against real failures. ## Core Features & Use Cases - Coverage Gap Detection: Identifies untested error-handling paths, missing edge cases, uncovered business logic branches, and absent negative test cases. - Test Quality Evaluation: Assesses whether tests verify behavior and contracts rather than implementation details, and whether they follow DAMP principles. - Prioritized Recommendations: Rates each suggested test from 1 to 10 by criticality, with concrete examples of the failures it would catch. - Use Case: After opening a PR that adds a new payment validation flow, run this analyzer to confirm that error paths, boundary conditions, and concurrent behavior are covered before merging. ## Quick Start Review the test coverage of my current Pull Request and list any critical gaps with priority ratings.