uninstall

uninstall is a command for Claude Code from juuni26/claude-notif-sound. It costs 29 tokens per session (460 once invoked), scanned C, original, MIT.

A command for completely removing the notif-sound plugin, including its running interface, cached files, and optionally its saved settings.

In plain words
What is it for?
Use it to stop the plugin, delete its cache, clean up an empty plugin cache folder, and choose whether to remove saved configuration and data.
Why use it?
It avoids leaving plugin files or cached data behind when the plugin is no longer wanted.

Command for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: reads .claude/ paths.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the notif-sound plugin — 9 commands, 4 hooks shipped together

Good fit Use it to stop the plugin, delete its cache, clean up an empty plugin cache folder, and choose whether to remove saved configuration and data.

Compare 6 commands from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add juuni26/claude-notif-sound
Claude Code
/plugin install notif-sound

Made for: Claude Code.

Or install notif-sound, the plugin that ships this one along with the rest of its 9 commands, 4 hooks.

Wrote 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.

agentmods badge for uninstall

README.md
[![agentmods](https://agentmods.dev/badge/commands/juuni26/claude-notif-sound/uninstall/github.svg)](https://agentmods.dev/commands/juuni26/claude-notif-sound/uninstall)
Your own site
<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.

agentmods 80×15 button for uninstall

Your own site · 80×15
<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>
Per session 29 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 460 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 9d ago against content hash 99a4d81e2f9b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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"
commands/uninstall.md · 52 lines

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.

  1. Stop the GUI server if running:
bash "${CLAUDE_PLUGIN_ROOT}/scripts/gui-server.sh" stop 2>/dev/null; echo "GUI stopped"
  1. Remove the plugin cache directory:
rm -rf ~/.claude/plugins/cache/j26-plugins/notif-sound && echo "Cache removed" || echo "No cache found"
  1. 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"
  1. 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}.

  1. 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)
  2. Present a summary:

    • GUI server: stopped
    • Plugin cache: removed
    • Config/data: removed or kept (based on user choice)
    • Remind them to run /plugin uninstall + /reload-plugins to complete the removal
    • Thank them for using notif-sound!
Changes

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.

  1. 9d ago First seen · 52 lines · 29 tokens per session scan C 99a4d81e2f9b

Subscribe to this mod's changes

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.