What problem does it solve? Type errors often slip into TypeScript codebases during rapid development, blocking commits and breaking builds. This Skill runs the project's type checker, interprets every diagnostic, and fixes errors one at a time without resorting to unsafe shortcuts like any or @ts-ignore. ## Core Features & Use Cases - Automated Type Checking: Runs npm run typecheck or npx tsc --noEmit and interprets each diagnostic. - Safe Error Resolution: Fixes type mismatches with proper annotations, never using any or @ts-ignore as shortcuts. - Iterative Verification: Re-runs the type checker until it exits with code 0 and zero diagnostics. - Use Case: Before committing changes to a TypeScript monorepo, invoke this Skill to discover all type errors, fix them with minimal correct changes, and confirm a clean typecheck pass. ## Quick Start Run the typecheck skill to find and fix all TypeScript type errors in this project before I commit.