This is a framework for inspecting test suites to find worthless assertions, missing edge cases, and gaps in coverage. It walks through example tests and flags things like "assert user" (which passes with corrupt data), missing negative test cases, and tests that don't actually verify persistence or state changes. The inspection reports show concrete rewrites with proper assertions, fixtures, and error case handling. Use this when reviewing PRs or auditing your own test code to catch tests that look fine but don't actually validate behavior. The examples focus on authentication flows, but the patterns apply to any domain where your tests need to prove something instead of just exercising code paths.
npx skills add https://github.com/bobmatnyc/claude-mpm-skills --skill test-quality-inspector