chore: Run pnpm format:fix.

This commit is contained in:
cpojer
2026-01-31 21:13:13 +09:00
parent dcc2de15a6
commit 8cab78abbc
624 changed files with 10729 additions and 7514 deletions
+11 -9
View File
@@ -8,6 +8,7 @@ read_when:
# Uninstall
Two paths:
- **Easy path** if `openclaw` is still installed.
- **Manual service removal** if the CLI is gone but the service is still running.
@@ -28,19 +29,19 @@ npx -y openclaw uninstall --all --yes --non-interactive
Manual steps (same result):
1) Stop the gateway service:
1. Stop the gateway service:
```bash
openclaw gateway stop
```
2) Uninstall the gateway service (launchd/systemd/schtasks):
2. Uninstall the gateway service (launchd/systemd/schtasks):
```bash
openclaw gateway uninstall
```
3) Delete state + config:
3. Delete state + config:
```bash
rm -rf "${OPENCLAW_STATE_DIR:-$HOME/.openclaw}"
@@ -48,13 +49,13 @@ rm -rf "${OPENCLAW_STATE_DIR:-$HOME/.openclaw}"
If you set `OPENCLAW_CONFIG_PATH` to a custom location outside the state dir, delete that file too.
4) Delete your workspace (optional, removes agent files):
4. Delete your workspace (optional, removes agent files):
```bash
rm -rf ~/.openclaw/workspace
```
5) Remove the CLI install (pick the one you used):
5. Remove the CLI install (pick the one you used):
```bash
npm rm -g openclaw
@@ -62,13 +63,14 @@ pnpm remove -g openclaw
bun remove -g openclaw
```
6) If you installed the macOS app:
6. If you installed the macOS app:
```bash
rm -rf /Applications/OpenClaw.app
```
Notes:
- If you used profiles (`--profile` / `OPENCLAW_PROFILE`), repeat step 3 for each state dir (defaults are `~/.openclaw-<profile>`).
- In remote mode, the state dir lives on the **gateway host**, so run steps 1-4 there too.
@@ -120,6 +122,6 @@ Remove it with `npm rm -g openclaw` (or `pnpm remove -g` / `bun remove -g` if yo
If you run from a repo checkout (`git clone` + `openclaw ...` / `bun run openclaw ...`):
1) Uninstall the gateway service **before** deleting the repo (use the easy path above or manual service removal).
2) Delete the repo directory.
3) Remove state + workspace as shown above.
1. Uninstall the gateway service **before** deleting the repo (use the easy path above or manual service removal).
2. Delete the repo directory.
3. Remove state + workspace as shown above.