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.

Download Button — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
D

dsh-download-button

Download Button

Download button for delivered-file cards in DeepSeek Harness / 给交付物文件卡片加下载按钮

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

npx -y @deepseek-ai/dsh plugin --profile web add github:maxesisnclaw/dsh-download-button#23cee12774773e674a2906befca3acc7a2da89c7
READMECompatibilityVersions

Compatibility and provenance

Download Button is published as dsh-download-button and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.2.0stable
9/18/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/18/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

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient 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.

README

dsh-download-button

English | 中文

A Download button for delivered-file cards in DeepSeek Harness (dsh) web.

The problem

When an agent produces a file, dsh renders a card with two actions:

ActionWhat it doesWhy it is not enough
OpenAsks the host machine to open the file with its default applicationA headless server has no desktop, so this always fails
Open in sidebarText previewNon-text files (docx / xlsx / pdf / zip …) answer "non-text file, cannot preview"

So a docx the agent just wrote has no way out of the browser.

What this plugin does

It appends a Download link to every delivered-file card. Clicking it saves the file straight from the server to your disk.

[ Download ] [ Open ▾ ]

On a headless host it also hides the "this host has no available desktop, cannot open file or folder" notice. That notice exists because dsh ships a desktop-integration surface (open the file with a host application / reveal it in Finder·Explorer) for installations running on someone's own computer. A server has no such desktop, so the notice is only noise — the download link is the way out. Detection uses the same rule dsh itself uses on Linux (DISPLAY or WAYLAND_DISPLAY present); on macOS/Windows desktop mode nothing is hidden and the notice never appears.

Design (why it survives upgrades)

  • No vendor patching. Nothing under node_modules is modified. The plugin only taps the server-rendered index page and injects a small script.
  • No server route of its own. It reuses the built-in authenticated raw-bytes route GET /api/file?path=<absolute path> (correct Content-Type, cookie-authenticated), with the HTML download attribute supplying the filename.
  • No bundled-class-name assumptions. The button copies its className from the sibling action button already present in that card, so it follows theme/style changes.
  • The absolute path is read from the card's own title attribute (which dsh already sets to the resolved workspace path).

Install

dsh plugin --profile web add github:maxesisnclaw/dsh-download-button

Manual install:

  1. Copy this directory to <dsh-install>/plugins/dsh-download-button/.

  2. Add to $DSH_HOME/cordis.patch.yml:

    - insert:
        - id: download-button
          name: /absolute/path/to/dsh-download-button/index.js
    
  3. Restart the service: systemctl restart dsh (or restart your dsh web process).

When the package is listed in a profile's dsh.profile.bundles instead, the bundled cordis.patch.yml applies the same insert automatically.

Verify

  • Open the web UI, have the agent produce any non-text file (docx, xlsx, pdf), and look for the Download button on the file card; clicking it should save the file.

  • Server-side check that the underlying route works:

    curl -b "<your session cookie>" \
      "http://127.0.0.1:3080/api/file?path=/absolute/path/to/file.docx" -o out.docx
    # out.docx must be byte-identical to the source file
    
  • Unit test: npm test (checks the index-page injection is applied once, and is idempotent).

Limitations

  • The card must expose the file's absolute path in a title attribute (that is how the current dsh renders delivered files). If a future version changes the card markup, update the selector in the injected script.
  • Only delivered-file cards get the button; other surfaces (e.g. a sidebar preview of a text file) are untouched.

License

MIT