What problem does it solve? A repo that fails CI or breaks after a refactor needs every quality gate verified and repaired at the root cause, not masked with suppression comments or skipped past. This Skill runs the full gate chain locally, isolates the first failure, applies the smallest fix, and re-verifies before continuing. ## Core Features & Use Cases - Ordered gate chain: Runs install, typecheck, lint, build, unit tests, startup, and route/health checks in dependency order, stopping at the first red gate. - Root-cause repair: Maps common errors (ERESOLVE, TS2307, EADDRINUSE, case-sensitive imports) to the smallest scoped fix, avoiding @ts-ignore, eslint-disable, or blanket dependency upgrades. - Monorepo support: Detects pnpm workspaces, turbo, and nx task graphs and isolates failing packages with filters. - Use Case: A CI pipeline fails after a dependency bump. Use this Skill to reproduce the failure locally, fix the offending peer dependency range, re-run only the failed gate, and produce a gate table proving the branch is green before re-pushing. ## Quick Start Run the smoke test and repair workflow on this repository and report a gate table with pass, fail, or skip status for each gate.