DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Manager — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

@snowsalt/dsh-manager

Manager

适用于 DeepSeek Harness 的 ComfyUI-Manager 风格插件市场:浏览、安装、更新和移除 dsh 插件。下载即可使用——无需特殊构建。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add @snowsalt/dsh-manager@0.3.0
README兼容性版本

兼容性与来源证明

Manager 以 @snowsalt/dsh-manager 发布,当前版本为 0.3.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/21

版本

0.3.0stable
2026/8/15
0.2.0stable
2026/8/14
最新版
0.3.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
36.5 kB
文件数
8
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 7
周下载
15
最近提交
2026/8/15
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

README

@snowsalt/dsh-manager

ComfyUI-Manager-style plugin marketplace for DeepSeek Harness.

Download and use — no special build needed. Install as a standard dsh profile plugin, then open the marketplace page to browse, install, update, and remove dsh plugins from a community registry plus a live npm search.

Features

  • Plugin marketplace: browse installable dsh plugins (official + npm search + community registry).
  • One-click install / uninstall / update via the dsh plugin CLI.
  • Community registry (ComfyUI-style): a hosted JSON index that anyone can extend by PR.
  • Live npm search: discovers @deepseek-ai/dsh-* and dsh-plugin-tagged packages automatically.
  • Standalone page: served by the harness webserver at /dsh-manager — works in any browser.

Install

# 1. Add the plugin to the web profile
dsh plugin --profile web add @snowsalt/dsh-manager

# 2. Start the harness web UI
dsh web

# 3. Open the marketplace
#    http://127.0.0.1:3080/dsh-manager

For a pre-release / git source:

dsh plugin --profile web add git+https://github.com/KYZHXL/dsh-manager.git

How it works

The bundle patch (cordis.patch.yml) inserts a host plugin that registers HTTP routes on the harness webserver:

RoutePurpose
GET /dsh-managerThe standalone marketplace page (self-contained HTML/JS).
GET /api/dsh-manager/snapshotMerged catalog: npm search + community registry + installed state.
POST /api/dsh-manager/installdsh plugin add <source> for one entry.
POST /api/dsh-manager/uninstalldsh plugin remove <source>.
POST /api/dsh-manager/updatedsh plugin update all.

It depends only on @deepseek-ai/cordis and @deepseek-ai/dsh-host-webserver (peer dependencies), so it works on any stock DeepSeek Harness.

Community registry

The default registry is hosted at KYZHXL/dsh-plugin-registry (plugins.json). To add your plugin, open a PR adding one entry:

{
  "id": "my-plugin",
  "title": "My Plugin",
  "author": "You",
  "description": "What it does.",
  "source": "git+https://github.com/you/my-plugin.git",
  "reference": "https://github.com/you/my-plugin"
}

source may be an npm package name or a pnpm-installable git URL.

Development

npm install
npm run build     # tsc + copy market.html into lib/web
npm pack          # build the installable tarball

License

MIT