This commit is contained in:
hcl 2026-01-30 03:19:26 +00:00 committed by GitHub
commit b63a95b497
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 16 additions and 4 deletions

View File

@ -50,7 +50,14 @@ moltbot onboard --install-daemon
```
The wizard installs the Gateway daemon (launchd/systemd user service) so it stays running.
Legacy note: `clawdbot` remains available as a compatibility shim.
Both `moltbot` and `clawdbot` should be available after a correct install. If `moltbot: command not found`, try:
```bash
clawdbot --version # fallback compatibility shim
```
If neither works, see [PATH troubleshooting](https://docs.molt.bot/install/node).
## Quick start (TL;DR)

View File

@ -29,7 +29,7 @@ moltbot status --deep
### `moltbot: command not found`
Almost always a Node/npm PATH issue. Start here:
First try `clawdbot` (compatibility shim). If that also fails, it's almost always a Node/npm PATH issue. Start here:
- [Install (Node/npm PATH sanity)](/install#nodejs--npm-path-sanity)

View File

@ -106,6 +106,7 @@ npm install -g moltbot@latest
# or: pnpm add -g moltbot@latest
# Onboard + install the service (launchd/systemd user service)
# If "moltbot: command not found", try clawdbot (compatibility shim)
moltbot onboard --install-daemon
# Pair WhatsApp Web (shows QR)

View File

@ -27,6 +27,8 @@ Next step (if you skipped onboarding):
moltbot onboard --install-daemon
```
**Troubleshooting**: If `moltbot` is not found, try `clawdbot` (compatibility shim) or see [PATH troubleshooting](/install/node).
## System requirements
- **Node >=22**

View File

@ -26,7 +26,7 @@ Windows (PowerShell) help:
& ([scriptblock]::Create((iwr -useb https://molt.bot/install.ps1))) -?
```
If the installer completes but `moltbot` is not found in a new terminal, its usually a Node/npm PATH issue. See: [Install](/install#nodejs--npm-path-sanity).
If the installer completes but `moltbot` is not found in a new terminal, try `clawdbot` (compatibility shim). If neither works, it's usually a Node/npm PATH issue. See: [Install](/install#nodejs--npm-path-sanity).
## install.sh (recommended)

View File

@ -11,7 +11,7 @@ read_when:
Moltbots runtime baseline is **Node 22+**.
If you can run `npm install -g moltbot@latest` but later see `moltbot: command not found`, its almost always a **PATH** issue: the directory where npm puts global binaries isnt on your shells PATH.
If you can run `npm install -g moltbot@latest` but later see `moltbot: command not found`, first try `clawdbot` (compatibility shim). If that also fails, it's almost always a **PATH** issue: the directory where npm puts global binaries isn't on your shell's PATH.
## Quick diagnosis

View File

@ -75,6 +75,8 @@ npm install -g moltbot@latest
pnpm add -g moltbot@latest
```
If `moltbot: command not found`, try `clawdbot` (compatibility shim) or see [PATH troubleshooting](/install/node).
## 2) Run the onboarding wizard (and install the service)
```bash