Vibe-Skills build-error-resolver
Compatibility alias for build-specific error resolution. Use this when VCO routes to build-error-resolver but the upstream agent is unavailable in the current runtime.
install
source · Clone the upstream repo
git clone https://github.com/foryourhealth111-pixel/Vibe-Skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/foryourhealth111-pixel/Vibe-Skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/bundled/skills/build-error-resolver" ~/.claude/skills/foryourhealth111-pixel-vibe-skills-build-error-resolver && rm -rf "$T"
manifest:
bundled/skills/build-error-resolver/SKILL.mdsource content
build-error-resolver (Compatibility Alias)
Purpose
Provide a stable local entrypoint for VCO
build-error-resolver routes.
This skill preserves routing compatibility across environments where the
everything-claude-code:build-error-resolver agent may not be available.
Resolution Order
- Prefer
when available.everything-claude-code:build-error-resolver - If unavailable, delegate to local
workflow.error-resolver - If both are unavailable, use systematic-debugging for root-cause isolation.
Minimal Workflow
- Capture the exact failing command and full stderr/stdout.
- Classify failure type:
- dependency/setup mismatch
- compile/type/lint failure
- env/config mismatch
- test/runtime failure
- Apply smallest fix that addresses root cause.
- Re-run the original failing command to verify.
- Report evidence: command, output, and final status.