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.

Browser Notify Plugin — DSH Plugin for DeepSeek Harness
← Plugins
B

dsh-browser-notify-plugin

Browser Notify Plugin

DSH browser desktop notification plugin: after each conversation turn (turn/end) is completed, displays a system-level desktop notification in the browser using the Web Notification API. Standalone dsh.bundle + dsh.client plugin, installable/uninstallable with the native `dsh plugin add/remove`.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-browser-notify-plugin@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Browser Notify Plugin is published as dsh-browser-notify-plugin and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
8/21/2026

Versions

0.1.1stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
12.4 kB
Files
6
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
8/15/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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-baseRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rIm@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).

README

dsh-browser-notify-plugin

给 DeepSeek Harness (DSH) 的 web 界面添加一个功能:每轮对话完成后,在浏览器内弹一条系统级桌面通知——即使浏览器窗口不在前台也能看到。

快速开始

要求:已安装 dsh。

dsh plugin --profile web add dsh-browser-notify-plugin

安装后:

  1. 打开 DSH web(默认 http://127.0.0.1:3080)。
  2. 刷新页面,发任意一条消息。
  3. 该轮执行结束时浏览器会请求通知授权,点允许。
  4. 之后每一轮对话完成都会弹桌面通知。

若是本地源码调试,改成 dsh plugin --profile web add ./dsh-notify-plugin(指向仓库目录)。

卸载

dsh plugin --profile web remove dsh-browser-notify-plugin

卸载或重装后建议重启 dsh web 并刷新页面,让浏览器里的插件随之生效/失效。

通知效果

  • 标题:DSH · 第 N 轮对话(完成/出错/被打断…)
  • 正文:该轮最新回复的摘要(≤120 字)
  • 只在通知权限为「允许」时发送;无权限时静默跳过,不会打扰会话
  • 对当前窗口之外的会话(后台会话、子 agent)同样生效
  • 点击通知会把 DSH 窗口拉到前台

工作原理(简要)

本插件是一个 dsh.bundle + dsh.client 双面插件:浏览器半部订阅 DSH 的会话事件流(events.mux),在每轮结束(turn/end)时调用浏览器 Web Notification API 弹通知。桌面通知必须由浏览器 JS 发起,因此无需改动 DSH 源码。

常见问题

没有收到通知?

  1. 先确认已刷新页面加载插件;
  2. 确认地址是 http://127.0.0.1:3080;
  3. 检查浏览器地址栏的「网站设置 → 通知」是否已允许(或点击右下角被阻止通知的图标单独放行)。

通知策略能改吗? 目前行为固定在上面的「通知效果」。如需调整标题、正文长度或显示时机,改仓库里 lib/client.js 后重新安装/发布即可。