docs: replace moltbot with clawdbot in README

This commit is contained in:
Jialiang Fan 2026-01-27 10:43:12 -05:00
parent e4518d2271
commit 06e1c1d263

View File

@ -43,14 +43,14 @@ Model note: while any model is supported, I strongly recommend **Anthropic Pro/M
Runtime: **Node ≥22**. Runtime: **Node ≥22**.
```bash ```bash
npm install -g moltbot@latest npm install -g clawdbot@latest
# or: pnpm add -g moltbot@latest # or: pnpm add -g clawdbot@latest
moltbot onboard --install-daemon clawdbot onboard --install-daemon
``` ```
The wizard installs the Gateway daemon (launchd/systemd user service) so it stays running. The wizard installs the Gateway daemon (launchd/systemd user service) so it stays running.
Legacy note: `clawdbot` remains available as a compatibility shim. Legacy note: `moltbot` remains available as a compatibility shim.
## Quick start (TL;DR) ## Quick start (TL;DR)
@ -59,18 +59,18 @@ Runtime: **Node ≥22**.
Full beginner guide (auth, pairing, channels): [Getting started](https://docs.molt.bot/start/getting-started) Full beginner guide (auth, pairing, channels): [Getting started](https://docs.molt.bot/start/getting-started)
```bash ```bash
moltbot onboard --install-daemon clawdbot onboard --install-daemon
moltbot gateway --port 18789 --verbose clawdbot gateway --port 18789 --verbose
# Send a message # Send a message
moltbot message send --to +1234567890 --message "Hello from Moltbot" clawdbot message send --to +1234567890 --message "Hello from Clawdbot"
# Talk to the assistant (optionally deliver back to any connected channel: WhatsApp/Telegram/Slack/Discord/Google Chat/Signal/iMessage/BlueBubbles/Microsoft Teams/Matrix/Zalo/Zalo Personal/WebChat) # Talk to the assistant (optionally deliver back to any connected channel: WhatsApp/Telegram/Slack/Discord/Google Chat/Signal/iMessage/BlueBubbles/Microsoft Teams/Matrix/Zalo/Zalo Personal/WebChat)
moltbot agent --message "Ship checklist" --thinking high clawdbot agent --message "Ship checklist" --thinking high
``` ```
Upgrading? [Updating guide](https://docs.molt.bot/install/updating) (and run `moltbot doctor`). Upgrading? [Updating guide](https://docs.molt.bot/install/updating) (and run `clawdbot doctor`).
## Development channels ## Development channels
@ -93,13 +93,13 @@ pnpm install
pnpm ui:build # auto-installs UI deps on first run pnpm ui:build # auto-installs UI deps on first run
pnpm build pnpm build
pnpm moltbot onboard --install-daemon pnpm clawdbot onboard --install-daemon
# Dev loop (auto-reload on TS changes) # Dev loop (auto-reload on TS changes)
pnpm gateway:watch pnpm gateway:watch
``` ```
Note: `pnpm moltbot ...` runs TypeScript directly (via `tsx`). `pnpm build` produces `dist/` for running via Node / the packaged `moltbot` binary. Note: `pnpm clawdbot ...` runs TypeScript directly (via `tsx`). `pnpm build` produces `dist/` for running via Node / the packaged `clawdbot` binary.
## Security defaults (DM access) ## Security defaults (DM access)