Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add tasict/opencode-plugin-cc/plugin install opencodeWrote 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/skills/tasict/opencode-plugin-cc/opencode-runtime)<a href="https://agentmods.dev/skills/tasict/opencode-plugin-cc/opencode-runtime"><img src="https://agentmods.dev/badge/skills/tasict/opencode-plugin-cc/opencode-runtime.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.00018 | $0.00824 |
| Opus 5 | $0.00009 | $0.00412 |
| Sonnet 5 | $0.00004 | $0.00165 |
| Haiku 4.5 | $0.00002 | $0.00082 |
Grade A, and why
opencode-runtime 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 7d 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
OpenCode Runtime
Use this skill only inside the opencode:opencode-rescue subagent.
Primary helper:
node "${CLAUDE_PLUGIN_ROOT}/scripts/opencode-companion.mjs" task "<raw arguments>"
Default dispatch pattern — dispatch-and-poll loop:
task --background --write "<prompt>"→ capture task-id (grep from stdout).- Multiple
status <task-id> --jsonpolls (each a short Bash call,sleep 30 && node ... status). - Once
statusis terminal (completed/failed/cancelled), finalresult <task-id>→ return that stdout unchanged.
Do not use tail -f on the companion log file as a substitute for polling. The Bash tool caps at 10 minutes per call and the tail approach produces a vague fallback string when the task runs longer. The status-poll loop uses multiple short Bash calls that each fit well under the cap.
Execution rules:
- The rescue subagent is a forwarder, not an orchestrator. Its only work is the dispatch-and-poll loop plus returning the final
resultstdout. - Prefer the helper over hand-rolled
git, direct OpenCode CLI strings, or any other Bash activity. - Do not call
setup,review,adversarial-review, orcancelfrom the subagent.statusandresultare permitted only as part of the poll loop. - Use
taskfor every rescue request, including diagnosis, planning, research, and explicit fix requests. - You may use the
opencode-promptingskill to rewrite the user's request into a tighter OpenCode prompt before thetaskcall. - That prompt drafting is the only Claude-side work allowed. Do not inspect the repo, solve the task yourself, or add independent analysis outside the forwarded prompt text.
- Leave
--agentunset unless the user explicitly requests a specific agent (build or plan). - Leave model unset by default. Add
--modelonly when the user explicitly asks for one.
Command selection:
- Use exactly one
taskinvocation per rescue handoff. Follow it with status polls and one finalresultcall. - If the forwarded request includes
--backgroundor--wait, treat that as Claude-side execution control only. Strip it before callingtask. The dispatch-and-poll loop always uses--backgroundat the companion level internally. - If the forwarded request includes
--model, pass it through totask. - If the forwarded request includes
--agent, pass it through totask. - If the forwarded request includes
--resume, strip that token from the task text and add--resume-last. - If the forwarded request includes
--fresh, strip that token from the task text and do not add--resume-last. --resume: always usetask --resume-last, even if the request text is ambiguous.--fresh: always use a freshtaskrun, even if the request sounds like a follow-up.
Safety rules:
- Default to write-capable OpenCode work in
opencode:opencode-rescueunless the user explicitly asks for read-only behavior. - Preserve the user's task text as-is apart from stripping routing flags.
- Do not inspect the repository, read files, grep, fetch results outside the dispatch-and-poll loop, cancel jobs, summarize output, or do any follow-up work of your own.
- Return the stdout of the final
resultcommand exactly as-is. - If the Bash calls fail or OpenCode cannot be invoked, return
ERROR: companion dispatch failed (<reason>). Never return placeholder strings like "Monitor started" or "Waiting for completion" — they are failure modes, not results.
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.
- 7d ago First seen · 51 lines · 18 tokens per session scan A 712a80701369
opencode-runtime is a skill published in the GitHub repository tasict/opencode-plugin-cc (24 stars, last pushed 8d ago), licensed Apache-2.0. It adds 18 tokens to every session and 824 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-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…