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.
npx agentmods add agents/marioepkone/pipelineiq/fixergit clone --depth 1 https://github.com/MarioEpkOne/PipelineIQWrote 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.
[](https://agentmods.dev/agents/marioepkone/pipelineiq/fixer)<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>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.
| Model | Per session | Once 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 |
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.
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
- Artifact directories are never inside worktrees.
specs/,Implementation Plans/,Working Logs/, andlearnings.mdexist 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. - Worktree commit hook caveat. Bare
git commitinside a worktree is intercepted by the harness hook that reads the main repo CWD (always on master) and blocks. Usegit -C <worktree-path> commitinstead.
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.
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.
- 5d ago First seen · 25 lines · 29 tokens per session scan A 09d6cbc4b3a7
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.
Other agents, from other repositories
scv-investigator
SCV 배경 조사 에이전트. 깊은 질문 하나 — 여러 파일을 읽거나 검증이 필요한 것 — 를 받아 저장소를 읽고 file:line 근거가 붙은 보고를 scv/raw/ 파일로 남긴 뒤 요약만 돌려준다. scv/scvsettings.json SCVDELEGATEEFFORT=on 인 프로젝트에서, 답하는 모델이 질문을 깊다고 판단한 턴에만 배경으로 뜬다 — 어떤 SCV 명령도 자동으로 부르지 않는다. 이 정의에는 effort 줄이 없어 세션 다이얼을 바꾸지 않는다. 호출별 단계를 고를 수 있는 호스트에서는 띄우는 쪽이 고른다.
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.
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.
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.
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.
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.