Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add juuni26/claude-notif-sound/plugin install notif-soundWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/juuni26/claude-notif-sound/uninstall)<a href="https://agentmods.dev/commands/juuni26/claude-notif-sound/uninstall"><img src="https://agentmods.dev/badge/commands/juuni26/claude-notif-sound/uninstall/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/juuni26/claude-notif-sound/uninstall"><img src="https://agentmods.dev/badge/commands/juuni26/claude-notif-sound/uninstall.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00029 | $0.00460 |
| Opus 5 | $0.00015 | $0.00230 |
| Sonnet 5 | $0.00006 | $0.00092 |
| Haiku 4.5 | $0.00003 | $0.00046 |
Grade C, and why
uninstall scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf ~/.claude/plugins/cache/j26-plugins/notif-sound && echo "Cache removed" || echo "No cache found" What it actually says
Uninstall Plugin
Cleanly remove the notif-sound plugin and all its files.
IMPORTANT: Before running any steps, ask the user to confirm they want to uninstall. Tell them this will:
- Stop the GUI server if running
- Remove all cached plugin files
- Optionally remove saved config and data
Only proceed if the user confirms.
- Stop the GUI server if running:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/gui-server.sh" stop 2>/dev/null; echo "GUI stopped"
- Remove the plugin cache directory:
rm -rf ~/.claude/plugins/cache/j26-plugins/notif-sound && echo "Cache removed" || echo "No cache found"
- Check if the marketplace directory is now empty, and clean it up if so:
[ -d ~/.claude/plugins/cache/j26-plugins ] && [ -z "$(ls -A ~/.claude/plugins/cache/j26-plugins 2>/dev/null)" ] && rm -rf ~/.claude/plugins/cache/j26-plugins && echo "Marketplace cache cleaned" || echo "Marketplace cache has other plugins, kept"
- Ask the user if they also want to remove their saved config (volume settings). If yes:
rm -rf "${CLAUDE_PLUGIN_DATA}" && echo "Config removed" || echo "No config found"
If no, skip this step and tell them their config is kept at ${CLAUDE_PLUGIN_DATA}.
-
Tell the user to run these two commands to finish:
/plugin→ select notif-sound → uninstall (to remove plugin registration)/reload-plugins(to refresh the plugin list)
-
Present a summary:
- GUI server: stopped
- Plugin cache: removed
- Config/data: removed or kept (based on user choice)
- Remind them to run
/pluginuninstall +/reload-pluginsto complete the removal - Thank them for using notif-sound!
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 52 lines · 29 tokens per session scan C 99a4d81e2f9b
uninstall is a command published in the GitHub repository juuni26/claude-notif-sound (2 stars, last pushed 5mo ago), licensed MIT. It adds 29 tokens to every session and 460 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
skill-refresh
You are running inside a headless Claude Code session in the neo4j-skills repository. Goal: scan Neo4j release notes and deprecation pages, then update any SKILL.md and references/ files that are stale, outdated, or missing new features. Open no PRs or commits — output only file edits. The workflow will handle git and…
brand-setup
Configure a new brand profile with colors, fonts, logo, visual style, platforms, and compliance rules.
screens
Structures product UX screen design — inventory, flow, states, and reusable briefs for external design tools — without generating pixels or UI code.
review
Cold re-quiz on code that already shipped — your own session commits, not the change in front of you.
qa
Smoke or browser-walk a running app. Report only. Do not implement. Do not merge.
clean-check
Analyze code for cleanliness issues (unused code, comment quality, formatting, naming, complexity). Delegates to the code-cleanliness agent.