Anna-la/dsh-turn-notify0

dsh-turn-notify

Agent turn completion notification via Windows Notification Center.

包名
dsh-turn-notify
版本
0.1.0
许可证
MIT
最近更新
2026年8月27日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Anna-la/dsh-turn-notify

配置项

在补丁文件的插件行下加 config: 即可覆盖(以下为全部默认值):

- insert:
    - id: turn-notify
      name: 'C:/Users/Jason/Desktop/dsh-message/dsh-turn-notify/index.mjs'
      config:
        enabled: true          # 总开关
        appName: 'DeepSeek Harness'   # 通知标题
        fallbackAgent: 'Agent'        # 取不到会话标题时正文里的名字
        notifyKinds: []        # 只通知这些结束原因;空数组 = 全部
                               #   可选: completed / error / blocked /
                               #         max-tokens / aborted / interrupted
        cooldownMs: 2000       # 同一会话两次通知的最小间隔(毫秒)
        silent: false          # true 时不播放通知声音

示例:只想在「正常完成」和「出错」时通知、且不响铃:

config:
  notifyKinds: ['completed', 'error']
  silent: true