From pith
Uninstalls Pith from Claude Code by removing hooks, slash commands, and cleaning settings.json entries. Use via /pith uninstall or removal requests. Preserves token history unless full wipe requested.
npx claudepluginhub abhisekjha/pith --plugin pithThis skill uses the workspace's default tool permissions.
- User runs `/pith uninstall`
Installs Pith plugin into Claude Code by copying hooks, patching settings.json, registering /pith /budget /focus slash commands, and recording plugin root path. Activates on /pith install or setup queries.
Uninstalls ClaudeClaw extensions via /uninstall <name> command. Validates, confirms with user, runs post-uninstall hooks, removes directories, rebuilds, and restarts while preserving data.
Safely removes Claude Code plugin assets (skills/agents/rules/scripts/hooks) via /safe-remove by resolving targets, detecting dependencies with grep scans, classifying blockers/patchables, patching references, and verifying cleanup.
Share bugs, ideas, or general feedback.
/pith uninstallBefore running, ask once:
This will remove:
• ~/.claude/hooks/pith/ (all hook scripts)
• ~/.claude/commands/pith.md, budget.md, focus.md
• pith entries in ~/.claude/settings.json
Your project wikis (wiki/) and token history (~/.pith/) are NOT deleted.
Proceed? (yes / no)
If user says no, stop. If yes, continue.
Locate the pith directory (same logic as pith-install step 1), then:
bash "<pith_dir>/uninstall.sh"
Stream the output so user sees each item removed.
# Hooks gone
ls ~/.claude/hooks/pith/ 2>/dev/null && echo "STILL EXISTS" || echo "removed ok"
# Slash commands gone
ls ~/.claude/commands/ | grep -E "pith|budget|focus" 2>/dev/null && echo "STILL EXISTS" || echo "removed ok"
# Settings clean
node -e "const s=require(require('os').homedir()+'/.claude/settings.json'); const h=JSON.stringify(s.hooks||''); console.log(h.includes('pith')?'pith still in hooks':'hooks clean'); console.log(s.statusLine?'statusLine still set':'statusLine clean')"
If the user said "remove everything" or "wipe all data", also run:
rm -rf ~/.pith
rm -f ~/.config/pith/config.json
Warn first: "This deletes your lifetime token savings history. Are you sure?"
Pith uninstalled.
Removed:
✓ hooks (session-start, post-tool-use, prompt-submit, stop)
✓ slash commands (/pith, /budget, /focus)
✓ settings.json entries
Preserved:
• wiki/ directories in your projects
• ~/.pith/state.json (token history)
To reinstall: /pith install
| Error | Fix |
|---|---|
uninstall.sh not found | Run the node cleanup inline: remove ~/.claude/hooks/pith, delete command files, patch settings manually |
settings.json malformed | Show the file, offer to remove pith keys manually |
| Hook files already missing | Skip silently, still clean settings.json |
One-shot. Does not persist.