DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Plugin Manager — DSH Plugin for DeepSeek Harness
← Plugins
P

@xianminglf/plugin-manager

Plugin Manager

Manage installed third-party plugins

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:XianmingLF/xmlf-plugin-manager#327ca8a6c8f013d585068f9dff7427292d2991a8
READMECompatibilityVersions

Compatibility and provenance

Plugin Manager is published as @xianminglf/plugin-manager and currently resolves to version 0.3.2. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/16/2026

Versions

0.3.2stable
9/16/2026
0.3.1stable
8/28/2026
0.3.0stable
8/28/2026

Related plugins

Loading related plugins…

Latest
0.3.2
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/16/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

English: README_en.md

安装

cd <harness目录>

# 第一种方式 npm 安装
pnpm dsh plugin --profile web add @xianminglf/plugin-manager

# 第二种方式 从源码安装
pnpm dsh plugin --profile web add file:<本目录路径>

卸载

cd <harness目录>
pnpm dsh plugin --profile web remove @xianminglf/plugin-manager

说明

  • 运行后在设置中会出现“插件管理”,可查看除官方以外当前已安装的自定义插件(含名称、版本、说明),并支持启用/停用与删除。
  • 只支持以官方标准安装的插件。
  • 插件支持真正的热更新:启用/停用通过 profile 用户层(cordis.patch.yml)的 disabled 行即时生效(HMR 热重组),插件始终保留在 profile 中。

自删除恢复(重要)

如果不小心把这个插件自己删除了(删除后 profile 里仍可能残留它的包引用),下次 dsh web 会报错,例如:

Failed to load plugins
failed to import loader entry ... (@xianminglf/plugin-manager): client-modules: bundle script /plugins/@xianminglf/plugin-manager/client.js?... failed to load

此时运行一键恢复脚本,清理 profile 里残留的该插件引用(依赖/bundles/node_modules),即可正常启动(Windows 双击,Unix 执行):

平台脚本
Windows双击 win10或者win11不小心把这个插件删了双击这个.cmd
Unixbash unix不小心把这个插件删了双击这个.sh
REM 先停掉 dsh web,然后在插件目录执行(一次即可)
win10或者win11不小心把这个插件删了双击这个.cmd

脚本(fix-self-delete.mjs)默认用 ~/.dsh 和 web profile,会:从 ~/.dsh/profiles/<profile>/package.json 的 dependencies 与 dsh.profile.bundles 移除本插件包(@xianminglf/plugin-manager)、删除对应的 node_modules/<pkg> 目录,并(若本机装有 js-yaml)清理用户层 cordis.patch.yml 里残留的该插件行。

如需指定其它 profile 或 DSH_HOME,或切换语言,才需要额外参数(默认不用):

node fix-self-delete.mjs --profile <name>   REM 其它 profile
node fix-self-delete.mjs --home <dir>        REM 自定义 DSH_HOME
node fix-self-delete.mjs --lang en           REM 英文输出