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.

Done Notify — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-done-notify

Done Notify

dsh plugin: When you leave the page, receive a system notification when the agent completes a task, awaits approval, or asks a question; click it to return to the conversation.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-done-notify@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Done Notify is published as dsh-done-notify and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/5/2026

Versions

0.1.0stable
9/5/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
77.6 kB
Files
11
Surface
web
License
BSD-3-Clause
Source
npm
GitHub
★ 1
Weekly downloads
0
Last push
9/5/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).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-done-notify

DSH(DeepSeek Harness)插件:离开页面时,agent 有了动静就弹系统通知,点一下跳回对应会话。

dsh web 的标签页标题只显示当前会话名——切去别的窗口干活时,agent 完成一轮、 发出审批卡、或者停下来向你提问,你完全无感知;切回来才发现它已经卡了半小时。

功能

  • 任务完成提醒:任意会话的 agent 完成一轮(api-session/status running 翻转), 若 dsh 窗口不在前台,弹系统通知(Web Notification)。
  • 等待审批提醒:agent 发出审批卡时提醒——它会一直停在那里等你,这是最不该错过的通知。
  • 提问等待回答提醒:agent 向你提问停下时提醒。
  • 点击跳回:点击通知聚焦 dsh 窗口并打开对应会话。
  • 多标签页去重:多个 dsh 标签页同时开着时,同一事件只弹一次(BroadcastChannel 认领,尽力而为)。
  • 子代理不吵:subagent 会话的完成事件不提醒(父会话会继续产生自己的完成)。
  • 同一会话 20 秒内只提醒一次;同一会话+类型的弹窗会被浏览器自动替换不堆叠。

设置入口:设置 → 离开提醒。首次使用点「请求系统通知权限」,再点「发送测试通知」验证。

可配置项

开关默认说明
启用离开提醒开总开关
仅在窗口未聚焦时提醒开关闭后,dsh 在前台时后台会话完成也会弹(前台内宿主侧栏本就有绿点)
等待审批时提醒开
提问等待回答时提醒开

配置存于浏览器 localStorage(键 dsh-done-notify.config.v1)。

已知边界

  • 通知依赖浏览器权限:在系统/浏览器层面全局关闭通知时插件无法弹窗(设置面板会显示权限状态)。
  • 审批/提问载荷的文本字段是尽力抽取(未知 schema 下可能只显示类型不显示内容),跳转不受影响。
  • 页面完全关闭后没有通知——插件运行在 dsh web 页面内。需要"关掉浏览器也有通知"请配合 dsh-attention(审批/提问的 Windows 原生 Toast)。

开发

DSH_CHECKOUT=<dsh checkout 路径> npm run typecheck
DSH_CHECKOUT=<dsh checkout 路径> npm run build
npm test

纯判定逻辑在 src/notify-rules.ts(客户端与测试共用);客户端实现 src/client/index.ts;服务端入口为空壳(本插件零服务端行为)。