orch-build-fix

orch-build-fix is a skill for Claude Code, Codex from mattmre/EVOKORE-MCP-PUBLIC. It costs 17 tokens per session (713 once invoked), scanned A, original, MIT.

A tool for finding the cause of build or test failures and applying the smallest change needed to fix them.

In plain words
What is it for?
Use it to inspect error output, trace errors to source files, fix compilation, test, runtime, dependency, or configuration problems, and rerun checks.
Why use it?
It reduces time spent changing unrelated code and helps confirm that a fix does not introduce new failures.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to inspect error output, trace errors to source files, fix compilation, test, runtime, dependency, or configuration problems, and rerun checks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mattmre/evokore-mcp-public/orch-build-fix
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add mattmre/EVOKORE-MCP-PUBLIC --skill orch-build-fix
Clone the repo
git clone --depth 1 https://github.com/mattmre/EVOKORE-MCP-PUBLIC

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for orch-build-fix

README.md
[![agentmods](https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/orch-build-fix/github.svg)](https://agentmods.dev/skills/mattmre/evokore-mcp-public/orch-build-fix)
Your own site
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/orch-build-fix"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/orch-build-fix/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for orch-build-fix

Your own site · 80×15
<a href="https://agentmods.dev/skills/mattmre/evokore-mcp-public/orch-build-fix"><img src="https://agentmods.dev/badge/skills/mattmre/evokore-mcp-public/orch-build-fix.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 713 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00017 $0.00713
Opus 5 $0.00009 $0.00357
Sonnet 5 $0.00003 $0.00143
Haiku 4.5 $0.00002 $0.00071

Measured 8d ago against content hash ca423bfbabc2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

orch-build-fix scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

SKILLS/ORCHESTRATION FRAMEWORK/commands/orch-build-fix/SKILL.md · 132 lines

How it starts

The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Orchestration Build Fix

Purpose

Fix build or test failures with minimal, targeted changes. Focuses on diagnosing root cause and applying the smallest fix possible.

Invocation

orch-build-fix [error-source]

Arguments

Argument Required Description
error-source No Specific error output or log file
build-command No Override default build command
test-command No Override default test command

Workflow

1. Capture Error State

  • Run build or test command
  • Capture full error output
  • Identify error type and location

2. Analyze Root Cause

  • Parse error messages
  • Trace to source file and line
  • Identify pattern from common errors

3. Apply Minimal Fix

  • Make smallest change to resolve error
  • Avoid scope creep beyond the error
  • Document rationale

4. Verify Fix

  • Re-run build or test
  • Confirm error resolved
  • Check for regressions

Error Analysis Steps

  1. Identify error type:

    • Compilation error
    • Test failure
    • Runtime exception
    • Dependency issue
    • Configuration error
  2. Locate source:

    • File path from stack trace
    • Line number from error message
    • Related files from imports/references
  3. Determine fix pattern:

    • Missing import/dependency
    • Type mismatch
    • Null/undefined reference
    • Logic error
    • Configuration mismatch

Common Error Patterns

Pattern Symptoms Fix Approach
Missing dependency Module not found Add to package/project file
Type mismatch Type 'X' not assignable Correct type or add conversion
Null reference Cannot read property of null Add null check or initialization
Import error Cannot find module Fix import path or add export
Test assertion Expected X, got Y Fix logic or update expectation
Config error Invalid configuration Correct config value/format

Outputs

Output Description
Fixed code Minimal change to resolve error
Verification Build/test pass confirmation
Task update Fix documented with evidence

Read the full file on GitHub · 132 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 132 lines · 17 tokens per session scan A ca423bfbabc2

Subscribe to this mod's changes

orch-build-fix is a skill published in the GitHub repository mattmre/EVOKORE-MCP-PUBLIC (3 stars, last pushed 3mo ago), licensed MIT. It adds 17 tokens to every session and 713 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

bug-hunter

Use this skill when scanning source code for bugs, anti-patterns, code smells, or quality issues in a WrongStack project. Trigger on the explicit vocabulary — "bug", "bug hunt", "scan for issues", "find problems", "anti-pattern", "code smell", "static analysis" — and on the task shape, which is how it usually arrives…

WrongStack/WrongStack · 165 tokens

observability

Use this skill when instrumenting logs, traces, or metrics in WrongStack, or when setting up observability for a new feature. Triggers: user says "log", "trace", "metrics", "observability", "instrument", "structured logging", "opentelemetry", "log level", "debug", "monitoring".

WrongStack/WrongStack · 72 tokens

harness-doctor

Check whether this project's Agentsmith harness is installed correctly and healthy — fires on "is my harness set up right?", "harness doctor", "check my harness". Part of the Agentsmith harness; checks each selected agent's managed rules, settings, skills, hooks, verification, and leanness with a one-line fix for each…

PromptPartner/agentsmith · 74 tokens

deobfuscating-powershell-obfuscated-malware

Systematically deobfuscate multi-layer PowerShell malware using AST analysis, dynamic tracing, and tools like PSDecode and PowerDecode to reveal hidden payloads and C2 infrastructure.

adriannoes/awesome-agentic-ai · 48 tokens

detecting-process-injection-techniques

Detects and analyzes process injection techniques used by malware including classic DLL injection, process hollowing, APC injection, thread hijacking, and reflective loading. Uses memory forensics, API monitoring, and behavioral analysis to identify injection artifacts. Activates for requests involving process…

adriannoes/awesome-agentic-ai · 78 tokens

hunting-for-anomalous-powershell-execution

Hunt for malicious PowerShell activity by analyzing Script Block Logging (Event 4104), Module Logging (Event 4103), and process creation events. The analyst parses Windows Event Log EVTX files to detect obfuscated commands, AMSI bypass attempts, encoded payloads, credential dumping keywords, and suspicious download…

adriannoes/awesome-agentic-ai · 102 tokens