dsh-file-uploads
Manifest valid★ 3Upload arbitrary local files from the DeepSeek Harness Web composer and manage them in Settings.
dsh-file-uploads
English | 简体中文
Upload arbitrary local files from the DeepSeek Harness Web composer, attach their container paths to prompts, and manage stored uploads from Settings.
Features
- Adds a Files button beside the existing composer controls.
- Accepts multiple arbitrary local files, not only images.
- Shows pending files as image-like cards above the composer.
- Keeps the text editor clean: no visible path or generated description is inserted into the draft.
- Serializes each hidden file reference into a model-readable absolute path only when the message is submitted.
- Clears pending cards after submission and restores them when submission fails.
- Stores every upload in one fixed directory,
$DSH_HOME/uploadsby default. - Lists uploaded files in Settings → Uploaded files, with download and delete actions.
- Prevents overwrites by publishing duplicates as
name (1).ext,name (2).ext, and so on. - Enforces per-file and total-directory quotas.
Compatibility
- DeepSeek Harness
0.1.0-rc.6 - Web profile
- Node.js 22 or newer
Harness currently transports native attachments as raster images only. This plugin intentionally uses the arbitrary-file path supported by the agent environment: it stores the file inside the Harness host/container and adds that path to the submitted text through the built-in input-reference serializer.
Install
Install the tagged GitHub release into the Web profile:
dsh plugin --profile web add "github:l541402398/dsh-file-uploads#v1.0.0"
Restart the running Web profile after installation, then refresh the browser page.
To install the latest development branch instead:
dsh plugin --profile web add "github:l541402398/dsh-file-uploads#main"
To remove it:
dsh plugin --profile web remove dsh-file-uploads
Use
-
Open a conversation in the Harness Web GUI.
-
Select Files in the composer toolbar.
-
Choose one or more local files.
-
Review or remove the pending cards above the composer.
-
Add any normal prompt text you want, or leave the editor empty.
-
Submit the message. The model receives a line such as:
上传文件:`/path/to/.dsh/uploads/report.pdf`
The generated line is never shown in the editor before submission. The stored path refers to the filesystem visible to the Harness host; in a Docker deployment, this is the path inside the container.
Settings
The plugin adds an Uploaded files section to Settings. It displays:
- the fixed storage directory;
- per-file and total-directory limits;
- current storage usage;
- file name, size, modification time, and absolute path;
- download and delete actions.
Files persist until they are deleted manually.
Configuration
The plugin works without configuration. These environment variables override its defaults:
| Variable | Default | Purpose |
|---|---:|---|
| DSH_UPLOAD_DIR | $DSH_HOME/uploads | Absolute upload directory. |
| DSH_UPLOAD_MAX_BYTES | 104857600 | Maximum bytes per file (100 MiB). |
| DSH_UPLOAD_TOTAL_MAX_BYTES | 1073741824 | Maximum total bytes in the directory (1 GiB). |
Example Docker Compose fragment:
services:
dsh:
environment:
DSH_UPLOAD_DIR: /data/dsh/uploads
DSH_UPLOAD_MAX_BYTES: 104857600
DSH_UPLOAD_TOTAL_MAX_BYTES: 1073741824
volumes:
- ./dsh-data:/data/dsh
Security model
- List, upload, download, and delete routes use the same loopback/trusted-host and Origin checks as the built-in Harness Web API.
- Cross-site browser requests are rejected.
- File names are normalized and stripped of path components and control characters.
- Downloads and deletions accept only regular files in the configured directory and do not follow symbolic links.
- Uploads are written to private temporary files, synced, and atomically published without overwriting existing files.
- Interrupted
.upload-*temporary files are removed when the plugin starts. - Unexpected server errors are logged without returning internal paths to the browser.
This trust fence is not a user-account authentication system. If the Harness Web GUI is exposed to other users or the public Internet, protect the whole deployment with an authenticated reverse proxy and configure Harness trusted hosts correctly.
Development
Run the checks:
npm test
npm run check
The package is a persistent dual-face Cordis bundle:
index.js— Host HTTP routes, storage, quotas, and trust checks.client.js— composer button, pending-file rail, hidden reference codec, and Settings UI.cordis.patch.yml— installabledsh.bundlecomposition row.test/upload-manager.test.js— Host storage and security regression tests.
See CONTRIBUTING.md for local-link development instructions.
License
Compatibility
Versions
| Latest version | Published | Size |
|---|---|---|
| 1.0.0 | — | — |
Similar plugins
by Mooling0602
A file-upload plugin for the DeepSeek Harness web UI.
★ 11
MIT
JavaScript
Aug 20, 2026
dsh plugin --profile web add dsh-web-file-uploaderby a903067276-rgb
One upload button plus drag-and-drop files into the conversation as local paths: save to project uploads/, path text into the input box, works with any vision tool
★ 8
MIT
JavaScript
Aug 23, 2026
dsh plugin --profile web add dsh-file-uploadUpload any file to DSH, isolated per workspace and session — a composer file library with server-side thumbnails and a context menu to open, copy, re-download or delete.
★ 0
dsh plugin --profile web add dsh-upload-fileby taxueseek
DeepSeek Harness 插件:原生上传管线上的文件夹按钮 + read_document 文档解析(PDF/DOCX/XLSX)。The folder button on the native upload pipeline, plus the read_document parser.
★ 36
MIT
TypeScript
Sep 5, 2026
dsh plugin --profile web add dsh-filesby Zenjibad
dsh bundle: attach any file type in the DeepSeek Harness Web UI — text-likes inline, binaries as workspace path references, rasters via the built-in pipeline
★ 3
MIT
JavaScript
Aug 14, 2026
dsh plugin --profile web add dsh-any-attachmentby roojay
DeepSeek Harness hybrid attachment plugin: native images plus bounded-memory workspace uploads
★ 0
JavaScript
Sep 7, 2026
dsh plugin --profile web add dsh-stream-upload