build-fix

Fix build and TypeScript errors with minimal diffs and verification.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Fixes builds and TypeScript errors quickly with minimal changes, enabling teams to regain green status without full refactors.

Core Features & Use Cases

  • Collects compile/type-check errors from the project's build system.
  • Applies minimal diffs that resolve errors while preserving architecture.
  • Verifies builds after each fix and reports results for easy review.

Quick Start

Tell the build-fix agent to diagnose and repair current build failures with minimal changes.

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 disrupting the existing architecture?

Fix TypeScript build errors by collecting compile failures via tsc --noEmit, applying minimal diffs to resolve errors while preserving architecture, and verifying the final build passes. This yields a remediation report detailing the safe changes made.

What is the best way to automate resolving type-check failures in a codebase?

Automate resolving type-check failures by running the project build to collect errors, then applying minimal non-disruptive changes to fix them. The process verifies the build after each fix and outputs a report for easy review.

Can I use this to debug a failing project build without performing a full refactor?

Yes, you can debug a failing project build without a full refactor. The process targets compilation or type-check failures requiring quick remediation, applying minimal diffs to regain green status while preserving your codebase architecture.

Does the build repair process work with standard TypeScript compilation workflows?

Yes, the build repair process works with standard TypeScript compilation workflows. It collects errors directly via tsc --noEmit or the project's build system, applies minimal fixes, and verifies the final build output.

Why does the automated build fix process generate a remediation report?

The automated build fix process generates a remediation report to provide an easy review of the applied changes. It documents the minimal diffs used to resolve errors and confirms the final build verification results.

When should I avoid using an automated minimal diff approach for build fixes?

Avoid using an automated minimal diff approach for build fixes when failures require deep structural changes rather than quick remediation. It is designed for non-disruptive changes, so complex architectural refactoring needs manual intervention.