From claudeclaw
Removes an installed ClaudeClaw extension by validating, reading manifest, confirming, running post-uninstall hooks, deleting the extension directory, rebuilding, and restarting.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claudeclaw:uninstall-extensionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Remove an installed ClaudeClaw extension.
Remove an installed ClaudeClaw extension.
/uninstall slack
/uninstall triage
EXTENSION_NAME="${1}"
EXT_DIR="extensions/claudeclaw-${EXTENSION_NAME}"
[ ! -d "$EXT_DIR" ] && echo "Extension claudeclaw-${EXTENSION_NAME} is not installed." && exit 1
cat "$EXT_DIR/manifest.json"
AskUserQuestion: "Uninstall claudeclaw-? This will remove its skills, agents, and agent skills. The extension's data (groups, messages) is preserved."
If manifest.json has hooks.postUninstall:
chmod +x "$EXT_DIR/hooks/uninstall.sh"
bash "$EXT_DIR/hooks/uninstall.sh" "$(git rev-parse --show-toplevel)"
rm -rf "$EXT_DIR"
npm run build
Restart the service (same as install skill step 8).
Print: "Extension claudeclaw- uninstalled. Data in groups/ and store/ is preserved."
npx claudepluginhub sbusso/claudeclawInstalls ClaudeClaw extensions from GitHub by cloning repos, installing dependencies, compiling TypeScript, running post-install hooks, rebuilding core, and restarting the service.
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.
Uninstalls community skills installed via the hub, with safety checks, confirmation, and audit logging. Refuses to remove first-party plugin skills.