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.

Webhook Notifier — DSH Plugin for DeepSeek Harness
← Plugins
W

dsh-webhook-notifier

Webhook Notifier

Send notifications to a webhook when a round is completed, with support for GET/POST, custom fields, request headers, and sending logs.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:masknull/dsh-webhook-notifier#686475c742b82b4763a7181683ebb5c85d8bcf95
READMECompatibilityVersions

Compatibility and provenance

Webhook Notifier is published as dsh-webhook-notifier 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
github
Registry updated
9/3/2026

Versions

0.1.0stable
9/3/2026

Related plugins

Loading related plugins…

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