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…
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.
/uninstall-extensionContext preview
The summary Claude sees to decide when to auto-load this skill.
Uninstall a ClaudeClaw extension
name: uninstall-extension description: Uninstall a ClaudeClaw extension trigger: /uninstall <name>
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 1cat "$EXT_DIR/manifest.json"
AskUserQuestion: "Uninstall claudeclaw-<name>? 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-<name> uninstalled. Data in groups/ and store/ is preserved."
Repo: sbusso/claudeclaw
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…
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…
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…
Add image vision to ClaudeClaw agents. Resizes and processes WhatsApp image attachments, then sends them to Claude as multimodal content blocks.
Add Ollama MCP server so the container agent can call local models for cheaper/faster tasks like summarization, translation, or general queries.