DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-weave

Weave

用于跨机器连接 DeepSeek Harness 节点的私有点对点编织协议。

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-weave@0.1.0-rc.16
README兼容性版本

兼容性与来源证明

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

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

版本

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

相关插件

正在加载相关插件…

最新版
0.1.0-rc.16
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
67.6 kB
文件数
14
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
387
安全扫描
✓ v0.1.0-rc.16 扫描通过
最近提交
2026/9/14
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

相关插件

继续浏览 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 Weave

DSH Weave

English · 简体中文

Connect explicitly trusted DeepSeek Harness hosts through Iroh. Keep pairing, peer identity, reachability, and the remote session directory in one transport layer.

What you get

CapabilityBehavior
Persistent identityThe same host identity survives restarts.
Explicit pairingExchange endpoint tickets and trust each peer locally.
Encrypted transportIroh provides QUIC connections, direct paths, and relay fallback.
Remote directoryDiscover workspaces and sessions on paired hosts.
Visible stateHost reachability is separate from agent idle/running/offline state.
Native settingsGrouped identity and pairing controls, copy feedback, and removal confirmation.

Quick start

On each host:

dsh plugin --profile web add dsh-weave@latest
dsh web
  1. Open Settings → Weave on both hosts.
  2. Exchange their tickets through a channel you trust.
  3. Add and explicitly trust the other host's ticket on each side.
  4. Use a higher-level plugin such as DSH Chat to select remote sessions.

Add DSH Bridge when messages should reach local agents on a receiving host. Bridge is optional for transport startup.

One transport, separate responsibilities

flowchart LR
  A[Host A · Bridge] --> WA[Weave]
  WA <-->|Iroh · QUIC| WB[Weave]
  WB --> B[Host B · Bridge]

Iroh owns encrypted connectivity. Weave owns host trust, endpoint refresh, reachability, and authenticated requests. Chat owns rooms, membership, and room capabilities. Knowing a ticket alone does not grant trust or agent access.

Configuration

FieldDefaultPurpose
hostNameSystem hostnameDisplay label for the host.
relayModedefaultIroh default relay selection, or disabled.
persistIdentity / persistPeerstrueKeep identity and trusted peers across restarts.
acknowledgementTimeoutMs10000Default acknowledgement deadline.
maxConcurrentInbound64Bound concurrent incoming requests.
shutdownTimeoutMs1000Bound transport shutdown.

Identity and trusted peers are stored under $DSH_HOME/dsh-weave (~/.dsh by default), with owner-only permissions. identityPath and peersPath can override their locations.

Cancellation & delivery

Outbound requests accept a cancellation signal. Cancellation closes their connection; the receiving listener is also notified when the peer disconnects. Cancelling a request does not mark an otherwise reachable host offline. Chat's longer polling requests use matching acknowledgement deadlines.

The current release is a transport MVP. It provides pairing, directory access, and authenticated request delivery. A general remote task approval workflow and durable transport outbox/reconnect replay are not implemented. Application-level persistence belongs to the consuming plugin.

Protocol & architecture

Architecture · Protocol · Security · Room authority

The design documents include planned capabilities; use this README and the release notes for current behavior.

Development & feedback

npm ci
npm run check

Report an issue · Release notes · MIT license