What problem does it solve? Verifying that a project compiles cleanly often involves repetitive cycles of running the build, reading cryptic TypeScript errors, and fixing them one by one. This Skill automates that loop with a disciplined fixing workflow. ## Core Features & Use Cases - Automated Build Execution: Runs the production build command (e.g. npm run build) and captures all failures. - Systematic Error Resolution: Discovers all errors, creates a task list, and fixes them one at a time without unsafe shortcuts like any types or lint-disable comments. - Verification Loop: Re-runs the full build after each fix until it completes with exit code 0 and output (e.g. dist/ or .next/) is present. - Use Case: After merging a large feature branch, use this Skill to run the build, fix every type error and module resolution issue, and confirm the project compiles cleanly before release. ## Quick Start Run the production build and fix any compilation errors until the project builds cleanly.