build-fix

Automate incremental fixes for TypeScript compilation and build errors.

Updated Jan 16, 2026
One-click install
npx skills add https://github.com/Eotel/claude-marketplace --skill build-fix-eotel
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-fix
Source: https://github.com/Eotel/claude-marketplace/tree/main/plugins/base/skills/build-fix
Command: npx skills add https://github.com/Eotel/claude-marketplace --skill build-fix-eotel

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Incrementally fix TypeScript and build errors by automating error analysis, contextual explanations, and safe, staged repairs.

Core Features & Use Cases

  • Automated error grouping and prioritization by file and severity
  • Contextual explanations and suggested fixes for each error
  • One-at-a-time application of fixes with re-build verification
  • Use Case: When a project fails its build due to TypeScript compilation errors across multiple files, apply targeted fixes and reduce blast radius.

Quick Start

Run the project build and allow this skill to guide you through diagnosing, applying fixes, and re-running the build until it succeeds.

Frequently Asked Questions about build-fix

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

FAQPage Schema
How do I automate fixing TypeScript compilation errors across multiple files?

Automating TypeScript compilation error fixes involves grouping errors by file, showing context, proposing targeted fixes, and applying them one at a time with re-build verification. This incremental approach reduces blast radius and ensures each repair is validated before proceeding.

What is the best way to resolve build errors incrementally during local development?

The best way to resolve build errors incrementally is to apply staged repairs one at a time and re-run the build after each fix. This method provides contextual explanations for each error and verifies success before moving to the next issue.

Can I use an automated dev-workflow tool to triage and fix build errors safely?

Yes, you can use an automated dev-workflow tool to triage build errors safely. It groups errors by severity, proposes fixes, and includes safety checks like stopping after repeated failures, ensuring deterministic and controlled error resolution.

Why does my TypeScript build keep failing after applying multiple fixes at once?

TypeScript builds often keep failing when multiple fixes are applied simultaneously because new errors mask underlying issues. Applying fixes one at a time with re-build verification isolates the impact, validates each change, and prevents repeated failures from cascading.

Does automated error triage stop if it encounters repeated build failures?

Yes, automated error triage includes safety checks that stop the process after repeated build failures. This precaution prevents infinite loops and ensures you can review the remaining TypeScript compilation errors before attempting further automated repairs.