DeepSeek Harness plugin

dsh-notify-sound

DSH web plugin: plays a sound when the agent finishes replying (turn/end). Sound, volume and on/off are configurable in the Settings page.

Jump to install

Source facts

Repository
xxxxxxxyu/dsh-notify-sound
Latest update
Aug 14, 2026
Category
Workflow & Automation
GitHub stars
4
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/xxxxxxxyu/dsh-notify-sound
Plugin: dsh-notify-sound
Author: xxxxxxxyu

Check the source files

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

File explorer3 files
README.mdSource · read only

dsh-notify-sound

DSH (DeepSeek Harness) web 插件:AI 回复完毕后自动播放提示音

支持在 DSH 设置页中随时更换音效(内置 44 个音效)、调整音量、开关。

功能

  • 回合结束(agent 回复完毕)自动播放提示音,通过 WebSocket 实时推送,零轮询
  • 默认音效 staplebops-01.aac
  • 设置页(设置 → 提示音):开/关、音效选择、音量调节、试听
  • 设置即时保存,重启后保留(存储在 DSH 设置服务,全局生效)
  • 音效文件内置在插件中,无需联网

安装

要求:DSH web profile(dsh web),Node.js >= 20。

# 从 GitHub 安装
dsh plugin --profile web add git+https://github.com/<you>/dsh-notify-sound.git

# 或本地开发安装
cd C:/Users/<you>/.dsh/profiles/web
pnpm add file:/path/to/dsh-notify-sound

安装后确认包已加入 dsh.profile.bundles,然后重启 dsh 服务生效。

设置

打开 DSH 设置页,左侧导航出现"提示音":

设置项说明
回复完成提示音开关(默认开启)
提示音下拉选择音效(44 个),选中即生效
试听播放当前选中的音效
音量0 ~ 100% 滑块

架构

  • 后端(src/index.ts):监听会话事件中的 turn/end(回合结束)→ WebSocket 广播;

提供音效静态路由(/notify-sound/sounds/<name>.aac)与偏好 API

(/notify-sound/api/sounds.list | prefs.get | prefs.update);偏好存储在

DSH 设置服务(namespace dsh-notify-sound)。

  • 前端(src/client/index.tsx):连接通知 WebSocket,收到 turn/end 播放所选音效;

注册 DSH 设置页 settings.section 插槽。

  • 所有路由经过与 /api 网关相同的浏览器信任围栏(loopback / 同源校验)。

开发构建

npm install
npm run build   # 产出 lib/index.js + lib/client.js

音效来源

内置音效(sounds/*.aac,alert / bip-bop / nope / staplebops / yup 系列)来自 Stephanvs/opencode-sfx,MIT 许可, 版权归其作者所有,详见 sounds/LICENSE。

许可

MIT License —— 插件代码见 LICENSE;音效版权归 opencode-sfx 作者。