DeepSeek Harness 插件

dsh-paste-path

macOS Finder 剪贴板粘贴:在 Finder 里 Cmd+C 复制文件或文件夹,回到 DSH 按 Ctrl+V 把绝对路径插入输入框;普通文本粘贴的 Cmd+V 不受影响。

跳到安装方式

来源信息

GitHub 仓库
jhuanxx44/dsh-paste-path
最近更新
2026年8月21日
分类
界面增强
GitHub stars
0

安装

默认先复制一段 Prompt,让 Agent 读页面和仓库;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读页面和仓库。

请先不要安装。阅读这个 DeepSeek Harness 插件,说明它解决什么问题、会访问哪些文件、网络或密钥,以及如何安装和卸载。

插件页面:https://deepseekplugins.org/zh/plugins/jhuanxx44/dsh-paste-path
GitHub:https://github.com/jhuanxx44/dsh-paste-path
插件名:dsh-paste-path
作者:jhuanxx44
安装命令:dsh plugin --profile web add github:jhuanxx44/dsh-paste-path

确认前不要执行安装命令。

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-paste-path

English · [简体中文](./README.zh-CN.md) · Website: English / 中文

A macOS plugin for DeepSeek Harness Web. Copy files or folders in Finder with Cmd+C, return to DSH, then press Ctrl+V to insert their absolute paths into the composer.

Normal text paste stays on Cmd+V.

The problem

Copying a file in Finder does not put a plain absolute path on the clipboard. Finder writes a native file-list representation, while a browser editor is deliberately isolated from local filesystem paths. That leaves a small but recurring gap when you want to give a local file path to an agent.

dsh-paste-path bridges that gap inside DSH without uploading the file or taking over normal paste.

Use it

1. Select one or more files or folders in Finder and press Cmd+C. 2. Return to DSH Web. 3. When the composer shows the Ctrl+V Paste path hint, press Ctrl+V. 4. The absolute paths are inserted into the current draft, one per line.

The hint stays hidden when the clipboard does not contain file paths. Duplicate paths already present in the draft are skipped.

Install

From npm:

dsh plugin --profile web add dsh-paste-path

From GitHub:

dsh plugin --profile web add github:jhuanxx44/dsh-paste-path

For local development:

dsh plugin --profile web add /absolute/path/to/dsh-paste-path

Restart dsh web and refresh the page after installation.

How it works

The host plugin reads macOS Pasteboard file-list data (NSFilenamesPboardType) through osascript. A small DSH client extension checks whether a path is ready and inserts it into the active composer only when you press Ctrl+V.

The browser Clipboard API is not used, so the plugin does not trigger a normal website clipboard permission prompt.

Security boundary

  • The plugin only activates on macOS.
  • Clipboard endpoints accept loopback connections only.
  • Mutating paste requests must be same-origin.
  • Clipboard responses are never cached by HTTP.
  • Files are not opened or uploaded; only their absolute paths are inserted.
  • Ordinary Cmd+V behavior is left untouched.

macOS may still deny osascript access depending on your local automation permissions. If that happens, grant the relevant permission and try again.

Remote DSH deployments

The clipboard belongs to the machine running dsh web, not necessarily the browser you are using.

  • LAN IP or public hostname: the host rejects non-loopback clipboard requests with 403, so the plugin cannot provide your Mac's local paths.
  • SSH port forwarding or a jump host: the connection still appears as loopback to DSH. The plugin cannot detect the tunnel and would read the remote server's clipboard, not your Mac's clipboard.

If you need to send local files to a remote DSH instance, use an upload-oriented plugin instead. This plugin intentionally solves local path handoff only.

Develop

Requirements:

  • macOS
  • Node.js 22 or newer
  • DeepSeek Harness Web

Run the checks:

npm test

The earlier in-session plugin named fpath-1 was the prototype. This repository is the installable, restart-persistent package.

License

[MIT](./LICENSE)