install
source · Clone the upstream repo
git clone https://github.com/sbusso/claudeclaw
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sbusso/claudeclaw "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/uninstall-extension" ~/.claude/skills/sbusso-claudeclaw-uninstall-extension && rm -rf "$T"
manifest:
skills/uninstall-extension/SKILL.mdsource content
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 1
2. 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."