원클릭으로
build-fix
Diagnose and fix build/CI failures automatically
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Diagnose and fix build/CI failures automatically
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Concurrent code generation via multi-model picker
UI/UX design and frontend component generation
OMP self-improvement — analyse own skills/agents and propose improvements
Visual diff/screenshot comparison verdict
Clone and adapt a web page/design to the codebase
Trace→deep-interview pipeline for deep investigation
| name | build-fix |
| description | Diagnose and fix build/CI failures automatically |
| trigger | build-fix:, /build-fix, /omp:build-fix |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | build-fix |
| Keywords | build-fix:, /build-fix |
| Tier | DevOps Tool |
| Source | src/skills/build-fix.mts |
Diagnoses and fixes build/CI failures automatically. Reads build logs, identifies root-cause errors, applies targeted source fixes, and re-runs the build in a loop until it passes or the retry budget is exhausted. Supports npm, pnpm, cargo, go, gradle, and custom CI runners.
interface SkillInput { trigger: string; args: string[]; }
interface SkillOutput { status: "ok" | "error"; message: string; }
export async function activate(input: SkillInput): Promise<SkillOutput>
export function deactivate(): void
Extension-only skill. Triggers automated build/CI failure diagnosis and repair in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
P3 scope: Cross-repository dependency resolution and remote CI log fetching (as specified in SPEC-omp-2.0 §5) are deferred to P3. The current implementation operates on local build output only.