build-fixer

build-fixer is an agent for Claude Code from Lifecycle-Innovations-Limited/claude-ops. It costs 26 tokens per session (513 once invoked), scanned A, original, MIT.

A build-repair agent for fixing one failed local software build, including mobile projects and package scripts.

In plain words
What is it for?
Use it to diagnose and repair failures from commands such as npm run build, Expo, Fastlane, type checks, linting, or patch verification. It can prepare a minimal fix and the related review workflow.
Why use it?
It identifies whether the failure comes from code, checks, dependency versions, signing, missing secrets, or a temporary service problem, so fixes target the actual cause.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter; mentions subagents.

Part of the ops plugin — 66 skills, 21 agents, 5 hooks, 1 MCP server shipped together

Good fit Use it to diagnose and repair failures from commands such as npm run build, Expo, Fastlane, type checks, linting, or patch verification. It can prepare a minimal fix and the related review workflow.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/lifecycle-innovations-limited/claude-ops/build-fixer
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.

Clone the repo
git clone --depth 1 https://github.com/Lifecycle-Innovations-Limited/claude-ops

Made for: Claude Code.

Or install ops, the plugin that ships this one along with the rest of its 66 skills, 21 agents, 5 hooks, 1 MCP server.

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 build-fixer

README.md
[![agentmods](https://agentmods.dev/badge/agents/lifecycle-innovations-limited/claude-ops/build-fixer/github.svg)](https://agentmods.dev/agents/lifecycle-innovations-limited/claude-ops/build-fixer)
Your own site
<a href="https://agentmods.dev/agents/lifecycle-innovations-limited/claude-ops/build-fixer"><img src="https://agentmods.dev/badge/agents/lifecycle-innovations-limited/claude-ops/build-fixer/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 build-fixer

Your own site · 80×15
<a href="https://agentmods.dev/agents/lifecycle-innovations-limited/claude-ops/build-fixer"><img src="https://agentmods.dev/badge/agents/lifecycle-innovations-limited/claude-ops/build-fixer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 513 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.00026 $0.00513
Opus 5 $0.00013 $0.00257
Sonnet 5 $0.00005 $0.00103
Haiku 4.5 $0.00003 $0.00051

Measured 9d ago against content hash 18eb4748879e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

build-fixer 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 9d 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.

claude-ops/agents/build-fixer.md · 50 lines

How it starts

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

You are Build Fixer — focused mobile/native build engineer persona.

Diagnosis taxonomy

Bucket Signals Fix
type-check error TS2, error TS7 Patch source; rerun npm run type-check
lint ESLint rule fails Fix in code (no eslint-disable)
expo / SDK drift expo-doctor, versions mismatch npx expo install --check --fix
fastlane signing Match, provisioning profile Re-sync (CONFIRM before nuke)
fastlane archive xcodebuild, gym, Build FAILED Find Xcode error, patch source
ASC transient 503, Apple ID server temporarily unavailable Recommend retry, no PR
Doppler missing secret not found Surface missing key, do NOT auto-rotate
Dirty tree prepare-build-branch.*Abort Stash variant artifacts, recommend retry
patch-package verify-runtime-patches, patch failed Restore invariant

Workflow

  1. Diagnose → bucket
  2. Worktree off current branch
  3. Apply minimal fix
  4. Run appropriate gate (type-check / lint / expo install --check / patch verifier)
  5. Commit --no-verify, push, open PR titled fix(build): <bucket>: <one-line>

Hard guardrails

  • NEVER re-run npm run build:* yourself (operator's call)
  • NEVER bump major dep versions
  • NEVER add eslint-disable / @ts-ignore to mask
  • NEVER touch generated app.config.js directly — edit src/config/app.config.<variant>.js
  • NEVER invalidate signing material without explicit confirm
  • MAX 8 files changed
  • NEVER spawn >2 sub-subagents
  • NEVER commit secrets

Read the full file on GitHub · 50 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. 9d ago First seen · 50 lines · 26 tokens per session scan A 18eb4748879e

Subscribe to this mod's changes

build-fixer is an agent published in the GitHub repository Lifecycle-Innovations-Limited/claude-ops (187 stars, last pushed yesterday), licensed MIT. It adds 26 tokens to every session and 513 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-08-30.

Related

Other agents, from other repositories

verifier

Critically evaluates investigation results, checks path coverage, and validates failure points using Devil's Advocate method. Use when investigation has completed, or when "verify/validate/double-check/confirm findings" is mentioned. Focuses on verification and conclusion derivation.

shinpr/claude-code-workflows · 54 tokens

doctrine-performance-optimizer

Read-only performance audit of Doctrine usage: N+1 queries, fetch modes, batch processing, missing indexes, and caching opportunities. Use proactively after adding entities, relations, repository queries, or when a page/endpoint is reported slow.

dev-toolings/superpowers-symfony · 53 tokens

error-handling-reviewer

Hunts for swallowed errors, silent failures, and broken error propagation chains in changed code.

OutSystems/outsystems-mcp · 24 tokens

debugger

Systematic debugger using the Iron Law: no fix without confirmed root cause. Reproduces errors, traces execution paths, forms and verifies hypotheses, then implements…

KevinZai/commander · 35 tokens

evolve-error-handling-scan

Silent-failure adversary for the Evolve Loop (Evaluate archetype). The advisor INSERTS this phase after Build on bugfix cycles — and on any large diff regardless of goal type — to hunt swallowed errors, ignored return values, and catch-all fallbacks in the changed code. BLOCKS when a failure path is silenced so it…

mickeyyaya/evolve-loop · 80 tokens

evolve-telemetry-coverage-check

Observability completeness gate for the Evolve Loop (Evaluate archetype). The advisor INSERTS this phase after Build on cycles whose scout.goaltype == "observability" to verify every newly added code path is debuggable in production before ship.

mickeyyaya/evolve-loop · 58 tokens