docs: recommend global install and daemon onboarding

This commit is contained in:
Peter Steinberger
2026-01-08 09:59:10 +01:00
parent bfd3eb46c7
commit 712cfa94aa
4 changed files with 107 additions and 73 deletions

View File

@@ -23,13 +23,22 @@ Start conservative:
## Prerequisites
- Node **22+**
- CLAWDBOT available on PATH (recommended during development: from source + global link)
- CLAWDBOT available on PATH (recommended: global install)
- A second phone number (SIM/eSIM/prepaid) for the assistant
From source (recommended while the npm package is still settling):
```bash
pnpm add -g clawdbot@latest
# or: npm install -g clawdbot@latest
```
From source (development):
```bash
git clone https://github.com/clawdbot/clawdbot.git
cd clawdbot
pnpm install
pnpm ui:install
pnpm ui:build
pnpm build
pnpm link --global
```