DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

@lalilulelo3/dsh-notify

Notify

DeepSeek Harness 插件:代理回合完成或 harness 等待您时,发送 Windows 桌面通知并播放声音。

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

npx -y @deepseek-ai/dsh plugin --profile web add @lalilulelo3/dsh-notify@0.2.1
README兼容性版本

兼容性与来源证明

Notify 以 @lalilulelo3/dsh-notify 发布,当前版本为 0.2.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.2.1stable
2026/9/12
0.2.0stable
2026/9/12
0.1.0stable
2026/9/12

相关插件

正在加载相关插件…

最新版
0.2.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
32.1 kB
文件数
7
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
70
最近提交
2026/9/12
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题
Notify — DeepSeek Harness 插件(DSH 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

@lalilulelo3/dsh-notify

🌏 中文文档:README_ZH.md · English

中文简介:DeepSeek Harness 的 Windows 桌面通知插件 —— agent 完成任务、或需要你回答 / 授权时,弹出原生系统通知(toast)并响铃。完整中文文档见 README_ZH.md。

Windows desktop notifications for DeepSeek Harness — get a native toast and a sound when the agent finishes a turn, or when it is waiting for you.

Why

DSH runs long tasks. If you are not staring at the conversation window, you miss the moment the agent finishes or blocks on your input. dsh-notify observes the harness event bus on the host and raises a Windows toast, so it works whether the browser tab is focused, in the background, or closed.

A turn ended · the harness is waiting for your answer · the harness is waiting for your approval

Requirements

  • Windows 10 or 11
  • DeepSeek Harness booted with the web profile
  • Node.js >= 20

Install

dsh plugin --profile web add @lalilulelo3/dsh-notify

Then restart dsh web. The package declares dsh.bundle.patch, so the CLI adds it to dsh.profile.bundles and the profile boot mounts it — no profile file edits are required.

What triggers a notification

MomentHookNotified
A turn endsturn/end session eventcompleted / error / blocked / max-tokens
The harness waits for your answeruser-questions/request waterfallalways
The harness waits for your approvalapproval/asked session eventalways

The plugin is observe-only: its user-questions/request listener is prepended, notifies, and then calls next(), so the real answerer still receives the request untouched. A failed notification is swallowed and never disturbs the agent loop. Top-level sessions are labelled by their workspace folder name (falling back to a short session id), and child (subagent) sessions stay silent unless you set subagents: true.

Configuration

Every field is optional. Add an id-targeted override to your profile patch file (~/.dsh/profiles/web/cordis.patch.yml), which the profile reloads live:

- id: dsh-notify
  config:
    sound: false
    reasons: [completed, error]
FieldTypeDefaultMeaning
enabledbooleantrueMaster switch; false disables the plugin
turnEndbooleantrueNotify when a turn ends
questionbooleantrueNotify when the harness waits for an answer
approvalbooleantrueNotify when the harness waits for approval
reasonsstring[][completed, error, blocked, max-tokens]Which turn/end reasons notify (aborted, interrupted are opt-in)
subagentsbooleanfalseAlso notify for subagent (child) sessions; off keeps multi-agent runs quiet
appIdstringcom.lalilulelo3.dsh-notifyAppUserModelID the toast is sent under; Windows lists it as DSH Notify
soundbooleantruePlay the Windows default notification sound
titlestringDSHToast heading

How it works

The package has one host half (lib/index.js) and no client half, so nothing in the Web UI needs rebuilding. On mount it subscribes to:

  • session/event — the session firehose. turn/end carries { turn, reason: { kind } }; approval/asked carries { id, toolName }.
  • user-questions/request — the Cordis waterfall the ask_user_question tool dispatches. The listener is prepended so the notification fires before the Web answerer consumes the request, then delegates with next().

A notification spawns powershell.exe -EncodedCommand with a small WinRT toast script. The child is fire-and-forget; the plugin never awaits it.

App identity

Toasts are sent under the plugin's own AppUserModelID (com.lalilulelo3.dsh-notify), registered on first use through HKCU\Software\Classes\AppUserModelId\… with the display name DSH Notify.

Earlier releases borrowed powershell.exe's identity instead — the usual trick for scripting a toast. That identity is shared with the Windows PowerShell app, so switching "Windows PowerShell" off in Settings → Notifications silently disabled every notification, and nothing in that list pointed back to this plugin. With a dedicated identity the plugin is listed by its own name and can only be toggled on purpose.

On first mount the plugin provisions both pieces Windows requires, in the background and idempotently (lib/win-identity.ps1):

  1. the HKCU\Software\Classes\AppUserModelId\… registration, so the app appears in Settings → Notifications at all, and
  2. a Start Menu shortcut (DSH Notify.lnk) carrying that AUMID. Without the shortcut Windows accepts the toast but only files it in the notification centre — no banner and no sound.

Both writes are best-effort: a failure degrades to a banner-less toast, never a broken boot.

On non-Windows platforms the plugin loads and stays inert, so a shared profile still boots.

Uninstall

dsh plugin --profile web remove @lalilulelo3/dsh-notify

Then restart dsh web.

Troubleshooting

No toast appears at all.

  1. Restart dsh web — a newly installed bundle only mounts at boot.
  2. Confirm it is in the composed config: dsh --profile web --dump-config should list @lalilulelo3/dsh-notify.
  3. Check Windows notifications: Settings → System → Notifications, and make sure Focus Assist / Do Not Disturb is off.
  4. The plugin is Windows-only; elsewhere it loads and stays inert by design.

Multi-agent runs are noisy. Child (subagent) sessions are skipped by default. If you still see too many, narrow the reasons:

- id: dsh-notify
  config:
    reasons: [completed, error]

Notifications stopped after something was switched off. Find DSH Notify in Settings → System → Notifications and switch it back on. Releases before 0.2.0 sent toasts under "Windows PowerShell" instead, so that entry — not this plugin's — was the one to check.

The toast lands in the notification centre with no banner and no sound. Windows needs the Start Menu shortcut for a desktop app's banner. Delete %APPDATA%\Microsoft\Windows\Start Menu\Programs\DSH Notify.lnk, restart dsh web, and the plugin rebuilds it on mount.

dsh web no longer starts. Remove the plugin and restart:

dsh plugin --profile web remove @lalilulelo3/dsh-notify

License

MIT