build-fix

Fix build and TypeScript errors with minimal code changes.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Builds fail and TypeScript errors block progress; this skill helps you fix them with minimal changes, avoiding large refactors.

Core Features & Use Cases

  • Collects and analyzes build/type-check errors from the project.
  • Applies targeted fixes (add missing types, null checks, correct imports) while preserving existing structure.
  • Verifies fixes by re-running type checks and builds until the project passes.

Quick Start

Ask the assistant to fix the current project build with minimal changes and verify until the build passes.

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 large refactors?

To fix TypeScript build errors with minimal changes, you can apply targeted fixes like adding missing types, null checks, or correcting imports while preserving your existing project structure.

What is the best way to resolve failing type checks in a TypeScript project?

The best way to resolve failing type checks is to apply minimal-diff corrections to the code and then repeatedly run the project's type-check commands until the build passes successfully.

How do I automatically verify that my TypeScript fixes resolve build failures?

You can automatically verify TypeScript fixes by running the project's build and type-check commands after each targeted code correction, stopping the process only when the build passes.

Does this minimal-diff approach work for both build errors and type-check failures?

Yes, the minimal-diff approach works for both build errors and type-check failures by collecting and analyzing errors from both processes and applying targeted fixes to resolve them.

Can I use this method to fix TypeScript errors without altering my overall architecture?

Yes, you can fix TypeScript errors without altering your architecture because the process focuses on minimal code changes, such as adding missing types and correcting imports, to preserve existing structure.