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.

Biz Bridge — DSH Plugin for DeepSeek Harness
← Plugins
B

dsh-biz-bridge

Biz Bridge

DeepSeek Harness business bridge plugin — enables business systems to access DSH agent capabilities through the standard HTTP protocol (streaming and callback response modes, SQLite task queue)

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

npx -y @deepseek-ai/dsh plugin --profile web add github:NewSpringWei/dsh-biz-bridge#ec8970dbe35dc81024cbb6aab6f20ca66d1ae163
READMECompatibilityVersions

Compatibility and provenance

Biz Bridge is published as dsh-biz-bridge and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/12/2026

Versions

0.1.1stable
9/12/2026
0.1.0stable
9/5/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/12/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 integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseIm@xmanrui/dsh-im把十一种 IM 渠道和公网 AI Office 接入本机 DeepSeek Harness。 Connect eleven IM channels and a public AI Office to a local DeepSeek Harness.Pocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).Chat Importdsh-chat-importImport conversation history from 25+ AI coding agents into DeepSeek Harness as resumable sessions — tool calls, reasoning and results kept intact, with reverse export and sync. | 把 25+ AI 编程 Agent 的聊天记录导入 DeepSeek Harness 继续对话,保留工具调用、推理与结果,支持反向导出与同步。

README

dsh-biz-bridge

DeepSeek Harness(DSH)业务桥接插件 —— 通过标准 HTTP 协议把 DSH 的 agent 能力开放给业务系统。业务方只发一个带签名的 HTTP 请求,就能拿到流式(SSE)或 回调两种响应;session_id 复用即多轮上下文,任务调度与日志全由插件落 SQLite。

  • 当前版本:0.1.1(草创/早期开发,接口可能调整,暂不建议生产关键链路)
  • 源码即仓库根:完整插件工程即本目录,代码随便看、随便改。

目录速览

.                            # 本仓库根
├─ src/                      # 插件源码(入口 src/index.ts)
├─ tests/                    # 单元测试(零依赖,npm test 即可跑)
├─ docs/                     # 用户文档(本 README 之外都在这)
│   ├─ building.md           #   源码构建、测试、开发调试
│   ├─ config.md             #   配置与部署(字段参考 + 部署步骤 + FAQ)
│   ├─ api.md                #   HTTP 接入(签名协议 + 接口定义 + 错误码)
│   └─ cordis.patch.yml      #   配置样例(直接复制到 profile 使用)
├─ release/                  # 发布产物(dsh-biz-bridge-0.1.1.tgz + CHANGELOG)
├─ tools/bundle/             # 便携部署包构建器(把 Node+DSH+pnpm+本插件打成可带走的目录)
└─ public/static/            # 随插件分发的参考工具页(管理员/接入测试/密钥工具)

快速开始(clone 之后)

准备:Node ^22.19.0 || >=24.0.0(DSH 的引擎要求);一台装有 DSH 的机器(有 dsh 命令即可,本插件的普通用法不需要 web/GUI,装好 DSH 的同一环境就行)。

第一步 · 拿到安装包(二选一)

# A. 直接用仓库随附的发布包
ls release/dsh-biz-bridge-0.1.1.tgz

# B. 或自己从源码构建(产物同样写到 release/)
pnpm install && pnpm build && npm run release    # 前提见 docs/building.md

第二步 · 建独立 profile 并安装(只做一次;会先自动带上 @deepseek-ai/dsh-base 运行时核心,再装本插件)

dsh plugin --profile bizbridge add ./release/dsh-biz-bridge-0.1.1.tgz

第三步 · 启动

dsh --profile bizbridge

启动日志出现 activation rescue 与 activated 即成功。

第四步 · 配业务方 client 公钥(改完即时生效,无需重启)

公钥表在 $DSH_HOME 同级的插件数据根下:

<runtime.path>/clients/
├─ clients.json          [{ "clientId": "...", "scope": [...], "enabled": true }]
└─ <clientId>.pem        该 client 的公钥(整段原文)

公钥从哪来:打开 http://127.0.0.1:42731/bizbridge/static/utils.html(工具页无需认证、 纯本地运算、不发任何网络请求)生成密钥对,把它给出的公钥存成 clients/<clientId>.pem,并在 clients.json 里登记一行。

未配任何 client 时服务照常启动,但所有 API 请求返回 401、只有静态页可达(fail-closed), 所以先跑起来是安全的。

第五步 · 跑通一次

用接入测试页 http://127.0.0.1:42731/bizbridge/static/client.html 跑一次 stream / callback。

字段与降级语义(解析失败保留上一份、enabled:false 即停用)见 docs/config.md 的 §auth。

常规用法就是上面这条独立进程路径:它和你的 web/GUI 互不干扰,改/重启它都不会 中断正在跑的 web 会话。把插件并入其它 profile 只是开发联调的可选路径,细节见 docs/config.md。

目标机器不能预装 Node / DSH 时:用 tools/bundle/ 生成一个 自带运行时(Node + DSH + pnpm)的便携包 —— 目标机器解压即可跑,上述流程在包内等价。 该产物体积数百 MB,由使用者在本机生成,不进本仓库。

详细文档(子文档)

想看什么去哪
源码构建、测试、开发调试docs/building.md
生成便携部署包(自带 Node/DSH/pnpm)tools/bundle/README.md
配置与部署(字段参考 + 部署步骤 + FAQ)docs/config.md
HTTP 接入:签名协议、接口定义、错误码docs/api.md
配置样例(直接复制到 profile 使用)docs/cordis.patch.yml
版本历史与发布说明release/CHANGELOG.md

License

MIT