Toolbar picture button in the DSH Web composer: click to pick multiple images through the native file dialog — they join the same draft-image rail as drag-and-drop and paste, with the host image-format, per-message-count and per-image-size limits enforced inline.
Install
# from npm (prebuilt)
dsh plugin --profile web add dsh-attach-picker
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:qwerty-k-de/dsh-attach-picker
Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time — pnpm blocks those until you allow them, so an install can stop with ERR_PNPM_GIT_DEP_PREPARE_NOT_ALLOWED or ERR_PNPM_IGNORED_BUILDS; dsh prints the exact key to add under allowBuilds in your profile’s pnpm-workspace.yaml, and the install works on the next run. Allowing a build is a trust decision: only install sources you trust, and pin a commit (github:owner/repo#sha).
README
Adds a picture button to the DeepSeek Harness Web composer toolbar. Click it to open the system file dialog and pick one or more images — no drag-and-drop or paste needed. The chosen images land in the same draft-image rail that drag-and-drop and paste fill, and send with the message like any other attachment.
中文说明见 README.zh.md
Features
- One-click picture icon in the composer tool row (slot
conversation.input.left) - Native OS file picker, multi-select, filtered to the host's supported image types
- Honours the host's
imageLimits: supported formats, max images per message, max bytes per image — with inline error toasts (e.g.单张图片不能超过 X MB) - Uses the same
conversation.createDraftImages/inputActions.addImagespipeline as drag-and-drop, so no special handling anywhere else - Browser-side only; zero dependencies, tiny footprint
Install
From npm (recommended, prebuilt):
dsh plugin --profile web add dsh-attach-picker
From GitHub:
dsh plugin --profile web add github:qwerty-k-de/dsh-attach-picker
Restart dsh web (or just refresh the page — hot reload usually applies it).
Usage
- Open a conversation in DSH Web.
- Click the picture button in the composer tool row — the OS file dialog opens.
- Pick one or more images. They appear in the draft-image rail.
- Send the message; the images are attached like any others.
The button is disabled while a request is in flight.
How it works
- Client plugin registered via
package.json→dsh.client(platform: "web",exports["./client"]). - Injects into the composer slot
conversation.input.leftwithorder: -50. - On selection: limits come from the host projection
imageLimits(mediaTypes,maxImagesPerMessage,maxImageBytes); on success it callsconversation.createDraftImages(files)theninputActions.addImages(...). - The Node side (
lib/index.js) is intentionally empty — all logic is browser-side.
Screenshots
Storefronts (e.g. dsh-market) show App-Store style screenshots. Declare them in this repo:
// screenshots.json
["assets/screenshot-1.png", "assets/screenshot-2.png"]
(1–8 images; paths relative to the file, inside this repo. Without it, storefronts fall back to images found in this README.)
Requirements
- DSH Web (
dsh web) with the standard conversation / slots client services — current 0.1.0-rc+ builds. - No runtime dependencies.
License
MIT
Links
More in this category
zhu1090093659/dsh-web#packages/dsh-task-board★ 6815
Task board for the dsh web GUI: a sidebar multi-column kanban whose cards run in real DSH agent sessions and can also be scheduled with cron expressions, executed host-side even with the browser closed.
zhu1090093659/dsh-web#packages/dsh-web-all★ 6815
Plugin and skin collection for the DSH Web UI: task board, Git graph, right-side panel, remote mobile UI, pet, live token stats, and a skin center.
omdsh-dev/DSH-better-sidebar★ 3318
Full sidebar workbench with file rendering and editing, terminal, Git, and subagents; third-party plugins can register new tabs.
ccch1mneyyy/dsh-TUI★ 2823
Claude Code-style full-screen terminal UI: pixel-whale header, live status line, and streaming thought expansion.
MeteorNOX/DeepSeek-Balance-Whale-Widget★ 1695
A fixed-corner whale widget showing DeepSeek balance, today usage, per-turn cost and random talk lines, with sound effects and a menu.
Devin-AXIS/deepseek-design#deepseek-idesign★ 720
Visual design studio for websites, app prototypes, posters, cards, reports, and magazines, with templates, direct element editing, selection-aware AI draft handoff, and export.
Community comments
Comments are public GitHub Discussions. Loading them connects to GitHub and Giscus; a GitHub account is required to post.