Openclaw uninstall
OpenClaw 完全卸载工具 - 跨平台清理 CLI、配置文件、工作区数据,支持 macOS/Linux/Windows
npx -y skills add billLiao/openclaw-uninstallAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 5 stars5 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Cross-platform uninstall script for OpenClaw. Completely removes OpenClaw CLI and all residual files. Use when: (1) User wants to completely remove OpenClaw, (2) Cleaning up OpenClaw installation, (3) Uninstalling OpenClaw CLI (npm/pnpm/bun), (4) Removing OpenClaw desktop app (macOS), (5) Cleaning all OpenClaw data directories and config files.
SKILL.md
1.9 KB, 442 tokens by cl100k_base, as published. Nobody here has run it
OpenClaw Uninstall
Downloads and executes the uninstall script to completely remove OpenClaw from the system.
Quick Start
curl -fsSL https://raw.githubusercontent.com/billLiao/openclaw-uninstall/main/uninstall.sh | bash
Or run locally after downloading:
chmod +x uninstall.sh && ./uninstall.sh
What Gets Removed
CLI (auto-detected)
- npm:
npm uninstall -g openclaw - pnpm:
pnpm remove -g openclaw - bun:
bun pm rm -g openclaw
Data Directories
~/.openclaw~/.config/openclaw~/.local/share/openclaw~/openclaw-workspace
Config Files
~/.openclawrc~/.openclaw-config~/.openclaw.json
macOS Specific
/Applications/OpenClaw.app~/Library/LaunchAgents/com.openclaw.daemon.plist
Platform Support
| Platform | Script | Command |
|---|---|---|
| Linux / macOS / WSL / MCP | .sh | curl -fsSL https://raw.githubusercontent.com/billLiao/openclaw-uninstall/main/uninstall.sh | bash |
| Windows (CMD) | .bat | curl -fsSL https://raw.githubusercontent.com/billLiao/openclaw-uninstall/main/uninstall.bat -o uninstall.bat && uninstall.bat |
| Windows (PowerShell) | .ps1 | irm https://raw.githubusercontent.com/billLiao/openclaw-uninstall/main/uninstall.ps1 | iex |
Platform Details
- macOS: Full support (CLI + app + LaunchAgent)
- Linux: Full support (CLI + data directories)
- Windows CMD: Use
uninstall.bat - Windows PowerShell: Use
uninstall.ps1
Warning
This action is irreversible. Make sure to backup any important data before running.
What ships with it: 6 files
18.0 KB alongside SKILL.md, 3 of them executable
- .gitignore151 B
- README-en.md2.0 KB
- README.md2.0 KB
- uninstall.batruns3.0 KB
- uninstall.ps1runs3.8 KB
- uninstall.shruns7.0 KB