fixer

fixer is an agent for coding agents from MarioEpkOne/PipelineIQ. It costs 29 tokens per session (341 once invoked), scanned A, original, MIT.

An implementation repair agent that fixes errors recorded in an audit document.

In plain words
What is it for?
Use it after a code audit to resolve the listed errors while following the project’s required repair instructions and constraints.
Why use it?
It limits repair work to documented, actionable problems, reducing the risk of unrelated changes or unnecessary refactoring.

Agent

Part of the pipelineiq plugin — 10 commands, 6 agents shipped together

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.

agentmods
npx agentmods add agents/marioepkone/pipelineiq/fixer
Clone the repo
git clone --depth 1 https://github.com/MarioEpkOne/PipelineIQ

Or install pipelineiq, the plugin that ships this one along with the rest of its 10 commands, 6 agents.

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 fixer

README.md
[![agentmods](https://agentmods.dev/badge/agents/marioepkone/pipelineiq/fixer.svg)](https://agentmods.dev/agents/marioepkone/pipelineiq/fixer)
Your own site
<a href="https://agentmods.dev/agents/marioepkone/pipelineiq/fixer"><img src="https://agentmods.dev/badge/agents/marioepkone/pipelineiq/fixer.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 341 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00029 $0.00341
Opus 5 $0.00015 $0.00170
Sonnet 5 $0.00006 $0.00068
Haiku 4.5 $0.00003 $0.00034

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

Security

Grade A, and why

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 5d 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.

agents/fixer.md · 25 lines

What it actually says

You are a fixer. Fix only the errors listed in the audit document. Do not add features, refactor, or make improvements beyond what is needed to fix each error.

First Step

Your runtime context includes a Commands directory path. Read the command file fix.md from that directory. Follow every phase in it exactly.

If you cannot read the command file, report this failure and stop. Do not improvise a process.

Relevant Invariants

  1. Artifact directories are never inside worktrees. specs/, Implementation Plans/, Working Logs/, and learnings.md exist only in the main repo root. Your runtime context includes a Main repo path — always use it for artifact paths, not paths relative to the worktree.
  2. Worktree commit hook caveat. Bare git commit inside a worktree is intercepted by the harness hook that reads the main repo CWD (always on master) and blocks. Use git -C <worktree-path> commit instead.

Project Knowledge

Your runtime context includes a Main repo path. Read .claude/pipeline-kb/fixer.md from that directory if it exists. These are project-specific gotchas relevant to fixing. Treat them as hard constraints for this project, not general guidelines.

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. 5d ago First seen · 25 lines · 29 tokens per session scan A 09d6cbc4b3a7

Subscribe to this mod's changes

fixer is an agent published in the GitHub repository MarioEpkOne/PipelineIQ (2 stars, last pushed 2mo ago), licensed MIT. It adds 29 tokens to every session and 341 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-31.

Related

Other agents, from other repositories

scv-investigator

SCV 배경 조사 에이전트. 깊은 질문 하나 — 여러 파일을 읽거나 검증이 필요한 것 — 를 받아 저장소를 읽고 file:line 근거가 붙은 보고를 scv/raw/ 파일로 남긴 뒤 요약만 돌려준다. scv/scvsettings.json SCVDELEGATEEFFORT=on 인 프로젝트에서, 답하는 모델이 질문을 깊다고 판단한 턴에만 배경으로 뜬다 — 어떤 SCV 명령도 자동으로 부르지 않는다. 이 정의에는 effort 줄이 없어 세션 다이얼을 바꾸지 않는다. 호출별 단계를 고를 수 있는 호스트에서는 띄우는 쪽이 고른다.

wookiya1364/scv-claude-code · 158 tokens

orchestrator

Main-session orchestrator for multi-step work. Run as the session agent (claude --agent orchestrator) — it dispatches explorer/planner/implementer/reviewer/tester. Only orchestrates when it IS the main session; a spawned subagent cannot dispatch others.

Jewgah/claude-code-skills · 59 tokens

implementer

Focused implementer. Use to execute an approved plan or a well-scoped change — writes code that matches existing conventions, then sanity-checks it builds.

Jewgah/claude-code-skills · 34 tokens

planner

Read-only implementation planner. Use proactively when a change is non-trivial and needs a step-by-step plan before coding. Produces a concrete, file-level plan; writes no code.

Jewgah/claude-code-skills · 39 tokens

reviewer

Critical code reviewer. Use proactively after a change or before commit to catch correctness bugs, security issues, and regressions in the diff. Read-only; can run tests to confirm.

Jewgah/claude-code-skills · 39 tokens

tester

Test & build runner. Use to run the suite/build, diagnose failures, and fix flaky or broken tests. Reports pass/fail honestly with real output.

Jewgah/claude-code-skills · 33 tokens