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.

Agent Sound Alert — DSH Plugin for DeepSeek Harness
← Plugins
A

@dsh-external/dsh-agent-sound-alert

Agent Sound Alert

Agent stop sound notifications: monitors the session event firehose and plays macOS system sounds when a session completes, requests approval, or is abnormally interrupted.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:moonlin1213/dsh-agent-sound-alert#3667d06b071ab2e9e94e3eec78e94949046c049d
READMECompatibilityVersions

Compatibility and provenance

Agent Sound Alert is published as @dsh-external/dsh-agent-sound-alert and currently resolves to version 0.0.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/29/2026

Versions

0.0.1stable
8/29/2026

Related plugins

Loading related plugins…

Latest
0.0.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/29/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.

Im@xmanrui/dsh-im把十一种 IM 渠道和公网 AI Office 接入本机 DeepSeek Harness。 Connect eleven IM channels and a public AI Office to a local DeepSeek Harness.DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseIm Connect@michengai/dsh-im-connectDeepSeek Harness IM assistant: connect a local agent to WeChat, WeCom, DingTalk, Feishu, QQ, and Telegram, with conversations and web tasks separated.

README

dsh-agent-sound-alert

A macOS sound notification plugin for DeepSeek Harness. It listens to the Host session event firehose and plays a local system sound when an Agent completes a turn, asks for approval, or stops abnormally.

Package name: @dsh-external/dsh-agent-sound-alert

Requirements

  • macOS (afplay and /System/Library/Sounds)
  • DeepSeek Harness with an installed runtime
  • Node.js and npm

The repository is open source but intentionally has private: true in package.json: it is distributed as a GitHub source plugin, not published to npm.

Events and defaults

EventMeaningDefault soundSetting
turn/end completedTurn completed; waiting for user inputGlassonCompleted
approval/askedTool approval requested; debounced per sessionTinkonApproval
turn/end error / blockedTurn failed or became blockedBassoonError
turn/end aborted (hook / legacy)Abnormal interruption such as a policy hookSosumionAborted
turn/end max-tokensOutput reached its token limitGlassonMaxTokens (off by default)

Subagent sessions are ignored by default. User-initiated cancellation (user, parent, or disposed) and crash-recovery replay (interrupted) do not play a sound.

Settings

Open Settings → Plugins → Plugin configuration → agent-sound-alert. Changes apply live.

  • enabled: master switch
  • volume: 0 to 1, default 0.7
  • approvalDebounceMs: minimum interval between approval sounds in one session, default 2500
  • includeSubagents: also notify for subagent sessions, default false
  • Sound fields accept a macOS system sound name, an absolute audio file path, or none

The plugin exposes agent_sound_alert_test; pass completed, approval, error, aborted, or a macOS system sound name.

Build

git clone https://github.com/moonlin1213/dsh-agent-sound-alert.git
cd dsh-agent-sound-alert
npm install --legacy-peer-deps
npm run check

The repository includes a verified lib/ build so a fresh clone can be installed directly. Contributors who modify src/ must run npm run check and commit the regenerated lib/. The build script locates the newest valid installed DSH runtime; set DSH_RUNTIME=/absolute/path/to/runtime when automatic discovery is not appropriate.

Development injection

Use dev_inject_plugin only while developing:

dev_inject_plugin /absolute/path/to/dsh-agent-sound-alert

This writes a persistent entry to ~/.dsh/super-injector/registry.json; DSH restores it after restart. Development injection is therefore not the same as a temporary one-process load.

Formal bundle installation

dev_install_package requires lib/, which is included in this repository. If you changed the source, complete the Build steps first. Before converting a development injection into a formal bundle installation, remove the development registration first:

dev_uninject_plugin dsh-agent-sound-alert
dev_install_package /absolute/path/to/dsh-agent-sound-alert

Never keep both dev_inject_plugin registration and dsh.profile.bundles registration for the same plugin. Otherwise DSH can restore both copies during cold start and fail with an error such as:

settings namespace "agent-sound-alert" is already registered

The correct formal state is:

  • one profile dependency
  • one dsh.profile.bundles entry
  • no matching entry in ~/.dsh/super-injector/registry.json
  • one active runtime instance
  • no duplicate insert or accidental disabled override in cordis.patch.yml

Cold-start verification

--dump-config validates static configuration only. It does not prove that runtime injection restoration and bundle loading will not collide.

After formal installation:

  1. Fully quit DeepSeek Harness.
  2. Start it again.
  3. Confirm the service remains running and the desktop app reaches WebUI.
  4. Confirm the plugin starts exactly once.
  5. Confirm logs contain neither already registered nor plugin tree failed to load.

Privacy

The plugin makes no network requests and collects no telemetry. It only reads DSH session lifecycle events and launches the local macOS afplay process. Custom audio paths are not written to plugin logs or tool responses. Playback is capped at three concurrent processes, and active players are stopped when the plugin is unloaded.

License

MIT