Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub leejaedus/pepcode --plugin pepcodeHow this skill is triggered — by the user, by Claude, or both
Slash command
/pepcode:build-fixThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fix build and compilation errors quickly with minimal code changes. Get the build green without refactoring.
Fixes TypeScript build and compilation errors incrementally: runs npm/pnpm build, analyzes and prioritizes errors by file/severity, applies one fix at a time with context review, re-verifies until resolved.
Diagnoses and fixes TypeScript compile errors, runtime exceptions, build failures, and test issues in JavaScript/Node.js projects via linting, dependency reinstalls, and code patterns. Use for task failures.
Share bugs, ideas, or general feedback.
Fix build and compilation errors quickly with minimal code changes. Get the build green without refactoring.
This skill activates when:
Delegates to the build-fixer agent (Sonnet model) to:
Collect Errors
tsc --noEmit, mypy, cargo check, go vet)Fix Strategically
Minimal Diff Strategy
Verify
Task(
subagent_type="pepcode:build-fixer",
model="sonnet",
prompt="BUILD FIX TASK
Fix all build and TypeScript errors with minimal changes.
Requirements:
- Run tsc/build to collect errors
- Fix errors one at a time
- Verify each fix doesn't introduce new errors
- NO refactoring, NO architectural changes
- Stop when build passes
Output: Build error resolution report with:
- List of errors fixed
- Lines changed per fix
- Final build status"
)
The build-fixer agent stops when:
BUILD FIX REPORT
================
Errors Fixed: 12
Files Modified: 8
Lines Changed: 47
Fixes Applied:
1. src/utils/validation.ts:15 - Added return type annotation
2. src/components/Header.tsx:42 - Added null check for props.user
3. src/api/client.ts:89 - Fixed import path for axios
...
Final Build Status: ✓ PASSING
Verification: [type check command] (exit code 0)
Combine with other skills for comprehensive fixing:
With Ultrawork:
/ultrawork fix all build errors
Spawns multiple build-fixer agents in parallel for different files.
With Ralph:
/ralph fix the build
Keeps trying until build passes, even if it takes multiple iterations.
With Pipeline:
/pipeline debug "build is failing"
Uses: explore → architect → build-fixer workflow.