What problem does it solve? Typecheck failures from tsc, vue-tsc, or nuxt typecheck block commits and pre-push hooks, and fixing them one error at a time without seeing the full picture wastes effort. This Skill captures all reported errors upfront, fixes the root cause in the source rather than suppressing it, and re-runs the full command until it reports zero errors. ## Core Features & Use Cases - Full error capture: Runs the project's complete typecheck command once to list every file and error code before editing anything. - Root-cause fixes: Reads the actual source and referenced types before editing, fixing shared type definitions instead of patching every call site. - Verified clean result: Re-runs the full command after fixes and pastes the clean output as proof before claiming done. - Use Case: A pre-push hook rejects your push with TS errors after a rebase; the Skill reads each error, corrects the underlying interface or adds proper null guards, and re-runs the typecheck until it passes. ## Quick Start Ask the assistant to fix the typecheck errors reported by the project's typecheck command and re-run it until clean.