build-fix
Installation
SKILL.md
Fix Build Errors
Systematically resolve compilation/build errors.
Process
- Run build - Capture full error output
- Parse errors - Extract and categorize all errors
- Prioritize - Fix root causes first (dependency → syntax → type)
- Fix iteratively - One error at a time, rebuild after each
- Verify - Confirm clean build
Build Commands
# Java/Maven
mvn compile 2>&1 | head -100