DeepSeek Harness plugin

dsh-plugin-installer

DSH 插件商店 + 安装排障技能一体包:Web GUI「插件商店」页签浏览插件目录(名称/介绍/原链接),一键触发安装;内置 dsh-plugin-installer 技能作为安装后端引擎。

Jump to install

Source facts

Repository
zhang66633/dsh-plugin-installer
Latest update
Aug 16, 2026
Category
Plugin Markets & Managers
GitHub stars
3
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/zhang66633/dsh-plugin-installer
Plugin: dsh-plugin-installer
Author: zhang66633

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.mdSource · read only
README language

dsh-plugin-installer

> A plugin store + install assistant for DeepSeek Harness (dsh): browse the plugin catalog in the Web GUI, confirm an install with one click, and let the agent finish it for you.

!License: MIT !npm !CI !dsh !Platform !Docs

English · 简体中文

---

Overview

dsh-plugin-installer is a dual-face plugin for dsh. One package provides two things:

1. Plugin store: a 「插件商店」 tab in the Web GUI session view ring — browse and search the plugin catalog (name / description / original link / stars); clicking 安装 asks for confirmation first, then submits the install request. 2. Install assistant skill: a bundled skill the agent follows to complete an install — verify the source, pick the install path, register into the profile, verify the result. Every step is explainable and reversible.

Who it is for: anyone who wants to discover and install dsh plugins from the UI; developers who want the agent to handle installation and troubleshooting reliably.

<p align="center"> <img src="assets/store-screenshot.png" alt="Plugin store UI" width="760" /> </p>

Compatibility

ItemSupport
dsh ecosystem0.1.0-rc.6 (last verified 2026-08)
OSWindows / macOS / Linux
Node≥ 22.19
SurfaceWeb GUI (dsh --profile web); non-GUI profiles should use Route B (skill only)

Install / Uninstall

Install

Route A — full plugin (store tab + skill), once published to npm:

dsh plugin --profile web add dsh-plugin-installer

Local development via link:

// ~/.dsh/profiles/web/package.json
{
  "dependencies": { "dsh-plugin-installer": "link:<repo path>" },
  "dsh": { "profile": { "bundles": ["dsh-plugin-installer"] } }
}
cd ~/.dsh/profiles/web && pnpm install

Route B — skill only (filesystem discovery, no store UI):

git clone --depth 1 https://github.com/zhang66633/dsh-plugin-installer ~/.dsh/skills/dsh-plugin-installer

Upgrade

  • Route A: re-run dsh plugin add (pin the version); for local links, git pull and rebuild.
  • Route B: git pull.

Disable

Remove dsh-plugin-installer from dsh.profile.bundles (the dependency may stay).

Uninstall

Remove the dependency and the bundle entry from the profile package.json, then pnpm install; for Route B, delete ~/.dsh/skills/dsh-plugin-installer.

Quick start

1. Install, then restart dsh web. 2. Open any session — the plugin store tab appears in the view ring (next to chat/trajectory). 3. Search for a plugin (e.g. vision), click 安装, confirm the prompt, and the current session's agent takes over the install. 4. Restart dsh web after the install completes.

Minimal reproducible example: search modlens → click install → confirm → the agent reports success → restart → send an image to test OCR.

Refresh (two layers)

The refresh button in the store is a light refresh: it re-fetches the catalog, and the host recomputes each plugin's installed / update-available state live — after an install, one click shows 已安装 without restarting dsh. The button has a hover hint, and the store header shows "updated at <time>" (the catalog snapshot's generation time).

Updating the catalog data itself (new plugins, version changes) requires regenerating the snapshot:

  • Maintainer: run the radar repo's scripts/refresh-catalog.ps1 (discover → normalize → l1-scan → export → repack → profile reinstall), or leave it to the daily scheduled task (02:00);
  • Regular user: upgrade the npm package (dsh plugin add dsh-plugin-installer, pin the version) when the maintainer publishes — the catalog ships with the package.

Configuration

  • Store data: data/store.json is a catalog snapshot (name / description / original link / category / stars) shipped with the package; no network fetch at runtime. Refresh = rebuild the snapshot and reinstall.
  • Install request: clicking 安装 only POSTs a JSON request (plugin name + session id) to the local /plugin-store/install route; the actual install is performed by the current session's agent.
  • No other config, no environment variables, no secrets.

Permissions & data

  • Host process: read-only access to the bundled data/store.json; the catalog and install routes bind to the local web server only.
  • After an install is triggered, the agent runs the install commands (it may read/write your dsh profile and plugin directories, and reach npm / GitHub) — every step is visible and can be stopped.
  • No telemetry, no analytics, no credential access.

Troubleshooting

SymptomAction
Store tab missingConfirm dsh.profile.bundles includes dsh-plugin-installer; check dsh --profile web --dump-config; restart
安装 does nothingConfirm the session has a live agent; check the /plugin-store/install response in the browser console
RollbackRemove the bundle entry and run pnpm install — the rest of the profile is untouched

Development

npm install          # build tooling (esbuild)
npm run build        # build lib/client.js (client wire bundle)
npm run check        # script syntax/standards checks
npm test             # unit tests
npm run smoke        # smoke: load lib/index.js and print name/inject

Store snapshot refresh: update data/store.json, rebuild, and reinstall. Pull requests welcome; keep README and tests in sync with behavior changes.

License & security

[MIT](./LICENSE) © 2026 zhang66633

Report security issues privately via a GitHub security advisory, not a public issue.