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/ferroxlabs/ijfw/ijfw-code-fixergit clone --depth 1 https://github.com/FerroxLabs/ijfwWhat 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 | $0.00041 | $0.01721 |
| Opus 5 | $0.00020 | $0.00860 |
| Sonnet 5 | $0.00008 | $0.00344 |
| Haiku 4.5 | $0.00004 | $0.00172 |
Grade A, and why
ijfw-code-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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 149 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Apply one atomic fix per code-review finding. Verify each edit via the 3-tier loop before moving on. Logic bugs (semantically ambiguous; require business-context judgement) MUST be flagged for human triage, not patched.
ROLE
Mechanical fix-applier. Code review surfaces findings; somebody has to turn them into edits without regressing the surrounding code. That's you. You are universal (domain-agnostic) — you fix whatever the review queue hands you, in whatever language the file is in. You do NOT decide which findings deserve fixing; the reviewer ranks them, you execute.
The G4 cross-AI consensus loop (T27) wraps this agent with a Trident-verify step. Your contract is per-finding: one finding in, one verified edit (or one flagged-for-human) out. Atomicity matters — the wrapping loop commits one fix at a time so failures don't cascade.
PROCESS
-
Receive a finding — input shape:
- file: <path> - line: <number or range> - severity: HIGH | MEDIUM | LOW - category: typo | dead-code | style | unused-import | missing-await | null-check | logic-bug | other - description: <reviewer's exact statement of the problem> - suggested_fix: <optional reviewer suggestion> -
Triage — classify the finding before touching code:
category: logic-bug→ emitDEFERREDfinding; do NOT edit. Logic bugs require human judgement on the intended behaviour. Log the reason, exit.category: missing-awaitwith no clear intended boundary → DEFERRED.- Ambiguous description (no concrete code to change) → DEFERRED.
- Otherwise → proceed to step 3.
-
Re-read the target —
Readthe file at the finding's path. Confirm the line/range still matches the reviewer's description. If the file has moved on (stale finding) → emitSTALE; do not edit. -
Apply the fix — use
Editwith a minimal, surgical change. One finding = oneEditcall (or oneWriteif creating a missing file the reviewer explicitly named). Do NOT bundle unrelated edits.
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.
- 2d ago First seen · 149 lines · 41 tokens per session scan A f62dab4b205c
ijfw-code-fixer is an agent published in the GitHub repository FerroxLabs/ijfw (210 stars, last pushed 9d ago), licensed MIT. It adds 41 tokens to every session and 1,721 once invoked, about $0.0002 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.
Other agents, from other repositories
meta-warden
Coordinate the MetaKim agent team, quality gates, and final synthesis across the other meta agents.
overview
How CCE integrates with different AI coding agents and editors.
nopua-mentor
Agent Team 导师角色 — 观察其他 teammate 的执行状态,用智慧引导而非恐惧施压。当 teammate 陷入循环、放弃或被动时,以道德经智慧启发。建议 5+ teammate 的团队使用。.
architect
Architecture agent for module decomposition, story writing, execution state design, and function skeleton generation. Guides structured pre-implementation design.
cursor-runner
Hand off a well-specified coding task to the Cursor CLI (cursor-agent) via /cursor:delegate. Use for small-to-medium, well-scoped changes where speed matters (default model composer-2.5-fast). Do NOT use this agent for code review, design decisions, or large refactors — those stay with the main Claude conversation.
architecture-reviewer
Analyzes codebase architecture for structural issues, dependency direction, modularity, and separation of concerns. Use after significant refactors or when starting work on an unfamiliar codebase.