DeepSeek Harness plugin

dsh-plugin-control-center

Plugin Control Center for DSH Web GUI settings: manage all installed plugins with enable/disable/delete, distinguishing native vs external plugins.

Jump to install

Source facts

Repository
marcell-allews/dsh-plugin-control-center
Latest update
Aug 20, 2026
Category
UI Enhancements
GitHub stars
1
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-21

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/marcell-allews/dsh-plugin-control-center
Plugin: dsh-plugin-control-center
Author: marcell-allews

Check the source files

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

File explorer3 files
README.mdSource · read only

DSH Plugin Control Center

一个用于管理 DSH 所有已安装插件的设置页面。

功能

  • 查看所有插件:列出所有已安装的插件及其状态
  • 启用/禁用插件:一键切换插件的启用状态
  • 删除插件:从配置移除插件,并把外部包移出 node_modules 备份
  • 区分原生与外来插件:清晰标识哪些是 DSH 原生插件,哪些是用户安装的外部插件

安装

方法 1:本地安装

cd ~/.dsh/profiles/web
npm install /path/to/dsh-plugin-control-center

方法 2:链接安装

cd ~/.dsh/profiles/web
npm link /path/to/dsh-plugin-control-center

方法 3:通过 pnpm 安装

cd ~/.dsh/profiles/web
pnpm add file:/path/to/dsh-plugin-control-center

使用

安装后,插件会自动注册到 DSH 设置面板中。你可以在设置中找到 "Plugin Control Center" 选项卡。

界面说明

  • 统计信息:显示已启用、已禁用、原生和外部插件的数量
  • 搜索框:按 ID 或名称搜索插件
  • 过滤器:按状态(启用/禁用)或类型(原生/外部)过滤
  • 批量操作:一键启用或禁用所有插件
  • 单个操作

- 切换开关:启用/禁用插件 - Remove 按钮:从配置移除插件(外部包移出到 .uninstalled/ 备份)

原生插件

moduleName@deepseek-ai/ 开头的插件被视为 DSH 原生插件(显示"内置",移除按钮禁用);其余为外部插件。原生插件可通过开关禁用,但不能移除。

配置

插件通过修改 ~/.dsh/profiles/web/cordis.patch.yml 文件来管理插件的启用/禁用状态。写入的是插件的原始 id(如 - id: ui-session-manager + disabled: true),由 dsh 的 patch 热重载即时应用,重启后保留。

注意事项

  • 移除插件不可撤销,请谨慎操作;外部包备份在 ~/.dsh/profiles/web/.uninstalled/,可手动移回恢复
  • 启用/禁用写入配置后立即热重载生效;若 dsh 未运行,下次启动时生效
  • 不要写 - id: include:xxx 前缀行——dsh 的 patch 按原始 id 匹配,前缀行无效
  • 此插件仅管理 cordis.patch.yml 中定义的插件;bundle 层插件(在 dsh.profile.bundles 里)只能禁用,不能移除

开发

本项目无构建流程,lib/ 目录就是源码本体(index.js 为 Node 端,client.js 为浏览器端 bundle)。直接修改 lib/ 后,把改动同步到 ~/.dsh/profiles/web/node_modules/@dph/dsh-plugin-control-center/lib/ 并重启 dsh 即可生效。

License

MIT