Plugin directory / Developer / dsh-done
dsh-done
Unverified mba1398
What it does
A plugin in the Developer category for DeepSeek Harness.
Unverified — not yet verified
A plugin in the Developer category for DeepSeek Harness. Not yet verified — install and test it yourself.
“Unverified” means our automated CI has not yet installed this plugin. Feature descriptions and version compatibility are the author’s claims. This is not a security audit and not an endorsement of third-party code.
README
dsh-done
Task completion celebration popup with sound for DeepSeek Harness.
When an agent finishes a task (status goes running → idle), a celebratory
popup appears in the page (confetti + fanfare), then auto-dismisses.
Features
- 🎉 Popup overlay in the
shell.overlayslot when a task completes - 🎊 Confetti animation + bounce-in
- 🔊 Web Audio fanfare (ascending C5-E5-G5-C6), no external audio file
- ⏳ Auto-closes after ~3.2 s
- 🎲 Random encouraging message on each completion
Install
dsh plugin --profile web add dsh-done
or from a local checkout:
dsh plugin --profile web add /path/to/dsh-done
Then restart the profile.
Build (for contributors)
pnpm install
pnpm run build # tsc (host) + tsdown (client bundle)
pnpm publish
- Host entry:
src/index.ts→lib/index.js - Client bundle:
src/client/index.tsx→lib/client.js
Publish / distribute
- Publish to npm, then tag the GitHub repo with the
dsh-plugintopic so
DSH users can discover it. - To appear in the marketplace lists, open a PR in the relevant community
curated list (e.g. awesome-dsh-plugin-series repositories).
How it works
- Host (
src/index.ts): listens toagent/status; when status isidle,
records the completion timestamp. Exposescelebration/checkRPC. - Client (
src/client/index.tsx): pollscelebration/checkevery 500 ms;
on a fresh completion, shows the popup inshell.overlay.
Runtime adaptation (important)
This plugin installs as a static bundle (loaded by the Loader via{id, name}), so it uses the webServer route scheme for Host↔Client
communication — the harness/host bridge only exists inside the dynamic
Cordis plugin sandbox and is not present on a static bundle's ctx:
- Host (
src/index.ts):inject: ['webServer'], registers theGET /dsh-done/checkroute viactx.effect(() => ctx.webServer.register({ kind: 'exact', path: '/dsh-done/check', handler })). - Client (
src/client/index.tsx): pollsfetch('/dsh-done/check?since=…')
every 500 ms; on a fresh completion, shows the popup inshell.overlay, and
also registers asidebar.footer.actionentry (🎉 manual trigger button).
Restart the profile after installing so the host route registers; the client
bundle is served dynamically by dsh-client-modules, so a page refresh picks
it up.
License
MIT
Install
Install the catalog once, then DeepSeek Harness can find and install any plugin from this site automatically:
dsh plugin add dshbase-catalog Then say "install dsh-done for me" — your agent finds it in the directory and installs it. Docs: dshbase-catalog · verified packs.
This plugin is GitHub source (not published to npm) — install it straight from the repo:
Web profile:
dsh plugin --profile web add github:mba1398/dsh-done Headless (CLI) profile:
dsh plugin --profile headless add github:mba1398/dsh-done Test report
Not yet L3-verified — see failure note below if we already ran it.
2026-08-27 · flagged webonly Note: 验证: web-only;待 L4 web CDP;L4 web CDP runtime-fail on dsh 0.1.0-rc.8. Browse all pending failures →