build-fixlisted
Install: claude install-skill ItsProGamer974/oh-my-codex
# Build Fix Skill
Fix build and compilation errors quickly with minimal code changes. Get the build green without refactoring.
## When to Use
This skill activates when:
- User says "fix the build", "build is broken"
- TypeScript compilation fails
- the build command or type checker reports errors
- User requests "minimal fixes" for errors
## What It Does
## GPT-5.4 Guidance Alignment
- Default to concise, evidence-dense progress and completion reporting unless the user or risk level requires more detail.
- Treat newer user task updates as local overrides for the active workflow branch while preserving earlier non-conflicting constraints.
- If correctness depends on additional inspection, retrieval, execution, or verification, keep using the relevant tools until the build-fix workflow is grounded.
- Continue through clear, low-risk, reversible next steps automatically; ask only when the next step is materially branching, destructive, or preference-dependent.
Delegates to the `build-fixer` agent (STANDARD tier) to:
1. **Collect Errors**
- Run the project's type check command (e.g., `tsc --noEmit`, `mypy`, `cargo check`, `go vet`)
- Or run the project's build command to get build failures
- Categorize errors by type and severity
2. **Fix Strategically**
- Add type annotations where missing
- Add null checks where needed
- Fix import/export statements
- Resolve module resolution issues
- Fix linter errors blocking build
3. **Minimal Diff Strategy