What problem does it solve? Test suites generated or grown over time accumulate the same quality anti-patterns across many files — loading-only assertions, tautological mocks, missing error-path tests, hardcoded credentials. Fixing them one file at a time is slow and inconsistent; this Skill triages the whole suite, then repairs one pattern at a time with real production context. ## Core Features & Use Cases - Triage scanning: Detects 20+ named anti-patterns (P-41 loading-only assertions, AP10 tautological mocks, P-64 hardcoded credentials, Q7 missing error tests, and more) and reports per-pattern file counts. - Context-aware batch fixing: For each affected test file, locates its production counterpart, reads the real state shapes, thunk signatures, and component JSX, then rewrites broken assertions against actual behavior. - Verification loop: Runs modified tests, fixes production bugs surfaced by strengthened assertions in-run, and performs a mandatory adversarial review before reporting. - Use Case: After generating a large Redux/NestJS test suite, run triage mode to find every test that only asserts state.loading, then batch-rewrite them to verify actual payload fields — with all tests re-run and passing at the end. ## Quick Start Ask the AI to run fix-tests in triage mode to scan the test suite for anti-patterns and automatically repair every pattern it finds.