refactor: rename clawdbot to moltbot with legacy compat

This commit is contained in:
Peter Steinberger
2026-01-27 12:19:58 +00:00
parent 83460df96f
commit 6d16a658e5
1839 changed files with 11250 additions and 11199 deletions

View File

@@ -14,8 +14,8 @@ Native Linux companion apps are planned. Contributions are welcome if you want t
## Beginner quick path (VPS)
1) Install Node 22+
2) `npm i -g clawdbot@latest`
3) `clawdbot onboard --install-daemon`
2) `npm i -g moltbot@latest`
3) `moltbot onboard --install-daemon`
4) From your laptop: `ssh -N -L 18789:127.0.0.1:18789 <user>@<host>`
5) Open `http://127.0.0.1:18789/` and paste your token
@@ -35,19 +35,19 @@ Step-by-step VPS guide: [exe.dev](/platforms/exe-dev)
Use one of these:
```
clawdbot onboard --install-daemon
moltbot onboard --install-daemon
```
Or:
```
clawdbot gateway install
moltbot gateway install
```
Or:
```
clawdbot configure
moltbot configure
```
Select **Gateway service** when prompted.
@@ -55,26 +55,26 @@ Select **Gateway service** when prompted.
Repair/migrate:
```
clawdbot doctor
moltbot doctor
```
## System control (systemd user unit)
Clawdbot installs a systemd **user** service by default. Use a **system**
Moltbot installs a systemd **user** service by default. Use a **system**
service for shared or always-on servers. The full unit example and guidance
live in the [Gateway runbook](/gateway).
Minimal setup:
Create `~/.config/systemd/user/clawdbot-gateway[-<profile>].service`:
Create `~/.config/systemd/user/moltbot-gateway[-<profile>].service`:
```
[Unit]
Description=Clawdbot Gateway (profile: <profile>, v<version>)
Description=Moltbot Gateway (profile: <profile>, v<version>)
After=network-online.target
Wants=network-online.target
[Service]
ExecStart=/usr/local/bin/clawdbot gateway --port 18789
ExecStart=/usr/local/bin/moltbot gateway --port 18789
Restart=always
RestartSec=5
@@ -85,5 +85,5 @@ WantedBy=default.target
Enable it:
```
systemctl --user enable --now clawdbot-gateway[-<profile>].service
systemctl --user enable --now moltbot-gateway[-<profile>].service
```