跳到主要内容
    ↑↓ 选择↵ 打开esc 关闭
    中文English
    jfrz38

    Copy Last

    v0.1.1其他
    @jfrz38/opencode-copy-last

    Copy recent agent, user, or user-agent messages from the current OpenCode session.

    GitHub 星标

    0

    月装机量

    77

    近 7 天 7

    综合评分SCORE

    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"]
    }

    opencode 启动时会通过内嵌运行时自动加载 npm 依赖并缓存至本地目录,无需手动在全局环境执行安装。

    npm Build license NPM Downloads

    Copy the latest agent, user, or user-agent exchange from your current OpenCode session directly to the clipboard.

    Demo

    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 for user.
    • us: alias for pair.

    you is intentionally unsupported because it is ambiguous.

    Count

    • count: copies the latest matching messages or pairs, from 1 to 20.
    • 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.