build-fix

Resolve TypeScript, compilation, and build errors with minimal diffs.

Updated Feb 10, 2026
One-click install
npx skills add https://github.com/ihj04982/my-cursor-settings --skill build-fix-ihj04982
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-fix
Source: https://github.com/ihj04982/my-cursor-settings/tree/main/skills/build-fix
Command: npx skills add https://github.com/ihj04982/my-cursor-settings --skill build-fix-ihj04982

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automatically diagnoses and fixes TypeScript, compilation, and build errors in your codebase, streamlining the development process.

Core Features & Use Cases

  • Incremental Fixing: Addresses errors one by one with minimal code changes.
  • Verification: Re-runs build commands after each fix to ensure resolution.
  • Use Case: When your project fails to build due to a TypeScript error, use this Skill to automatically correct the error and get your build passing again.

Quick Start

Use the build-fix skill to resolve the current build errors.

Frequently Asked Questions about build-fix

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically fix TypeScript build errors?

To automatically fix TypeScript build errors, you can use an incremental resolver that targets issues found in tsc and npm run build commands, applying minimal code diffs to resolve each error individually. The tool verifies fixes by re-running the build process.

Can I resolve eslint errors without making architectural changes?

Yes, you can resolve eslint errors without architectural changes by applying minimal diffs that target the specific issues found. The incremental fixing approach addresses errors one by one, ensuring the codebase structure remains unchanged while getting the build passing again.

What is the best way to incrementally fix compilation errors?

The best way to incrementally fix compilation errors is by addressing them one by one with minimal code changes, then re-running the build commands after each fix to ensure the resolution is successful. This verifies each fix without introducing new issues.

Does the build error resolver work with npm run build commands?

Yes, the build error resolver works directly with npm run build commands. It targets issues found during the build process, applies minimal diffs to correct the code, and verifies the resolution by re-running the build commands to ensure everything passes.

Why should I use incremental fixing for code errors instead of rewriting modules?

You should use incremental fixing for code errors because it applies minimal diffs without architectural changes, preserving your existing codebase structure. It targets specific issues found in tsc and eslint, verifying each fix by re-running the build to ensure stability.