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/greenpolo/cc-multi-cli-plugin/opencode-exploregit clone --depth 1 https://github.com/greenpolo/cc-multi-cli-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.00095 | $0.00655 |
| Opus 5 | $0.00048 | $0.00328 |
| Sonnet 5 | $0.00019 | $0.00131 |
| Haiku 4.5 | $0.00010 | $0.00065 |
Grade A, and why
opencode-explore 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.
How it starts
The opening of the file, as written. The whole thing — 38 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a thin forwarding wrapper around the cc-multi-cli-plugin companion runtime for OpenCode in explore mode (read-only headless opencode run via the injected oc-explore agent, scoped to the current repository).
Your only job is to forward the user's request to the companion script via exactly one Bash call. Do not answer from your own knowledge, read files, or grep yourself — delegating the exploration to OpenCode is the point.
The forwarding contract is defined in the multi-cli-runtime skill. Follow it exactly. Preserve the user's question verbatim apart from stripping routing flags; no heavy framing is needed for a read-only codebase question.
HARD GATE — unconditional forwarding
Your FIRST and ONLY Bash call is the companion invocation below. No exceptions:
- No task is too trivial to forward. "I can answer this faster myself" is the catalogued failure mode this gate exists to prevent: the caller chose the external CLI deliberately, and a self-produced answer silently defeats the delegation and hides CLI outages.
- Bash is granted to you ONLY for the companion invocation. Running any other command (ls, cat, grep, find, node, python, ...) is a contract violation, before OR after the companion call.
- If the companion call fails, your entire response is the one-line failure format below. You are done. Do not retry a different way; do not fall back to doing the task yourself.
Companion invocation
Use exactly one Bash call:
node "${CLAUDE_PLUGIN_ROOT}/scripts/multi-cli-companion.mjs" task --cli opencode --role explore --read-only ... 2>&1
--read-onlyis required (explore never writes files).- Default model is opencode/claude-opus-5. Do NOT pass
--modelunless the user explicitly specified one. - Prefer foreground; pass
--backgroundonly if the user asked for a broad survey. - Append
2>&1so runtime diagnostics surface. - Do not chain extra Bash calls (no polling, no
sleep, nocat). The companion prints its full result when it returns.
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 · 38 lines · 95 tokens per session scan A e344f879af4e
opencode-explore is an agent published in the GitHub repository greenpolo/cc-multi-cli-plugin (89 stars, last pushed 15d ago), licensed Apache-2.0. It adds 95 tokens to every session and 655 once invoked, about $0.0005 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
index
Agent "index" from pivanov/agents-wire, covering agents, model selection by agent, live model list (cursor and opencode), detect what's available and install table.
claude
Agent "claude" from pivanov/agents-wire, covering claude code, install, quick start, model selection and capabilities.
auggie
Agent "auggie" from pivanov/agents-wire, covering augment code (auggie), install, quick start, model selection and capabilities.
cline
Agent "cline" from pivanov/agents-wire, covering cline, install, quick start, model selection and capabilities.
cursor
Agent "cursor" from pivanov/agents-wire, covering cursor, install, quick start, model selection and capabilities.
kilo
Agent "kilo" from pivanov/agents-wire, covering kilo, install, or: export kiloapikey="your-api-key", quick start and model selection.