From pith
Uninstalls Pith from Claude Code: removes hooks, slash commands (/pith, /budget, /focus), and cleans settings.json pith entries. Preserves ~/.pith/state.json unless full wipe requested.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pith:pith-uninstallThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- User runs `/pith uninstall`
/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.
npx claudepluginhub abhisekjha/pith --plugin pithInstalls Pith into Claude Code by copying hooks, patching settings.json, registering /pith /budget /focus slash commands, and recording plugin root. Use for /pith install or setup queries.
Removes an installed ClaudeClaw extension by validating, reading manifest, confirming, running post-uninstall hooks, deleting the extension directory, rebuilding, and restarting.
Removes the yet-another-statusline statusLine config from settings.json and deletes runtime state. Run before or after `claude plugin uninstall yas` to fully disable the statusline.