build-fix

Resolve TypeScript build errors with minimal code changes and verify via re-running builds.

20|6|Updated Feb 13, 2026
One-click install
npx skills add https://github.com/sigridjineth/oh-my-codex --skill build-fix-sigridjineth
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-fix
Source: https://github.com/sigridjineth/oh-my-codex/tree/main/skills/build-fix
Command: npx skills add https://github.com/sigridjineth/oh-my-codex --skill build-fix-sigridjineth

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill resolves build and TypeScript compilation errors efficiently, ensuring your project compiles without requiring extensive refactoring or architectural changes.

Core Features & Use Cases

  • Automated Error Resolution: Identifies and fixes common build and type-checking issues.
  • Minimalist Approach: Focuses solely on addressing errors, avoiding unrelated code modifications.
  • Verification: Automatically re-runs build/type checks to confirm fixes and prevent regressions.
  • Use Case: When your TypeScript compilation fails, this skill can automatically add missing type annotations or correct import paths to get your build passing quickly.

Quick Start

Use the build-fix skill to resolve the current build errors.

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 compilation errors without breaking existing code?

To fix TypeScript compilation errors without breaking existing code, apply minimal changes targeting missing type annotations, incorrect import statements, and null check requirements, then verify by re-running build commands to ensure successful compilation without regressions.

What is the best way to resolve build errors caused by missing type annotations?

The best way to resolve build errors caused by missing type annotations is applying minimal code changes to address the specific type requirements, avoiding unrelated refactoring while verifying the build passes successfully afterward.

Can I automatically fix incorrect import statements that fail my TypeScript build?

You can automatically fix incorrect import statements that fail your TypeScript build by applying targeted minimal changes to the imports, ensuring the project compiles without requiring extensive architectural modifications.

Does resolving TypeScript build errors this way introduce new regressions?

Resolving TypeScript build errors this way prevents regressions by automatically re-running build and type-checking commands after applying fixes, verifying that the compilation succeeds without introducing unrelated code modifications.

When should I avoid using automated fixes for compilation errors?

You should avoid using automated fixes for compilation errors when your project requires extensive refactoring or architectural changes, as this approach focuses solely on applying minimal code modifications to get the build passing quickly.