Back to directory

dsh-plugin-market

cyber-moshen/dsh-plugin-market

DSH插件市场,自动更新,热重载插件,多种排序方案,快速管理和安装插件

3

stars

1

forks

MIT

License

2026-08-14

Created

2026-08-15

Last push

README

@cyber-moshen/dsh-plugin-market

Plugin Workshop for the DeepSeek Harness web GUI — a curated plugin catalog that lives in this very repo.

中文 · 日本語

What it is

A Settings → Plugin Workshop (插件工坊) page with:

  • a card grid of community plugins — each card shows tags (click a tag to search it), GitHub stars, last-commit freshness with a colored maintenance signal, and the installed version / update state;
  • search across names, authors and tags, plus an always-visible filter bar (installed state, sort by stars/commit, maintenance state);
  • one-click install / update (runs the real dsh plugin CLI in the background);
  • a GitHub icon button on every card jumping straight to the repo;
  • a settings modal with a GitHub Token field (lifts API rate limits) and a startup auto-update toggle;
  • the whole workshop follows the app's own language (Settings → General → Language: 中文 / English);
  • a frame-wide toast after a boot-time auto-update — pure-JS plugins hot-reload in place, plugins with native modules ask for a restart.
  • hot reload — installing/updating/uninstalling a pure-JS plugin applies it to the running process immediately and refreshes the page; no restart needed. Plugins shipping native modules (.node) are detected and prompt for a restart instead.
  • boot-safety net on every install — a pre-install dependency audit plus an automatic post-install boot-composition check with rollback, so a broken plugin can never leave the profile unbootable (see Safety net).

The catalog is this repo's own data/plugins.json — anyone can add a plugin by opening a pull request (see Submitting a PR). The plugin fetches it live at runtime; there is no offline cache or snapshot.

Install

One command from anywhere (once published to npm):

dsh plugin --profile web add @cyber-moshen/dsh-plugin-market

From a local checkout:

dsh plugin --profile web add ./dsh-plugin-market -w

Restart the web server, then open Settings → Plugin Workshop. After that, installing/updating pure-JS plugins needs no restart.

Usage

The workshop page

  1. Open Settings → Plugin Workshop.
  2. Search — matches plugin name, author and tags. Click a #tag on a card to search that tag.
  3. Filter bar (always visible under the search box):
    • Installed — All / Installed / Not installed
    • Sort — Stars ↑ · Stars ↓ · Commit ↑ · Commit ↓
    • Maintenance — All / Active / Stale / Unmaintained / Unknown
  4. Card actions:
    • ⭐ Stars and 🕓 last commit are fetched live from the GitHub API; the maintenance tile is colored: green = pushed within 3 months, amber = within a year, red = older / archived.
    • Not installedInstall button (installs via the npm package).
    • Installed, newer version availableInstalled vX + Update → vY.
    • Installed, current → just Installed vX.
    • Installed plugins also get an Uninstall button next to Update.
    • The GitHub icon (top-right) opens the repo page.
  • GitHub Token (optional) — paste a token to raise the API rate limit from 60 requests/hour to 5000/hour. See How to get a token. The GITHUB_TOKEN / GH_TOKEN environment variables take precedence. Saving an empty box never clears a stored token; use the Clear button to remove it.
  • Auto-update installed plugins on startup — when enabled, the web server checks installed plugins after boot and updates any with newer versions; pure-JS plugins hot-reload in place, native ones show a restart toast.

Safety net

Installing a bad plugin that bricks DSH at the next boot is the deadliest failure mode for a market tool. dsh plugin automatically mounts every dependency that declares dsh.bundle as its own profile layer, so "kitchen-sink" aggregate plugins (e.g. the dsh-web-ui family) routinely duplicate loader entries (duplicate loader entry id: ui-skin-center) and kill the whole process on startup. The workshop defends against this on three levels:

  1. Pre-install dependency audit (bundle fan-out detection) — before installing, the target's dependency tree is fetched and every package that also declares dsh.bundle is listed. If "fan-out" is detected (one plugin would enable many profile layers at once), a clear warning is shown and the install requires an explicit "I understand the risk" confirmation.
  2. Post-install boot-composition check (the authoritative gate) — after pnpm finishes and before any hot-apply, the new bundle stack is composed in a throwaway subprocess with the exact same loader/include machinery the real boot uses (scripts/compose-check.mjs). Duplicate loader ids, invalid config, and missing packages all surface there.
  3. Automatic rollback — when the check fails, the profile's package.json is restored from a pre-op snapshot and the package is uninstalled; the task shows "auto-rolled back" with the reason. The profile is never left in an unbootable state, no matter what was installed.

There is also an offline repair script for profiles that are already broken (e.g. a plugin installed from the CLI directly):

node <dsh-plugin-market checkout>/scripts/repair.mjs --profile web

It repeatedly runs the composition check and removes non-base bundle layers until the profile composes again.

How to get a GitHub Token

  1. Go to https://github.com/settings/tokens (Settings → Developer settings → Personal access tokens).
  2. Click Generate new token (classic).
  3. Give it a name (e.g. dsh-plugin-market), set an expiry.
  4. Tick the repo scope (that is all this plugin needs).
  5. Click Generate token and copy it now (it is shown only once).
  6. Paste it into the workshop Settings modal and press Save. A ✓ Token saved (···xxxx) line appears once a token is stored.

Keep the token private — it grants write access to your repositories.

Submitting a PR to add your plugin

The catalog is a single JSON file: data/plugins.json.

  1. Open data/plugins.json in this repo on GitHub.
  2. Click the pencil (Edit) button.
  3. Copy an existing entry, change it to your plugin, insert it inside "plugins": [...].
  4. Commit changes… → Propose changes → Create pull request.

A validation workflow runs on every PR and fails on malformed JSON or missing fields (run it locally with node scripts/validate.mjs data/plugins.json).

Entry shape (keep it simple — everything else is derived from the URL):

{
  "url": "https://github.com/you/your-plugin",  // your repo URL (required, unique)
  "tags": ["记忆增强", "UI美化"],                 // 0-5 searchable tags (optional)
  "npm": "your-npm-package"                     // required — install/update go through the npm package
}

The card name, author and stats are all derived from url; npm is required — installation and updates go through the npm package (GitHub installs are not used).

See CONTRIBUTING.md for details.

DSH Plugins is an independent community directory of DeepSeek Harness plugins. Not affiliated with or endorsed by DeepSeek. Third-party plugins are not security-audited — review the source before installing.