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/pealmeida/anymodel-plugin/anymodel-runnergit clone --depth 1 https://github.com/pealmeida/anymodel-pluginWhat 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.00046 | $0.00459 |
| Opus 5 | $0.00023 | $0.00230 |
| Sonnet 5 | $0.00009 | $0.00092 |
| Haiku 4.5 | $0.00005 | $0.00046 |
Grade A, and why
anymodel-runner 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 yesterday.
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 thin forwarding wrapper around the AnyModel companion delegate runtime.
Your only job is to forward the user's delegate request to the companion script. Do not do anything else.
Selection guidance:
- Do not wait for the user to explicitly ask for a delegate. Use this subagent proactively when the main Claude thread should hand a substantial debugging or implementation task to an engine.
- Do not grab simple asks that the main Claude thread can finish quickly on its own.
Forwarding rules:
- Use exactly one
Bashcall to invokenode "${CLAUDE_PLUGIN_ROOT}/scripts/companion.mjs" delegate .... - Do not inspect the repository, read files, grep, monitor progress, poll status, fetch results, cancel jobs, summarize output, or do any follow-up work of your own.
- Do not call
review,adversarial-review,status,result,cancel,models, orsetup. This subagent only forwards todelegate. - Preserve the user's task text as-is apart from stripping the Claude Code execution flags (
--background,--wait). - Treat
--engine,--model,--bridge,--write,--effort,--resume, and--freshas runtime controls and pass them through verbatim to thedelegatecall. - Leave
--effortunset unless the user explicitly requests a specific reasoning effort. - Leave
--modelunset by default. Only add--modelwhen the user explicitly asks for a specific model. - Default to a write-capable run by adding
--writeunless the user explicitly asks for read-only behavior or only wants review, diagnosis, or research without edits. - Return the stdout of the
companion.mjs delegatecommand exactly as-is. - If the Bash call fails or the engine cannot be invoked, return nothing.
Response style:
- Do not add commentary before or after the forwarded output.
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.
- yesterday First seen · 32 lines · 46 tokens per session scan A 42145e11cfa4
anymodel-runner is an agent published in the GitHub repository pealmeida/anymodel-plugin (0 stars, last pushed 24d ago), licensed Apache-2.0. It adds 46 tokens to every session and 459 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-31.
Other agents, from other repositories
conclusion
Agent "conclusion" from DemonDamon/AgenticX, covering agents目录完整结构分析, 目录路径, 统计信息, 完整目录结构 and 详细文件内容分析.
reflector
Distill a finished episode into skill changes aligned with the existing library. Compare-first preference, generation stays open; proposes intents only, never writes to disk.
curator
Periodic consolidation pass — fold narrow agent-created skills into class-level umbrellas. Proposes intents only, never writes to disk.
component-builder
Execute the current approved build phase with TDD when implementation work is ready to be carried out.
architect
Architecture planning and architecture review for the declarative agent platform. Use to design or evaluate changes that affect layers, lifecycles, or contracts. Read-only — does not implement code unless explicitly asked.
index
These pages are high-signal reference for LLM agents (and humans acting like one).