/uninstall-extension
Uninstall a ClaudeClaw extension
$ npx -y skills add sbusso/claudeclaw --skill uninstall-extension --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/uninstall-extension
Context preview
The summary Claude sees to decide when to auto-load this skill.
Uninstall a ClaudeClaw extension
SKILL.md
uninstall-extension.SKILL.mdname: uninstall-extension description: Uninstall a ClaudeClaw extension trigger: /uninstall <name>
Uninstall Extension
Remove an installed ClaudeClaw extension.
Usage
/uninstall slack /uninstall triage
Flow
1. Validate
EXTENSION_NAME="${1}"
EXT_DIR="extensions/claudeclaw-${EXTENSION_NAME}"
[ ! -d "$EXT_DIR" ] && echo "Extension claudeclaw-${EXTENSION_NAME} is not installed." && exit 12. Read manifest
cat "$EXT_DIR/manifest.json"
3. Confirm with user
AskUserQuestion: "Uninstall claudeclaw-<name>? This will remove its skills, agents, and agent skills. The extension's data (groups, messages) is preserved."
4. Run post-uninstall hook
If `manifest.json` has `hooks.postUninstall`:
chmod +x "$EXT_DIR/hooks/uninstall.sh" bash "$EXT_DIR/hooks/uninstall.sh" "$(git rev-parse --show-toplevel)"
5. Remove extension directory
rm -rf "$EXT_DIR"
6. Rebuild and restart
npm run build
Restart the service (same as install skill step 8).
7. Confirm
Print: "Extension claudeclaw-<name> uninstalled. Data in groups/ and store/ is preserved."
Repo: sbusso/claudeclaw
Other skills on claudeclaw.
- /agent-browser
Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks.
Open skill - /add-compact
Add /compact command for manual context compaction. Solves context rot in long sessions by forwarding the SDK's built-in /compact slash command. Main-group or trusted sender only.
Open skill - /add-discord
Add Discord bot channel integration to ClaudeClaw.
Open skill - /add-gmail
Add Gmail integration to ClaudeClaw. Can be configured as a tool (agent reads/sends emails when triggered from WhatsApp) or as a full channel (emails can trigger the agent, schedule tasks, and receive replies). Guides through GCP OAuth setup and implements the integration.
Open skill - /add-image-vision
Add image vision to ClaudeClaw agents. Resizes and processes WhatsApp image attachments, then sends them to Claude as multimodal content blocks.
Open skill - /add-ollama-tool
Add Ollama MCP server so the container agent can call local models for cheaper/faster tasks like summarization, translation, or general queries.
Open skill

