Perlica (Arknights: Endfield) themed tiered sound notifications: plan-ready, task-done, needs-your-input, and error tones; silent for plain chat, system-level playback (works in background), cross-platform (Windows/macOS/Linux), custom TTS sounds.
Install
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:117BS/dsh-perlica-ding
Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).
README
"We are not the ones who state ideals — we are the ones who carry them out." —— Perlica, Supervisor of Endfield Industries
![]()
简体中文 | English
🔔 A Perlica-themed (Arknights: Endfield) tiered sound notification plugin for DeepSeek Harness.
Perlica reports your agent's status in her calm, concise, terminal-announcement tone: plan ready, task done, needs your input, error — each with its own sound. Plain conversation stays silent. Custom sounds (TTS voice supported) and audible even when the window is in the background.
📖 About Perlica
Perlica is the Supervisor and official spokesperson of Endfield Industries, an outstanding Protocol Technology specialist who manages the development and application of Protocol Originium technology and the day-to-day operations of the Dreadnought. She handles crises with decisive calm, always moving between bases and strongholds for the stable development of Endfield.
This plugin's sound style is inspired by her — clean, concise, with a touch of technical bureaucracy, addressing you as 「Administrator」.
✨ Features
| Scenario | Trigger | Sound file |
|---|---|---|
| 🗂️ Plan ready | Turn closes while plan mode is active | plan.wav |
| ✅ Task done | Turn closes and execution-class tools were used (file writes / commands / subagents / workflows …) | done.wav |
| 💬 Plain chat | No tools used, or only lookup tools (read / web_search …) | Silent |
| 🙋 Needs your input | ask_user_question tool / approval request |
ask.wav |
| ⚠️ Error | Agent turn errored | fail.wav |
Also:
- Root conversation only: subagents do not beep individually
- Debounce: 2.5s per kind, no sound storms
- Custom sounds: drop wav files into the sound dir, no code changes
- Cross-platform: Windows (SoundPlayer) / macOS (afplay) / Linux (paplay/aplay)
- Configurable: master switch, debounce, sound directory
📦 Install
From GitHub (recommended, no npm account needed)
dsh plugin --profile web add https://github.com/117BS/dsh-perlica-ding
Restart the web profile to activate:
dsh web restart
From npm (once published)
dsh plugin --profile web add dsh-perlica-ding
Local development
dsh plugin --profile web add /path/to/dsh-perlica-ding
🎵 Sound files
Works out of the box: the Perlica voice lines ship inside the plugin package (sounds/ is bundled) — no configuration needed, each scenario has its own sound:
plan.wav — plan ready
done.wav — task done
ask.wav — needs your input
fail.wav — error (optional)
To use your own sounds: generate wav files with any TTS tool and drop them into your workspace root (or the configured soundDir); same-named files override the bundled ones, effective immediately without restart. Lookup order: configured dir → workspace → bundled → OS fallback.
Requirement: must be real WAV (PCM). If your TTS tool exports MP3, convert first: ffmpeg -i input.mp3 -acodec pcm_s16le plan.wav.
⚙️ Configuration
In the profile's cordis.yml or the user patch layer:
plugins:
dsh-perlica-ding:
enabled: true # master switch
debounceMs: 2500 # min gap between same-kind sounds (ms)
soundDir: "" # custom sound dir; empty = workspace root
execTools: [] # tools that count as "executing a task"; empty = every tool counts (legacy)
🧪 Verify
Ask the agent to run any task (e.g. call a tool); you should hear a sound when it finishes. Or test the audio chain manually:
$p = New-Object Media.SoundPlayer 'D:\deepseek\done.wav'; $p.PlaySync()
📄 License
MIT
Links
More in this category
omdsh-dev/dsh-notification★ 52
Desktop notifications for turn completions, with per-outcome controls and keyword rules.
omdsh-dev/dsh-open-in-vscode★ 45
Open DSH workspace directories in VS Code directly from the web GUI.
whyihaveyou/dsh-suite#plugin-notify★ 35
IM webhook and local notifications on turn completion, errors, or approval (Feishu/WeCom/DingTalk/Slack/Discord/custom).
THEWOLFWALKER/dsh-notifier★ 28
Unified notification & remote control for DSH: one `notify()` API, 25+ channels (Telegram / DingTalk / Feishu / WeCom / QQ bot / WxPusher / PushPlus / ServerChan / Bark / Discord / Slack / ntfy / webhook...), level routing (timeSensitive / active / passive) with tiered retry, multi-channel inbound approval (Telegram buttons, Feishu cards, QQ, WxPusher, WeChat iLink), official QR login for QQ/DingTalk/Feishu, a local web admin console, multi-agent routing, desktop notifications — and a mobile command center: `!status` / `!stop` / `!retry` agent control from your phone plus actionable notifications (view result / retry / logs buttons that call back into the agent). Secrets redacted, tool rate-limited, zero runtime deps — plus an open event source: other plugins can inject the notifier service (ctx.notifier) and subscribe to dsh-notifier/sent events, reusing notification without coupling.
omdsh-dev/dsh-lark★ 23
Lark/Feishu bot channel for DeepSeek Harness: each chat drives its own agent, and tool approvals, model questions, and plan reviews return as cards answered by a button or a reply. Switch workspace and model from the chat (`/cd`, `/model`, `/new`), and run several bots that keep separate sessions and can hand turns to each other in one group.
bill9109/dsh-web-ui-notify★ 17
Desktop notification reminders.