Documentation
README
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-? 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)"
This is the opening of the README. Read the full README on GitHub.