opencode-runtime

opencode-runtime is a skill for Claude Code from tasict/opencode-plugin-cc. It costs 18 tokens per session (824 once invoked), scanned A, original, Apache-2.0.

An internal helper for sending tasks to the OpenCode companion runtime from Claude Code. It describes how to submit a task, check its status, and return the completed result.

In plain words
What is it for?
Use it inside the specified OpenCode rescue subagent to start background tasks, poll them until completion, and return their final output.
Why use it?
It provides a defined way to handle longer-running OpenCode tasks without relying on an unsuitable continuous log command. This keeps task dispatch and status checking consistent.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: mentions subagents; mentions Claude Code; mentions OpenCode.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the opencode plugin — 3 skills, 7 commands, 1 agent, 4 hooks shipped together

Good fit Use it inside the specified OpenCode rescue subagent to start background tasks, poll them until completion, and return their final output.

Compare 6 skills from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add tasict/opencode-plugin-cc
Claude Code
/plugin install opencode

Made for: Claude Code.

Or install opencode, the plugin that ships this one along with the rest of its 3 skills, 7 commands, 1 agent, 4 hooks.

Wrote 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.

agentmods badge for opencode-runtime

README.md
[![agentmods](https://agentmods.dev/badge/skills/tasict/opencode-plugin-cc/opencode-runtime.svg)](https://agentmods.dev/skills/tasict/opencode-plugin-cc/opencode-runtime)
Your own site
<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>
Per session 18 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 824 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 7d ago against content hash 712a80701369, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

plugins/opencode/skills/opencode-runtime/SKILL.md · 51 lines

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:

  1. task --background --write "<prompt>" → capture task-id (grep from stdout).
  2. Multiple status <task-id> --json polls (each a short Bash call, sleep 30 && node ... status).
  3. Once status is terminal (completed / failed / cancelled), final result <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 result stdout.
  • Prefer the helper over hand-rolled git, direct OpenCode CLI strings, or any other Bash activity.
  • Do not call setup, review, adversarial-review, or cancel from the subagent. status and result are permitted only as part of the poll loop.
  • Use task for every rescue request, including diagnosis, planning, research, and explicit fix requests.
  • You may use the opencode-prompting skill to rewrite the user's request into a tighter OpenCode prompt before the task call.
  • 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 --agent unset unless the user explicitly requests a specific agent (build or plan).
  • Leave model unset by default. Add --model only when the user explicitly asks for one.

Command selection:

  • Use exactly one task invocation per rescue handoff. Follow it with status polls and one final result call.
  • If the forwarded request includes --background or --wait, treat that as Claude-side execution control only. Strip it before calling task. The dispatch-and-poll loop always uses --background at the companion level internally.
  • If the forwarded request includes --model, pass it through to task.
  • If the forwarded request includes --agent, pass it through to task.
  • 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 use task --resume-last, even if the request text is ambiguous.
  • --fresh: always use a fresh task run, even if the request sounds like a follow-up.

Safety rules:

  • Default to write-capable OpenCode work in opencode:opencode-rescue unless 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 result command 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.
Changes

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.

  1. 7d ago First seen · 51 lines · 18 tokens per session scan A 712a80701369

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

vercel/next.js · 95 tokens

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…

vercel/next.js · 103 tokens

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…

microsoft/vscode · 72 tokens

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…

openai/codex · 114 tokens