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.

Sound Effects — DSH Plugin for DeepSeek Harness
← Plugins
S

dsh-sound-effects

Sound Effects

DeepSeek Harness sound notification plugin: plays a sound when a task is completed or permission is required, with options to change sounds at any time (presets/custom uploads/volume/mute).

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

npx -y @deepseek-ai/dsh plugin --profile web add github:fenghua00/dsh-sound-effects#9371cae6c0b8f17f3312bad6bedd73214e1b7c74
READMECompatibilityVersions

Compatibility and provenance

Sound Effects is published as dsh-sound-effects and currently resolves to version 1.0.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/4/2026

Versions

1.0.0stable
9/4/2026

Related plugins

Loading related plugins…

Latest
1.0.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/4/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-sound-effects 🔔

DeepSeek Harness (DSH) 音效提示插件 —— 任务完成或需要权限审批时播放提示音,可随时更换音效。

✨ 功能

能力说明
🔔 任务完成音效agent 回合正常结束时播放(出错/中断不响)
⚠️ 权限请求音效每次需要用户批准(审批弹窗)时播放
🎛️ 随时更换音效设置 → 音效提示:4 种预设 + 上传自定义音频(<512KB)+ 音量 + 静音 + 试听
🔄 自动播放兼容浏览器拦截时挂起,首次点击页面后自动解锁并补播
📊 运行状态设置页显示音频状态与最近播放记录

🚀 安装

# 方式一:GitHub 源
dsh plugin --profile web add github:fenghua00/dsh-sound-effects

# 方式二:本地目录(复制到 profile 的 plugins/ 后)
dsh plugin --profile web add <plugins>/dsh-sound-effects

重启 dsh web 后生效。打开 设置 → 音效提示 即可使用。

🧰 使用

  1. 重启后到 设置 → 音效提示:
    • 「完成音效」与「权限音效」分别选择预设(清脆叮咚 / 叮咚提示 / 短促嘀声 / 柔和警报)
    • 点「上传」可用自己的音频文件(wav/mp3/ogg,≤512KB,存于浏览器本地)
    • 拖动「音量」、勾选「静音」、点「▶ 试听」预览
  2. 音频配置存在浏览器 localStorage(键前缀 dsh-sfx:),刷新/重启不丢

首次使用若浏览器阻止自动播放,点击页面任意位置即可解锁,挂起的提示音会自动补播。

🛠️ 实现说明

  • 事件源(宿主半区):监听会话事件 session/event
    • approval/asked → 权限请求 → 播放权限音效
    • turn/end(reason=completed)→ 回合正常结束 → 播放完成音效
  • 通信:宿主在 /plugin/sfx/* 挂 HTTP 路由,浏览器半区 fetch 轮询取事件(无需 host.call,兼容标准 dsh-plugin 安装方式)
  • 双面插件:dsh.bundle.patch(Host 半区)+ dsh.client(浏览器半区)

📁 结构

dsh-sound-effects/
├── package.json        # type:module + dsh.bundle.patch + dsh.client
├── cordis.patch.yml    # 插入 sound-effects 配置行
└── lib/
    ├── index.js        # Host: 事件监听 + /plugin/sfx HTTP 接口
    └── client.js       # 浏览器: 播放/设置页/轮询 (__ModuleLoader__)

License

MIT