DeepSeek Harness plugin

dsh-task-notifier

DSH 任务完成通知器:Agent 每轮完成、子代理结束、Workflow 跑完、目标完成、Agent 提问时发送系统通知(macOS osascript)。

Jump to install

Source facts

Repository
AnCoSONG/dsh-task-notifier
Latest update
Aug 15, 2026
Category
Workflow & Automation
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/AnCoSONG/dsh-task-notifier
Plugin: dsh-task-notifier
Author: AnCoSONG

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer2 files
README.mdSource · read only

dsh-task-notifier

DSH 任务完成通知器:任务结束时发送系统通知(当前实现为 macOS osascript 横幅),触发链来自浏览器/会话事件;通知通道按平台分发(macOS osascript / Linux notify-send / Windows toast),不依赖浏览器权限。

功能

场景事件默认
每轮对话完成(仅根 agent)agent/status
子代理结束subagent/end
Workflow 跑完workflow/end
目标(goal)完成goal/changed (complete)
Agent 提问tools/execute (ask_user_question)

通知通道:Host 端通过 ctx.shell 执行平台系统通知命令(macOS osascript / Linux notify-send / Windows PowerShell toast),无需 Client 端、无需审批。

安装

在 DSH profile(Web GUI 默认 profile 为 web)中安装:

dsh plugin --profile web add @anco-dsh/dsh-task-notifier

或从本仓库直接安装(本地开发):

dsh plugin --profile web add .

> 提示:如果你使用非 web 的 profile,把上面的 web 换成你的 profile 名即可(dsh --profile <name> 或 GUI 设置里的当前 profile)。

配置

所有场景默认开启,可通过 profile 的 cordis.patch.yml 按 id 覆盖整行 config:

- id: task-notifier
  config:
    notifyOnTurnEnd: true
    notifyOnSubagentEnd: false
    notifyOnWorkflowEnd: true
    notifyOnGoalComplete: false
    notifyOnQuestion: true

发布

# 1. 构建产物
pnpm pack

# 2. 发布到 npm(需要 npm 账号)
npm publish

# 或交付 tarball
dsh plugin --profile web add ./anco-dsh-dsh-task-notifier-0.1.4.tgz

依赖

  • 运行时:零依赖(Config 为手写 Standard Schema)
  • 环境:跨平台(macOS osascript / Linux notify-send / Windows PowerShell toast)