What problem does it solve? Pull requests often ship with tests that miss the actual changed behavior, leaving critical code paths undefended. This Skill statically reviews a PR's tests against its changed code to surface real coverage gaps before merge. ## Core Features & Use Cases - Changed Code Mapping: Identifies changed functions, classes, and modules, then locates their corresponding tests and untested paths. - Behavioral Coverage Analysis: Flags important changed behavior not defended by tests, verifies edge cases and error paths, and checks integration coverage. - Test Quality Review: Prefers meaningful assertions over no-throw checks, flags flaky patterns, and rates gaps as critical, important, or optional. - Use Case: Before merging a PR that modifies payment retry logic, run this review to confirm the new retry branches and failure paths are actually exercised by tests. ## Quick Start Review the test coverage of this pull request and report any critical behavioral gaps with file and line references.