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.md
source 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

  1. Prefer
    everything-claude-code:build-error-resolver
    when available.
  2. If unavailable, delegate to local
    error-resolver
    workflow.
  3. If both are unavailable, use systematic-debugging for root-cause isolation.

Minimal Workflow

  1. Capture the exact failing command and full stderr/stdout.
  2. Classify failure type:
    • dependency/setup mismatch
    • compile/type/lint failure
    • env/config mismatch
    • test/runtime failure
  3. Apply smallest fix that addresses root cause.
  4. Re-run the original failing command to verify.
  5. Report evidence: command, output, and final status.