DeepSeek Harness 插件

console

插件生态基建:浏览器面板管理官方 repository 插件(0 patch)+ make-dsh-plugin 插件开发引导技能。

跳到安装方式

来源信息

GitHub 仓库
vlln/plugin-registry
最近更新
2026年8月14日
分类
插件市场与管理
GitHub stars
55

安装

默认先复制一段 Prompt,让 Agent 读页面和仓库;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读页面和仓库。

请先不要安装。阅读这个 DeepSeek Harness 插件,说明它解决什么问题、会访问哪些文件、网络或密钥,以及如何安装和卸载。

插件页面:https://deepseekplugins.org/zh/plugins/vlln/plugin-registry~23console
GitHub:https://github.com/vlln/plugin-registry/tree/main/packages/plugin/console
插件名:plugin-registry#console
作者:vlln
安装命令:dsh plugin --profile web add github:vlln/plugin-registry#path:/packages/plugin/console

确认前不要执行安装命令。

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器2 个文件
README.md来源说明 · 只读预览

<h1 align="center">plugin-console</h1>

<p align="center"> <strong>薄控制台——DSH Web 设置页内的插件管理面板</strong><br/> 0 patch 管理 profile 插件安装态:bundle 层栈 + insert 行 + 启停, 读写 profile 安装态,无需手改配置、不引入任何补丁。 </p>

<p align="center"> <img src="https://badgen.net/badge/license/MIT/green" alt="license" /> <img src="https://badgen.net/badge/format/official%20bundle/8257D0" alt="official bundle" /> </p>

---

这是什么

官方 bundle 插件dsh.bundle + dsh.client 声明):Node half 注册 /api/plugin-console 路由,client half 在设置页注册「插件管理」面板 (tab 命名避免与官方「插件」tab 重名)。面板两个管理区:

管理区职责操作写入位置
安装插件统一安装入口:bundle 与非 bundle 自动分流输入 npm 包名 / GitHub 项目(https://github.com/o/rgithub.com/o/rgithub:o/r,URL 自动规范化)→ 安装bundle → profile package.json 依赖 + dsh.profile.bundles 层栈(重启生效);非 bundle → profile cordis.patch.yml insert 行(配置 HMR 实时生效,零重启
已加载插件查看所有已加载插件(bundle + 内置)状态检查更新 / 更新(用户 bundle)/ 停用、启用(用户 bundle)/ 卸载(用户 bundle)profile cordis.patch.ymldisabled 标记(持久化)+ 层栈

0811 背景:官方移除 repository-plugins 机制(vendor/loader/src/repository.ts 删除),外部插件 统一经 web profile 安装。0811 保留配置级 HMR(web-app 禁用模块级 hmr 时 profile-boot 主动挂载 watch-only 实例)——profile cordis.patch.yml 编辑实时生效,insert 行写入无需重启即挂载(已实测)。

![插件面板](../../../screenshots/console-panel.png)

安装

安装命令与方式(git 源真一行 / 本地目录)见仓库根 [README「安装」章节](../../../README.md)。构建产物已入库,git 源一行命令直接装(实测约 15 秒):

dsh plugin --profile web add "github:vlln/plugin-registry#main&path:/packages/plugin/console"

挂载后刷新 Web 页面,设置页出现「插件管理」面板(settings.section 插槽)。

使用

  • 安装插件区:输入 npm 包名或 GitHub 项目(https://github.com/o/r / github.com/o/r / github:o/r,URL 自动规范化为 github:o/r)→ 自动 pnpm add,按包是否声明 dsh.bundle 分流:bundle → 层栈(重启生效);非 bundle → insert 行(配置 HMR 实时挂载,零重启
  • 已加载插件区:统一行渲染(版本状态:已最新 / 本地(非 registry) / 可更新;来源 Pill:内置 / 管理工具 / insert),启停即时生效并持久化到 profile patch,用户 bundle 支持更新与卸载

AI 插件管理工具(agent 面)

面板之外,Node half 注册 4 个 agent 工具(defineTool,与面板写同一安装态):

工具参数行为
plugin_searchquery?, source?, refresh?搜源集合(缓存枚举);默认 hub catalog(配置的 index.json);source 给定新索引 JSON 文件/URL → 懒加载探测并记住
plugin_installsourcenpm 包名 / GitHub 项目(https://github.com/o/rgithub.com/o/rgithub:o/r,URL 自动规范化):声明 dsh.bundle → pnpm add + 层栈(重启生效);纯 cordis 包 → pnpm add + insert 行(实时挂载);安装失败显式报错,不假成功
plugin_uninstallid删 insert 行(实时)或 bundle 依赖(重启生效);清单保留可再装
plugin_statusid?无参 list 已装;有参单查(含 TOFU resolved ref)

发现层存储(协议见 [plugin-discovery-design](../../../docs/plugin-discovery-design.md)):

$DSH_HOME/plugin-sources/
├── sources.yml      # 索引源集合(hub catalog;用户可编辑 + trust 层级)
├── lock.yml         # TOFU:canonical → resolved ref + 内容哈希
└── cache/<源id>/    # 每源枚举快照(TTL 6h)

index 源支持本地文件(file://…/catalog.json)——私有 hub 仓库匿名 raw 不可达时读本地 clone。 web 面板刷新即见 agent 写入结果(同文件,不实时推送)。

生效方式

  • insert 插件(非 bundle):写行/删行后 配置 HMR 实时生效(无需重启——0811 profile-boot 挂载 watch-only HMR)
  • bundle 插件:安装/更新/卸载需重启 web(层栈在 boot 合成);已挂载 bundle 的运行时启停即时生效并持久化
  • Node half 改动需重启 web(ESM 缓存);client 面板改动重装 + 刷新页面即可

开发插件(引导)

创建官方 bundle 插件 / 纯 cordis 插件的契约见 [make-dsh-plugin skill](../../../skills/make-dsh-plugin/SKILL.md)。仓库内参考实现:本包(bundle + 自渲染 client 的完整例子)。