DeepSeek Harness Plugin

qwerty-k-de/dsh-attach-picker

Stars ★ 0 Downloads (30d) 0 Category UI Enhancements Added 2026-09-03 npm dsh-attach-picker

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.addImages pipeline 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

  1. Open a conversation in DSH Web.
  2. Click the picture button in the composer tool row — the OS file dialog opens.
  3. Pick one or more images. They appear in the draft-image rail.
  4. 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.jsondsh.client (platform: "web", exports["./client"]).
  • Injects into the composer slot conversation.input.left with order: -50.
  • On selection: limits come from the host projection imageLimits (mediaTypes, maxImagesPerMessage, maxImageBytes); on success it calls conversation.createDraftImages(files) then inputActions.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

Content from the project README on GitHub ↗

Links

More in this category

View the whole category →

Community comments

Comments are public GitHub Discussions. Loading them connects to GitHub and Giscus; a GitHub account is required to post.