What problem does it solve? Test suites accumulate redundant, brittle, and low-value tests over time, slowing CI runs and increasing maintenance burden. This Skill audits every test in a codebase and identifies which ones can be safely deleted or merged. ## Core Features & Use Cases - Redundancy Detection: Flags tests that duplicate implementation logic, re-verify type or library guarantees, or overlap with other tests. - Value-Based Judgment: Evaluates each test by asking what realistic bug would be missed if it were removed, weighing runtime, flakiness, and maintenance cost against the protection it provides. - Use Case: When a project's test suite has grown slow and noisy, ask for a test cleanup and receive a concrete list of tests to delete or consolidate, such as mock self-verification tests or excessive case splitting. ## Quick Start Review all tests in this repository and list the ones that can be deleted or merged.