AI Agent Hub
Back to plugins
🧰

dsh-clipboard

Web Tools Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install ZhijiangTang/dsh-clipboard

Paste the following prompt into your AI chat to install this plugin:

Install the clipboard tool plugin in DeepSeek Harness by running dsh plugin install ZhijiangTang/dsh-clipboard (source: https://github.com/ZhijiangTang/dsh-clipboard).

About this plugin

An agent has just generated a command, a code snippet, or a URL — yet the user still has to manually highlight, copy, switch windows, and paste. dsh-clipboard removes that friction entirely: it lets the agent write any text straight into the system clipboard, so the user simply opens a terminal or editor and hits Ctrl+V.

Under the hood it registers a single clipboard_write tool that accepts any string and delegates to native OS commands (pbcopy on macOS, clip on Windows, xclip or xsel on Linux). Zero third-party dependencies, pure ESM, no build step. Failures never throw; instead a structured JSON result is returned so upstream logic can branch cleanly. A self-probe runs on plugin mount to verify the clipboard is reachable, with logs prefixed [dsh-clipboard].

It shines as the hand-off step at the end of a multi-step workflow — copying a temporary token, a file path, or a SQL statement — or as a standalone utility that lets an agent drop any generated artifact into the clipboard with one call, ready for immediate paste.

Use Cases

  • Agent writes generated commands or code snippets to the clipboard for instant paste
  • Serves as the hand-off step at the end of a multi-step workflow, copying temp tokens or file paths
  • Batch-copy URLs, keys, and text fragments without manual selection

Best For

  • Developers who want agent output to be paste-ready instantly
  • Orchestrators building multi-step automated workflows
  • Power users who want to eliminate copy-paste friction