Echo
/install echo-cue
echo-cue 🔔 (a.k.a. "echo")
A zero-build local patch for OpenClaw Control UI (webchat) that plays a short two-tone chime (A5 → E5, ~900ms) when an assistant reply finishes streaming. Designed as a stop-gap until upstream PR openclaw/openclaw#73894 (issue #69186) lands.
Why this exists
OpenClaw Control UI has no completion sound on main yet. PR #73894 implements
it but has been OPEN without review since 2026-04-29. This skill injects an
equivalent IIFE into the bundled UI dist so it works today, and gracefully
steps aside when upstream ships.
What you get
- Short ding-dong when the assistant finishes a reply
- Skipped for
NO_REPLY/ empty silent completions - Always rings by default (foreground + background); set
onlyHidden=onto limit to hidden tabs only - 4-second hard rate-limit + content-fingerprint dedup → never double-rings on streaming re-renders
- Per-browser localStorage toggles (no UI surface added)
- One-shot apply / remove with backup
- Cache-bust: rewrites
index.htmlto a new bundle filename so plain Cmd+R picks up the patch - Patches every detected OpenClaw install (brew + nvm + OPENCLAW_HOME) so it works
even when Gateway runs under a different node than
which openclawresolves - Auto-detects upstream PR landing → skips itself
Install
bash apply.sh
Then refresh your Control UI browser tab (regular Cmd+R is enough, the script cache-busts the bundle filename). Click or press a key once on the page to unlock the AudioContext (this happens automatically the first time you send a message).
Verify
DevTools console:
window.__milly_cue_v1__ // → true
Send a question, switch to another tab — you should hear a ding-dong when the assistant finishes.
Toggle (per browser)
// Disable entirely
localStorage.setItem('milly.completionCue', 'off')
// Re-enable
localStorage.removeItem('milly.completionCue')
// Ring even when the tab is in foreground (default behaviour as of 0.2.0):
localStorage.removeItem('milly.completionCue.onlyHidden')
// Limit ringing to hidden / unfocused tabs only:
localStorage.setItem('milly.completionCue.onlyHidden', 'on')
Uninstall
bash remove.sh
Restores the original bundle from index-*.js.milly.bak and the original
index.html from index.html.milly.bak.
After openclaw update
The update overwrites dist/control-ui/..., dropping the patch. Re-run:
bash apply.sh
apply.sh is idempotent and detects upstream:
- Already patched → skip
- Upstream
responseCompletionSoundshipped → skip + advise uninstall
Known limits
- Anchor:
.chat-group.assistantDOM class. If OpenClaw renames it the patch silently does nothing (fail-quiet, no breakage). - AudioContext requires one user gesture per page load (browser policy).
- Webchat only. TUI / iOS / macOS / Android clients are not covered (they have their own native notification stacks).
- Single audible cue per assistant turn regardless of message length.
File layout
| File | Purpose |
|---|---|
apply.sh |
Detect every OpenClaw install, idempotent inject IIFE, backup, cache-bust |
remove.sh |
Restore from .milly.bak files |
inject/completion-cue.iife.js |
The patch payload |
tests/manual.md |
7-step verify checklist |
Related
- Issue: openclaw/openclaw#69186
- Upstream PR (stop-gap target): openclaw/openclaw#73894
- Sibling skill (same pattern):
agent-tab-title
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install echo-cue - After installation, invoke the skill by name or use
/echo-cue - Provide required inputs per the skill's parameter spec and get structured output
What is Echo?
Patch a locally installed OpenClaw Control UI so that finishing an assistant reply plays a short Web-Audio two-tone "ding-dong" chime in the browser tab. Loc... It is an AI Agent Skill for Claude Code / OpenClaw, with 92 downloads so far.
How do I install Echo?
Run "/install echo-cue" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Echo free?
Yes, Echo is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Echo support?
Echo is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Echo?
It is built and maintained by SymbolStar (@symbolstar); the current version is v0.2.0.