DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Webhook Notifier — DeepSeek Harness 插件(DSH Plugin)
← Plugins
W

dsh-webhook-notifier

Webhook Notifier

回合完成时向 webhook 发送通知,支持 GET/POST、自定义字段、请求头、发送日志

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

npx -y @deepseek-ai/dsh plugin --profile web add github:masknull/dsh-webhook-notifier#686475c742b82b4763a7181683ebb5c85d8bcf95
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/9/3

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/3
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 integrations-communication 分类下经过校验的插件。

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Remote Web Ui@linxin666/dsh-remote-web-ui通过扫码配对访问 dsh Web GUI,共享一个官方界面:设置按钮旁的二维码可将手机和 PC 配对到同一个 Web GUI(手机采用竖屏触控适配层,PC 使用完整桌面界面),通过一次性令牌和 rPocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。

README

dsh-webhook-notifier

DSH event-notification plugin: send HTTP notifications to a webhook when specified events occur.

Can be used together with the Desktop Pet project — e.g. push a notification to your desktop pet when a turn completes.

Features

  • 🔔 7 trigger scenarios (each independently toggleable in settings):
    • AI turn completed
    • Approval requested (approval)
    • AI asks a question
    • AI errored
    • AI started running
    • Subagent finished
    • Workflow finished
  • 🌐 HTTP requests: GET / POST, body as JSON / Form
  • 📦 Two payload modes:
    • Preset fields: toggle fields and write templates (e.g. {"session":"{{sessionName}}"})
    • Custom text: always sent as the msg parameter, free-form content
  • 🏷️ Always sends type + type_cn: the message kind in English and Chinese
  • 🔧 Custom headers: add arbitrary header key/value pairs
  • 🔍 Test send: verify connectivity with one click
  • 📜 Send log: each entry expandable to inspect full request content, response, and errors
  • 💾 Persistent config: stored in $DSH_HOME/settings.yaml, survives restarts

Install

dsh plugin --profile web add github:masknull/dsh-webhook-notifier

Restart dsh web after installing.

Usage

  1. Open Settings → Webhook Notifier
  2. Turn on the Webhook 通知 switch
  3. Configure Request: method, URL, payload mode, headers
  4. Tick the trigger scenarios (which events send notifications)
  5. Fill the payload in Preset Fields or Custom Text
  6. Click Test Send to verify, then Save

Placeholders

Templates support the following placeholders ({{ }} wrapped, distinct from JSON {}):

PlaceholderDescription
{{type}}Message type, always sent (e.g. turnComplete)
{{type_cn}}Message type in Chinese, always sent (e.g. 回合完成)
{{sessionId}}Session ID
{{sessionName}}Session title
{{turn}}Turn number
{{time}}Current time (UTC+8)
{{trigger}}Trigger scenario
{{toolName}}Tool name (approval requests)
{{reason}}Reason (approval requests)
{{error}}Error message (AI errored)
{{question}}Question text (AI asks)
{{status}}Status (agent running)
{{stopReason}}Stop reason (subagent/workflow end)
{{workflowName}}Workflow name
{{subagentLabel}}Subagent label
{{userMessage}}Latest user message
{{assistantMessage}}Latest AI reply
{{createdAt}}Session creation time

Send Examples

POST + JSON (preset fields):

{"type":"turnComplete","type_cn":"回合完成","sessionId":"s1","sessionName":"测试会话"}

POST + JSON (custom text → msg):

{"msg":"任务【测试会话】回合完成","type":"turnComplete","type_cn":"回合完成"}

GET: https://example.com/hook?type=turnComplete&type_cn=回合完成&sessionId=s1

Companion Projects

  • Desktop Pet: surface notifications on your desktop pet to monitor DSH activity in real time.

Uninstall

dsh plugin --profile web remove dsh-webhook-notifier

Restart dsh web. Config remains in settings.yaml (remove the fields manually to fully purge).

License

MIT