build-fix

Fix build and TypeScript errors with minimal diffs and verification.

2|2|Updated Apr 3, 2026
One-click install
npx skills add https://github.com/chrisxue90/oh-my-qwencode --skill build-fix-chrisxue90
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-fix
Source: https://github.com/chrisxue90/oh-my-qwencode/tree/main/skills/build-fix
Command: npx skills add https://github.com/chrisxue90/oh-my-qwencode --skill build-fix-chrisxue90

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Build and TypeScript errors block progress; this Skill provides guided, minimal-change fixes to get the project building again without major refactors.

Core Features & Use Cases

  • Error collection: runs type checks or build to identify failures and categorize by error type.
  • Minimal-diff fixes: applies small, targeted changes to resolve issues without sweeping refactors.
  • Verification: re-runs type checks to ensure no new errors are introduced.
  • Deterministic workflow: delegates work to a dedicated build-fixer agent and reports results.

Quick Start

Instruct the agent to collect build errors and apply minimal changes until the project builds successfully.

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 major refactoring?

To fix TypeScript build errors with minimal changes, a targeted approach collects type-check failures, applies small non-invasive patches to resolve them, and re-runs the build to verify no new errors are introduced.

What is the best way to automate fixing build failures during CI?

Automating build failures during CI involves a deterministic workflow that collects errors, applies minimal diffs to patch them, and continuously verifies the build until the project passes successfully.

Can I patch type-check errors locally during development?

Yes, you can patch type-check errors locally by instructing the agent to collect build errors and apply minimal changes until the project builds successfully, avoiding sweeping code refactors.

How does a minimal-diff build fixer handle error verification?

A minimal-diff build fixer handles verification by re-running type checks after applying targeted changes, ensuring that the small patches resolve failures without introducing new errors.

When should I avoid using automated build patching?

You should avoid automated build patching when your project requires major refactors to pass type-checks, as this approach focuses strictly on minimal, non-invasive diffs rather than structural code changes.