Install
Inside DeepSeek Harness, with dsh-market
dsh plugin --profile web add dshmarket
Or from the command line
dsh plugin --profile web add github:zhousun55-byte/dsh-postman
Installing runs third-party code with your own permissions — it can read your files, use your credentials and reach the network. Review the source first, and pin a commit (github:owner/repo#sha) when you can.
README
Mail files and folders straight into the conversation — no workspace copy, no path
juggling. The entry lives in the composer's + command menu (/upload, with two
options: upload files / upload folder), so the tool row stays uncluttered.
Why
- Images attach as real image blocks — PNG/JPG/WebP/GIF (≤5 MiB) go through DSH's native attachment pipeline (composer thumbnails + message image blocks) and are transcribed on the model side by a vision bridge (e.g. modlens) — not just a path string. HEIC and oversized images fall back to path upload automatically.
- Folder upload —
webkitdirectoryuploads a whole directory tree into~/.dsh/uploads/<timestamp>-<folder>/…; text file contents are written straight into the composer draft, so the model sees them immediately. - Zero dependencies, no build step — pure Node built-ins plus DSH's native pipeline.
Features
- Upload files (multi-select):
- Images (PNG/JPG/WebP/GIF, ≤5 MiB) attach as real image blocks through DSH's native attachment pipeline (composer thumbnails + message image blocks), converted on the wire by a vision bridge (e.g. modlens) exactly like pasted images; HEIC and oversized images fall back to path upload.
- Text files → content is written into the composer as an inline code block;
- Other binaries → path + size are injected; the model reads them with
read.
- Upload folder (Chrome
webkitdirectory): stored under~/.dsh/uploads/<timestamp>-<folder>/…with the directory structure preserved; the composer draft receives a file manifest, text previews (≈24k chars total cap), and binary paths. Images inside the folder (up to 12) attach as real images. - The native paste/drag image channel keeps working alongside.
Host half
POST /dsh-postman/upload?name=<file>[&dir=<root>][&rel=<relative-path>]
- Single-file mode (no
dir): stored at~/.dsh/uploads/<timestamp>-<file>; - Folder mode (shared
dirper batch): stored at~/.dsh/uploads/<dir>/<rel>, directories auto-created, name collisions get-2/-3, never overwritten; - 25 MiB per file;
dirmay not contain path separators,relis sanitized segment by segment and drops..; dirs0700, files0600; cross-origin requests rejected; - Envelope:
{ ok: true, value: { name, path, root, size, kind, preview } }— forkind === 'text',previewcarries the first 20k UTF-8 chars.
Install
Add this repository to the Web profile and declare the plugin row (dsh serves the
browser half at /plugins/dsh-postman/client.js by package name):
In
~/.dsh/profiles/web/package.jsonadd"dsh-postman": "link:/path/to/dsh-postman"(or a versioned dependency once published);In
~/.dsh/profiles/web/cordis.patch.ymladd:- insert: - id: ui-upload name: 'dsh-postman'pnpm --dir ~/.dsh/profiles/web install, restartdsh web(client-only changes need just a page refresh).
Self-check
node client.test.cjs # headless client-logic verification (18 assertions)
License
MIT