Back to home

2768651338

dsh-plugin-manager

DeepSeek Harness 的图形化插件管理插件:在 设置 → 插件 里新增「插件管家」标签页,用中文名和说明展示每个插件是做什么的,并提供一键启停开关与内置备注编辑——启停写入全局层补丁并实时热生效,备注保存到本地覆盖文件长期生效。

Stars
2
Language
JavaScript
Created
Aug 14, 2026
Updated
Aug 14, 2026

Introduction

dsh-plugin-manager

Every plugin finally speaks for itself — Chinese names, plain-language descriptions, one-click enable/disable, and in-UI notes editing for DeepSeek Harness.

License: MIT DeepSeek Harness version TypeScript React topic: dsh-plugin


Plugin Manager tab — real screenshot

Settings → Plugins → Plugin Manager · 165 plugins cataloged, one click to toggle, notes edited in place.


Overview · Compatibility · Install / Uninstall · Quick Start · Configuration · Permissions & Data · Features · Troubleshooting · Development

中文 · Español · 日本語 · Deutsch · Русский · Português · 한국어


🆕 2026-08-14 · v0.3.0 — In-UI notes editing is live: click Edit notes on any card to rename a plugin or rewrite its description in place. No more hand-editing catalog.json.

🏷️ v0.4.0 — Package renamed to the owner-controlled scope @2768651338/dsh-plugin-manager (previous @dsh-external/* scope was not authorized).

🔧 v0.2.x — Fixed endpoint 404 under tsx source launch (strict ./typert registration) and the cordis inject access (ctx.get channel).


Overview

Problem. The built-in "Plugin list" in DeepSeek Harness shows only English module names with no descriptions — once you install many plugins, nobody can tell what each row does. Enable/disable previously required hand-editing cordis.patch.yml, which is easy to break.

Who it's for. Every DeepSeek Harness user, especially people who install many plugins and want to know what each one does, toggle them safely, and annotate the ones the catalog doesn't cover.

PainBeforeWith this plugin
Plugin list is meaninglessEnglish module names only, no clue what each row doesChinese name + one-line description + category for every plugin
Toggling is manualHand-edit cordis.patch.yml (easy to break)One-click switch, surgical line-level edits, hot-reloaded in ~1s
Unknown plugins stay mysteriousFallback text onlyAdd your own notes directly in the UI
Nothing is safe from fat fingersAny row can be disabledSystem rows locked, !!js-controlled rows labeled

Compatibility

ItemValue
DSH version0.1.0-rc.5 (official installer, built-in source tree under resources/harness)
Verified on2026-08-14, web profile, Windows
Install mechanismdsh plugin --profile web add (bundle patch + dual-face row)
Depends ontypert-loader / api-gateway / client-modules rows shipped in dsh-base + dsh-web-app

The official launcher boots via tsx from source; this plugin's strict ./typert registration is specifically designed to work under both plain-node and tsx source launch (covered by tests/claims.e2e.mjs). If you run a different DSH version, re-run the test suite before reporting issues.

Install / Uninstall

# Install (recommended, same bundle mechanism as dsh-navbar)
dsh plugin --profile web add github:2768651338/dsh-plugin-manager#main

# Alternative: install from a zip (download from the Release page), unzip to a path without spaces, then:
dsh plugin --profile web add file:/<unzipped-dir>/dsh-plugin-manager

# Alternative: build locally (clone this repository)
pnpm build   # tsc + tsdown → lib/index.js (host half) and lib/client.js (browser half)
dsh plugin --profile web add file:./dsh-plugin-manager

After installing, restart DeepSeek Harness and press Ctrl+F5 once. Open Settings → Plugins → Plugin Manager. The lib/ artifacts are committed, so GitHub installs need no local build.

ActionCommand
Upgradedsh plugin --profile web update (or re-run the add command), then restart DSH
Disable (temporarily)Click 停用/Disable on the plugin's own card in Plugin Manager — the row stays installed
Removedsh plugin --profile web remove @2768651338/dsh-plugin-manager, then remove its rows from cordis.patch.yml if any

Quick Start

Minimal reproducible walkthrough (2 minutes):

# 1. Install
dsh plugin --profile web add github:2768651338/dsh-plugin-manager#main
# 2. Restart DeepSeek Harness, press Ctrl+F5 in the web page
  1. Open Settings → Plugins → Plugin Manager — you see the full catalog with Chinese names and descriptions.
  2. Toggle one plugin: search for trajectory, click 停用 (Disable) on the 轨迹视图 card → the row turns 已停用 within ~1 second (host-side effect; browser-side plugins fully unload after a page refresh).
  3. Annotate one plugin: click 编辑备注 (Edit notes) on the 联网搜索 card, rename it and add a note, click 保存 (Save) → the card updates immediately; 恢复默认 (Restore default) reverts it.

Configuration

ItemDetails
Plugin-level optionsNone — the plugin needs no configuration; install-and-use
Toggle file~/.dsh/cordis.patch.yml (global layer, hot-reloaded by DSH)
Notes override file~/.dsh/plugin-manager/catalog.json (auto-created on first save)
Environment variablesNone of its own; follows DSH's DSH_HOME resolution for the files above
DefaultsUnlisted plugins fall back to built-in catalog → English short name → fallback text
Sensitive itemsNone — no keys, tokens, or credentials are read or stored

Permissions & Data

ScopeWhat it touches
Files (read)cordis.patch.yml, plugin-manager/catalog.json, and the in-process loader plugin list
Files (write)~/.dsh/cordis.patch.yml (toggle rows), ~/.dsh/plugin-manager/catalog.json (notes) — both inside the DSH home only
NetworkNone. The browser half talks only to your local DSH /api RPC endpoint
CredentialsNever read
User dataNever read (no access to sessions, messages, or prompts)

Features

FeatureDescription
📚 Chinese catalog130+ built-in entries (name / description / category), fallback + per-plugin customization
🔘 One-click toggleWrites ~/.dsh/cordis.patch.yml (global layer); DSH's HMR watcher re-applies within ~1 second; enabling writes an explicit disabled: false that overrides lower layers
✏️ In-UI notes"Edit notes" on each card edits the Chinese name/description (~/.dsh/plugin-manager/catalog.json), with one-click restore-to-default
🛡️ Safety guardsBootstrap/transport/settings-shell rows locked as "System"; !!js-expression rows labeled "Expression-controlled"
🔍 Search & filterSearch by name/description/module, filter by category, enabled-count summary

How It Works

HalfFileRole
Hostlib/index.jsRegisters the pluginManager cordis service (Typert remote): list / setEnabled / setOverride / removeOverride. Toggles use surgical patch-file editing — comments and !!js expressions preserved, file re-read before write to merge concurrent edits.
Hostlib/typert.host.jsExports ./typert; the typert-loader registers it as strict invocation definitions. Crucial fix: under tsx source launch the gateway and an external plugin can hold two copies of typert-protocol — decorator markers are invisible across copies (symptom: every call 404s). Strict registration goes through the shared registry, sidestepping module-instance identity.
Browserlib/client.jsMounts the pluginManager remote namespace via the inject-free ctx.get() channel (avoids a self-mount deadlock) and registers the Plugin Manager tab in the settings.plugins.tab slot.

Runtime dependencies: @deepseek-ai/cordis and @deepseek-ai/dsh-typert-protocol resolve through DSH's profiles/node_modules fallback links — no extra pnpm downloads.

Custom Notes

Click Edit notes on any card. Saving with both fields empty removes that plugin's customization. Power users may still edit ~/.dsh/plugin-manager/catalog.json directly:

{
  "@dsh-external/dsh-navbar": { "name": "对话导航条", "desc": "对话区右缘的消息节点导航" }
}

Precedence: override file > built-in catalog > English short name.

Troubleshooting

SymptomFix
The tab doesn't appearRestart DeepSeek Harness, then Ctrl+F5 the page (client bundles load at boot)
"暂时无法读取插件" with an error blockRead the gray error detail under the message: pluginManager.list failed: ... / transport failure ... and match it below
Error mentions 404 or invocation-unavailableYour installed version is older than 0.2.0 (missing ./typert strict registration) — update and restart
cannot get property "remote.pluginManager" without injectVersion older than 0.2.2 — update and refresh
A toggle doesn't seem to workCheck ~/.dsh/cordis.patch.yml keeps row-block structure (a - dash at column 0); rows labeled "表达式控制" are !!js-controlled — edit the config file directly
Where are the logs?DSH host startup log (launcher console) for host errors; browser DevTools (F12) console for client errors
RollbackRemove the plugin's rows from cordis.patch.yml, use 恢复默认 for notes, or uninstall with the remove command above

Project Structure

src/
  index.ts              host half: PluginManagerGateway (list / setEnabled / setOverride / removeOverride)
  patch-file.ts         surgical patch-file editor (pure functions)
  catalog.ts            built-in catalog + system-protection set
  types.ts              shared plain data types
  typert-host.ts        strict endpoint registration artifact (./typert)
  client/
    index.ts            browser half: mount remote namespace + register the tab
    remote.ts           client remote artifact (strict zod codecs)
    PluginManagerTab.tsx tab UI (list / toggles / notes editing)
    locales.ts          zh/en dictionaries
cordis.patch.yml        bundle patch (inserts the plugin-manager row)
lib/                    built artifacts (committed; GitHub installs skip building)
tests/                  smoke / end-to-end tests

Development

pnpm build                      # tsc + tsdown
node tests/patch-file.smoke.mjs # 9 smoke tests for the patch editor
node tests/host-gateway.e2e.mjs # host gateway end-to-end (incl. override-file contents)
node tests/claims.e2e.mjs       # endpoint claims under plain-node and tsx source launch

Absolute paths inside the test scripts point at the local DSH installation and are development-only; they do not affect runtime behavior.

Contributing. Fork → change → pnpm build → run the tests above → open a PR against main. Small fixes (docs, catalog entries, translations) are welcome without prior discussion. Report issues with the DSH version and the exact error detail shown in the tab.

License & Security

License: MIT — see LICENSE. Built on DeepSeek Harness's public plugin mechanism, not affiliated with DeepSeek.

Security: this plugin reads no credentials and sends nothing over the network. To report a security issue privately, use GitHub's Report a vulnerability on the Security tab — do not open a public issue with exploit details.


Star History

Star History Chart

MIT License © 2768651338