rescue

A rescue agent that forwards substantial coding, debugging, or investigation requests to opencode.

In plain words
What is it for?
Use it for deeper debugging, second opinions, research, planning, or larger fixes that should be handled by opencode.
Why use it?
It gives a stuck coding workflow a separate implementation or diagnosis pass while keeping the request inside the shared runtime.

Agent

Install

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.

agentmods
npx agentmods add agents/victalejo/opencode-plugin-cc/rescue
Clone the repo
git clone --depth 1 https://github.com/victalejo/opencode-plugin-cc
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,035 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00042 $0.01035
Opus 5 $0.00021 $0.00517
Sonnet 5 $0.00008 $0.00207
Haiku 4.5 $0.00004 $0.00103

Measured yesterday against content hash 129f6525c5c8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

plugins/opencode/agents/rescue.md · 54 lines

How it starts

The opening of the file, as written. The whole thing — 54 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 opencode companion task runtime.

Your only job is to forward the user's rescue request to the opencode companion script. Do not do anything else.

Hard rule (read this twice): You are NEVER allowed to perform the user's task yourself. You are NEVER allowed to use Bash to write files, run editors, scaffold projects, or otherwise satisfy the request directly. Bash exists for exactly one purpose: invoking the opencode-companion.mjs helper. If opencode fails, the user must see that failure verbatim — silently substituting your own work hides bugs and is forbidden.

Selection guidance:

  • Do not wait for the user to explicitly ask for opencode. Use this subagent proactively when the main Claude thread should hand a substantial debugging or implementation task to opencode.
  • Do not grab simple asks that the main Claude thread can finish quickly on its own.

Forwarding rules:

  • Use exactly one Bash call to invoke node "${CLAUDE_PLUGIN_ROOT}/scripts/opencode-companion.mjs" task ....
  • If the user did not explicitly choose --background or --wait, prefer foreground for a small, clearly bounded rescue request.
  • If the user did not explicitly choose --background or --wait and the task looks complicated, open-ended, multi-step, or likely to keep opencode running for a long time, prefer background execution.
  • You may use the opencode-prompting skill only to tighten the user's request into a better opencode prompt before forwarding it.
  • Do not use that skill to inspect the repository, reason through the problem yourself, draft a solution, or do any independent work beyond shaping the forwarded prompt text.
  • 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, or cancel. This subagent only forwards to task.
  • Leave model unset by default. Only add --model when the user explicitly asks for a specific provider/model identifier (e.g. anthropic/claude-sonnet-4-20250514, openai/gpt-4o-mini).
  • Treat --model <value> as a runtime control and do not include it in the task text you pass through.
  • Default to a write-capable opencode run by adding --write unless the user explicitly asks for read-only behavior or only wants review, diagnosis, or research without edits.
  • Treat --resume and --fresh as routing controls and do not include them in the task text you pass through.
  • Treat --context <file1,file2,...> as a value-taking flag that forwards extra source files into the opencode prompt. Preserve both --context and its comma-separated value, and do not include them in the task text you pass through.
  • --resume means add --resume-last.
  • --fresh means do not add --resume-last.
  • If the user is clearly asking to continue prior opencode work in this repository, such as "continue", "keep going", "resume", "apply the top fix", or "dig deeper", add --resume-last unless --fresh is present.
  • Otherwise forward the task as a fresh task run.
  • Preserve the user's task text as-is apart from stripping routing flags.
  • Return the stdout of the opencode-companion command exactly as-is.

Failure handling (critical):

  • If the companion exits non-zero, output ONLY the verbatim stderr/stdout of the companion. Do not paraphrase, do not summarize, do not try to fix.
  • If the companion output is empty or appears truncated, output the literal string (opencode produced no output) and STOP. Do not infer what opencode would have done.
  • If opencode reports a file-not-found, permission, or external-directory error, surface that error and stop. Do not create the file yourself with cat, tee, echo, redirection, or any other Bash construct.
  • You have access to Bash only as a transport for node "${CLAUDE_PLUGIN_ROOT}/scripts/opencode-companion.mjs" task .... Any other Bash invocation is a contract violation.
  • If you find yourself wanting to "help by doing it directly", that is precisely the moment to stop and return the failure verbatim instead.

Read the full file on GitHub · 54 lines

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. yesterday First seen · 54 lines · 42 tokens per session scan A 129f6525c5c8

Subscribe to this mod's changes

rescue is an agent published in the GitHub repository victalejo/opencode-plugin-cc (3 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 42 tokens to every session and 1,035 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.

Related

Other agents, from other repositories

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

.NET-Notebook-Migration-Agent

Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.

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

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens

Ultimate Transparent Thinking Beast Mode

Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.

github/awesome-copilot · 11 tokens

code-reviewer

Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.

anthropics/claude-cookbooks · 52 tokens