build-fix

Fix build failures and TypeScript errors with minimal diffs.

31|3|Updated Dec 12, 2025
One-click install
npx skills add https://github.com/JeremyDev87/codingbuddy --skill build-fix-jeremydev87
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-fix
Source: https://github.com/JeremyDev87/codingbuddy/tree/main/packages/rules/.ai-rules/skills/build-fix
Command: npx skills add https://github.com/JeremyDev87/codingbuddy --skill build-fix-jeremydev87

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Build failures block progress and force workarounds. This Skill guides you to apply minimal, surgical changes to restore a passing build without unplanned refactors.

Core Features & Use Cases

  • Minimal-diff build fixes that preserve architecture and avoid broad changes.
  • Guided workflow across common failure classes (TS errors, import issues, config problems) with safeguards.
  • Real-world scenario: a stalled CI build due to a misconfigured import; apply a surgical patch and restore green build quickly.

Quick Start

Apply the minimal-diff build fix workflow to restore a green build after a TS or import error.

Frequently Asked Questions about build-fix

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

FAQPage Schema
How do I fix TypeScript build errors without breaking existing architecture?

Fix TypeScript build errors using a minimal-diff workflow that reads the error, identifies the root cause, applies a surgical patch, and verifies the build. This approach preserves your architecture by avoiding unplanned refactors and broad code changes.

What's the best way to resolve stalled CI build failures caused by import issues?

Resolve stalled CI build failures by applying surgical patches to misconfigured imports. This workflow targets the root cause of import issues directly, restoring a green build quickly without forcing unplanned refactors across your project.

Can I use this minimal-diff approach to fix config problems in frontend and backend projects?

Yes, you can fix config problems in both frontend and backend projects. The workflow handles compilation failures, TypeScript errors, import/export issues, and configuration problems across your stack by applying targeted, minimal fixes.

How does the minimal-diff build fix workflow handle verification after patching?

The minimal-diff build fix workflow handles verification through a four-phase process: read the error, identify the root cause, implement a surgical fix, and verify the build and tests to ensure the failure is resolved.

When should I avoid using a surgical patch for build failures?

Avoid using a surgical patch when your build failure requires broad refactoring or architectural changes. This workflow enforces minimal diffs to restore passing builds, making it unsuitable for scenarios demanding extensive code modifications.