What problem does it solve? Auditing an Express API for real defects is slow and error-prone when done ad hoc; this Skill provides a structured review workflow that finds logic bugs, proves them with tests, and locks them down with regression coverage. ## Core Features & Use Cases - Skeptical Bug Review: Systematically inspects routes, middleware, models, and helpers for authorization gaps, state-transition defects, date/time bugs, and contract mismatches. - Regression Test Pairing: Pairs every suspected bug with a deterministic Jest test in api/tests/unit and reruns the suite until it passes 100%. - Severity-Ranked Reporting: Outputs findings ordered by severity with the affected file, root cause, and test coverage status. - Use Case: Before a release, run this Skill over the api/ service to catch issues like guards accepting broader states than documented or background tasks crashing the main process, then fix root causes with tests proving the fix. ## Quick Start Review the API in api/ for logic bugs and add regression tests for anything you find.