Copy the file and paste it into the chat box
DSH plug-in: Copy the file and paste it into the chat box, and automatically insert the real absolute path (similar to codex cli).
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.