DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Bridge — DeepSeek Harness 插件(DSH Plugin)
← Plugins

dsh-bridge

Bridge

DeepSeek Harness 的本地会话消息传递和事件桥接

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

npx -y @deepseek-ai/dsh plugin --profile web add github:baixianger/dsh-bridge#3e4605e3aeae57419a0a3299f560d2ccb0226241
README兼容性版本

兼容性与来源证明

Bridge 以 dsh-bridge 发布,当前版本为 0.1.0-rc.17。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.0-rc.17prerelease
2026/9/14
查看其余 12 个版本收起版本
0.1.0-rc.16prerelease
2026/9/10
0.1.0-rc.15prerelease
2026/8/27
0.1.0-rc.14prerelease
2026/8/24
0.1.0-rc.13prerelease
2026/8/23
0.1.0-rc.12prerelease
2026/8/23
0.1.0-rc.11prerelease
2026/8/23
0.1.0-rc.10prerelease
2026/8/23
0.1.0-rc.9prerelease
2026/8/23
0.1.0-rc.8prerelease
2026/8/18
0.1.0-rc.7prerelease
2026/8/17
0.1.0-rc.6prerelease
2026/8/17
0.1.0-rc.5prerelease
2026/8/17

相关插件

正在加载相关插件…

最新版
0.1.0-rc.17
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 2
周下载
506
最近提交
2026/9/14
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 integrations-communication 分类下经过校验的插件。

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Im@xmanrui/dsh-im将十一种 IM 渠道和一个公网 AI Office 接入本地 DeepSeek Harness。Pocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。

README

DSH Bridge

DSH Bridge

English · 简体中文

Let sessions in one DeepSeek Harness host discover each other and exchange messages. Bridge is the local foundation beneath Chat rooms and trusted Weave delivery.

Three tools, one local host

ToolPurpose
session_listDiscover sessions and their current state.
session_sendSend by exact session ID or human-readable title.
session_messagesRead a bounded recent delivery log.

Quick start

dsh plugin --profile web add dsh-bridge@latest
dsh web

Ask an agent to list sessions, then send a message to the intended session. Bridge adds tools directly; it has no separate settings page.

For session_send, mode: auto tries the ID before the title; id and name select one lookup method. Titles match case-insensitively. Ambiguous names return candidate IDs instead of choosing a recipient for you.

Delivery that respects session state

flowchart LR
  Send[Send message] --> Resolve[Resolve target]
  Resolve --> Live[Live session]
  Resolve --> Cold[Resume persisted session]
  Live --> Queue[Queue follow-up]
  Cold --> Queue
  • Idle agents wake; running agents receive queued work.
  • Persisted sessions resume with their recorded preset and model.
  • Concurrent requests to a cold session share one resume operation.
  • Archived sessions reject delivery and are not woken.
  • Cancelling during a cold resume prevents a late follow-up, even if the shared load finishes.

A delivery acknowledgement means the session accepted the follow-up. It does not mean the model has processed it or completed the task.

Configuration

FieldDefaultPurpose
recentMessages1000Retained messages per host.
dedupeCapacity10000Remembered external message IDs.
maxMessagesPerRead100Maximum messages returned per read.

Plugin integration

ctx.dshBridge is the public service. Trusted transports call deliverExternal() so local and external delivery share the same follow-up and audit path. Its optional signal carries cancellation through session resolution.

DSH Weave supplies cross-host transport; DSH Chat supplies rooms and a Web conversation view. Neither is required for local messaging.

Retention & boundaries

Bridge operates within one host process. Its recent-message log and duplicate-ID table live in memory and reset on plugin unload or reload; they are not a durable mailbox. The old ctx.sessionMessaging accessor remains a temporary compatibility alias.

Development & feedback

npm ci
npm run check

Report an issue · Release notes · MIT license