dsh plugins中文
← Back to popular plugin directory

Copy the file and paste it into the chat box

boundless2619/dsh-paste-path · skills

DSH plug-in: Copy the file and paste it into the chat box, and automatically insert the real absolute path (similar to codex cli).

★ 1GitHub stars
0Forks
2026-08-16Last updated
JavaScriptLanguage
MITLicense

Project overview

A DSH (DeepSeek Harness) plugin: copy a file in Windows Explorer, paste it into the DSH chat input, and its real absolute path is inserted automatically — the Codex-style file reference flow, without leaving the browser. ⚠️ This is NOT an npm package. You cannot npm install it, and it cannot be mounted in cordis.yml. The two files under plugin/ are function bodies for DSH's cordisdefine tool (a dynamic Cordis plugin). To install, follow Install & use below. Why this exists

Browsers never expose the real absolute path of a pasted file — clipboardData.files[].name only gives the basename, by security design. Codex can show full paths because it runs in a terminal, not a browser.

This is a dynamic Cordis plugin — no npm install needed; it lives for the current session (reload after a DSH restart if you need it again). 🪄 Zero-manual-install option: open a DSH chat, paste the contents of plugin/host-half.js and plugin/client-half.js, and say: "Install this dynamic plugin: code.host from the first file, code.client from the second, then run it." The agent defines and runs it for you.

Install command

dsh plugin --profile web add github:boundless2619/dsh-paste-path
View GitHub repository ↗Back to popular plugin directory