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.

Herdr — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
H

@lbryany/dsh-herdr

Herdr

Herdr lifecycle status integration for DeepSeek Harness

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Lbryany/dsh-herdr#4c7bd4a5818d37a12e2f0b7deec6466ee7ada85a
READMECompatibilityVersions

Compatibility and provenance

Herdr is published as @lbryany/dsh-herdr and currently resolves to version 0.1.3. 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/20/2026

Versions

0.1.3stable
9/20/2026

Related plugins

Loading related plugins…

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

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).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

dsh-herdr

DeepSeek Harness 的 Herdr 状态集成插件。插件运行在承载 DSH Agent 的进程内部,把该进程中的 root agent 与子 agent 聚合成当前 Herdr pane 的语义状态。

状态映射

DSH 进程状态Herdr 状态
任一 agent 有未处理审批blocked
无待审批,任一 agent 正在运行working
存在 agent,且全部空闲idle
最后一个 agent 已销毁或插件卸载release-agent

插件监听 agent/created、agent/status、agent/disposed 和 session/event。恢复已有会话时会折叠历史中的 approval/asked / approval/decided,避免重启后丢失待审批状态。

前置要求

  • DeepSeek Harness 0.1.6-alpha.2
  • Node.js 22.19+ 或 24+
  • Herdr 管理的 pane(进程环境包含 HERDR_ENV=1 与 HERDR_PANE_ID)

插件优先通过 HERDR_SOCKET_PATH 建立持久 NDJSON 连接;Unix 使用 domain socket,Windows 使用 named pipe。连接、超时或协议失败时,当前报告自动回退到 HERDR_BIN_PATH 指定的 Herdr CLI,后续状态变化会重新尝试 socket。未运行在 Herdr pane 内时自动禁用,不影响 DSH。

本地构建与安装

npm install
npm run check
npm pack --ignore-scripts
dsh plugin --profile headless add ./lbryany-dsh-herdr-0.1.3.tgz
dsh headless "your task"

DSH 0.1.6-alpha.2 不再内置 tui profile。请将插件安装到实际承载 Agent 的同一 profile;上例使用 headless,使用其他内置或自定义 profile 时请同时替换安装和启动命令中的 profile 名称。

如果使用长期运行的 Web profile,也可以安装后从 Herdr pane 启动:

dsh plugin --profile web add ./lbryany-dsh-herdr-0.1.3.tgz
dsh web --no-open

发布到 GitHub 后可直接安装:

dsh plugin --profile headless add github:Lbryany/dsh-herdr

验证

在 Herdr pane 内启动已安装插件的 DSH profile,然后从另一个 pane 查看:

herdr agent list

DSH 开始处理消息时应显示 working,等待工具审批时显示 blocked,完成后显示 idle 或 Herdr 根据可见性派生的 done。

设计说明

  • 状态报告通过进程内队列串行执行,并使用跨进程递增的 epoch 微秒 seq;同一 pane 重启 DSH 后不会从 1 重新计数,也不会被 Herdr 当成旧报告忽略。
  • 同一 DSH 进程复用一条 socket 连接,不为每次状态变化启动 Herdr 子进程。
  • Socket 请求默认 3 秒超时;失败时回退 CLI,两条路径都失败才记录警告,不阻塞 DSH agent。
  • 多个 DSH profile 进程分别继承自己的 HERDR_PANE_ID,无需跨进程协调。

License

MIT