build-fix

Diagnose and fix build failures across JavaScript, Python, and Java projects.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/Jimmy-Jung/claude_symbiote --skill build-fix-jimmy-jung
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-fix
Source: https://github.com/Jimmy-Jung/claude_symbiote/tree/main/.claude/skills/build-fix
Command: npx skills add https://github.com/Jimmy-Jung/claude_symbiote --skill build-fix-jimmy-jung

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

이 스킬은 빌드 실패를 신속하고 안정적으로 해결하기 위한 자동 수정 워크플로우를 제공합니다. 컴파일 에러, 타입 에러, 누락된 import, 빌드 설정 문제를 진단하고 최소한의 변경으로 수정합니다.

Core Features & Use Cases

  • 오류 수집과 유형 분류: 빌드 로그에서 문제를 자동으로 감지하고 분류합니다.
  • 우선순위 기반 자동 수정: 가장 영향이 큰 오류부터 자동으로 제안 및 적용합니다.
  • 수정 후 검증: 수정 후 다시 빌드를 실행해 회귀를 방지합니다.
  • 실무 시나리오: CI 파이프라인에서 빌드 실패를 즉시 자동 수정하고 PR에 반영할 수 있습니다.

Quick Start

Run the build-fix workflow on a failing project to automatically diagnose and apply minimal fixes.

Frequently Asked Questions about build-fix

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

FAQPage Schema
How do I automatically fix build errors in my CI/CD pipeline?

Automatically fixing build errors involves diagnosing compile errors, type errors, and missing imports from build logs, then applying minimal targeted fixes. This skill collects and classifies build failures, prioritizes the highest-impact errors, and validates fixes by re-running the build to prevent regressions.

What's the best way to diagnose and resolve compile errors across JavaScript, Python, and Java monorepos?

Diagnosing compile errors across JavaScript, Python, and Java monorepos requires collecting build logs, classifying error types, and applying prioritized automatic fixes. This skill detects missing imports and type errors, then applies minimal changes and validates against lint and build outputs.

Can I use automated debugging to fix missing imports and type errors locally?

Yes, automated debugging for missing imports and type errors works in local development environments. The skill detects issues from build outputs, classifies them, and applies minimal targeted fixes, then runs a validation build to ensure the local project compiles without regressions.

How does an automated build fix workflow prevent regressions after applying changes?

An automated build fix workflow prevents regressions by running a validation build immediately after applying targeted fixes. Once the skill diagnoses and applies minimal changes to resolve compile errors and missing imports, it re-executes the build and lint checks to confirm the project is stable.

Does automated build error fixing support lint errors as well as compile failures?

Automated build error fixing supports lint errors alongside compile failures by validating applied changes against lint and build outputs. The workflow collects and classifies errors from build logs, applies prioritized minimal fixes, and confirms resolution by re-running the full validation pipeline.

When should I not use an automated workflow to fix build failures?

You should not use an automated workflow to fix build failures when errors require complex architectural changes rather than minimal targeted fixes. This skill is designed for diagnosing missing imports, type errors, and compile issues, applying the smallest possible changes to resolve them safely.