@jfrz38/opencode-copy-lastCopy recent agent, user, or user-agent messages from the current OpenCode session.
0
77
近 7 天 7
31.6
生态多维模型
1 天前
2026-08-18
快速安装与配置
opencode.json写入当前项目的 opencode.json,只对这个仓库生效。
opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@jfrz38/opencode-copy-last@0.1.1"]
}写入 ~/.config/opencode/opencode.json,对所有项目生效。
~/.config/opencode/opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@jfrz38/opencode-copy-last@0.1.1"]
}若你要在本地改造这个插件,先装到项目里再从本地路径引用。
shell
pnpm add -D @jfrz38/opencode-copy-lastopencode 启动时会通过内嵌运行时自动加载 npm 依赖并缓存至本地目录,无需手动在全局环境执行安装。
Copy the latest agent, user, or user-agent exchange from your current OpenCode session directly to the clipboard.

Why?
@jfrz38/opencode-copy-last is a small OpenCode plugin for quickly reusing recent conversation context without selecting text manually.
It helps when you want to:
- Paste the last agent answer into an issue, PR, note, or chat.
- Copy your latest prompt exactly as you wrote it.
- Export recent user-agent exchanges as clean Markdown.
- Keep useful context before restarting OpenCode, switching branches, or moving to another tool.
Install
Install via CLI:
opencode plugin @jfrz38/opencode-copy-last@latest --global
Or add the plugin to your OpenCode configuration:
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@jfrz38/opencode-copy-last"]
}
Restart OpenCode after changing plugin configuration.
Usage
/copy-last [agent|user|pair] [count|all]
By default, it copies the latest agent message:
/copy-last
Examples
Copy the latest agent response:
/copy-last
Copy the latest two agent responses:
/copy-last agent 2
Copy your latest prompt:
/copy-last user
Copy the latest three user-agent exchanges:
/copy-last pair 3
Copy all complete user-agent exchanges:
/copy-last pair all
Use shorter aliases when you prefer:
/copy-last me
/copy-last us 2
Targets
agent: copies the latest assistant/agent messages.user: copies the latest user messages.pair: copies complete user-agent exchanges.me: alias foruser.us: alias forpair.
you is intentionally unsupported because it is ambiguous.
Count
count: copies the latest matching messages or pairs, from1to20.all: copies every matching message or complete pair for the selected target.
Output Format
Single messages are copied as trimmed Markdown content.
Pairs are copied like this:
## User
Your prompt here
## Agent
The agent response here
Multiple copied items are separated with a Markdown horizontal rule:
---
How It Works
The plugin registers the /copy-last command with OpenCode and intercepts it before it reaches the LLM. It reads the current session, selects the requested messages, formats them as Markdown, copies the result to the clipboard, and shows a toast.
Because the command is handled locally by the plugin, running /copy-last does not send a new prompt to the model.