DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
D

dsh-desktop-drop-path

Desktop Drop Path

Drag a file into the composer to auto-fill its absolute path. Desktop app only (relies on the Electron preload path bridge).

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:duanzongyuan/dsh-desktop-drop-path#042209259139e08817c8840f24a4e4c14fa06bb1
READMECompatibilityVersions

Compatibility and provenance

Desktop Drop Path is published as dsh-desktop-drop-path and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/9/2026

Versions

0.1.0stable
9/9/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/9/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
Desktop Drop Path — DSH Plugin for DeepSeek Harness

Related plugins

More verified plugins in productivity-workflow.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Agent Teams@nanmicoder/dsh-agent-teamsAgentTeams for DeepSeek Harness: multi-agent team collaboration (captain, members, tasks with dependencies, messaging) driven by natural language, with a tree monitor in the web GUI

README

dsh-desktop-drop-path

English | 中文

Drag a file into the DSH composer to auto-fill its absolute path.

Desktop only. This plugin resolves a file's real absolute path through the DSH Desktop Electron preload bridge (window.__DSH_DESKTOP_FILE_PATH__). In the plain web UI (dsh web in a browser) that bridge does not exist, so the plugin installs nothing and stays inert.

What it does

Drop a non-image file (.pdf, .md, .txt, .json, code, …) onto the composer input box. Instead of uploading it, the plugin inserts the file's full absolute path into the input, so you can send it to the agent and it can read the file straight from disk.

  • Single file → one line with the path.
  • Multiple files → one path per line.
  • Image drops are untouched and keep using the built-in image attachment rail.

Install (from GitHub)

pnpm dsh plugin --profile <profile-name> add git+https://github.com/duanzongyuan/dsh-desktop-drop-path.git

Replace <profile-name> with your DSH profile (e.g. desktop, web), and duanzongyuan with your GitHub username.

After installing, restart DSH Desktop.

Why a path instead of an upload?

DeepSeek Harness reads files from your disk (the workspace / any absolute path). Its message-attachment protocol is image-only, so there is no "upload a non-image file" channel. This plugin bridges that gap the natural way: it hands the agent the file's real path so the agent can read it itself.

Notes / caveats

  • Desktop only. Requires the DSH Desktop app. In a plain browser it does nothing (it deliberately does not insert a misleading filename).
  • Coupling. Clearing the built-in drop hint overlay relies on the @deepseek-ai/dsh-client-ui-attachment plugin's window-level dragend reset. If that internal plugin changes, overlay dismissal may need a tweak.
  • Non-image drops are consumed in the capture phase; the built-in image handler does not reject them.

License

MIT