Files
openclaw/docs/start/setup.md

132 lines
3.7 KiB
Markdown
Raw Normal View History

2026-01-01 15:43:15 +01:00
---
2026-01-04 14:32:47 +00:00
summary: "Setup guide: keep your Clawdbot setup tailored while staying up-to-date"
2026-01-01 15:43:15 +01:00
read_when:
- Setting up a new machine
- You want “latest + greatest” without breaking your personal setup
---
# Setup
Last updated: 2026-01-01
## TL;DR
2026-01-04 14:32:47 +00:00
- **Tailoring lives outside the repo:** `~/clawd` (workspace) + `~/.clawdbot/clawdbot.json` (config).
2026-01-01 15:43:15 +01:00
- **Stable workflow:** install the macOS app; let it run the bundled Gateway.
- **Bleeding edge workflow:** run the Gateway yourself via `pnpm gateway:watch`, then let the macOS app attach in Local mode.
2026-01-01 15:43:15 +01:00
## Prereqs (from source)
- Node `>=22`
- `pnpm`
2026-01-10 14:51:21 -06:00
- Docker (optional; only for containerized setup/e2e — see [Docker](/install/docker))
2026-01-01 15:43:15 +01:00
## Tailoring strategy (so updates dont hurt)
If you want “100% tailored to me” *and* easy updates, keep your customization in:
2026-01-04 14:32:47 +00:00
- **Config:** `~/.clawdbot/clawdbot.json` (JSON/JSON5-ish)
2026-01-01 15:43:15 +01:00
- **Workspace:** `~/clawd` (skills, prompts, memories; make it a private git repo)
Bootstrap once:
```bash
2026-01-04 14:32:47 +00:00
clawdbot setup
2026-01-01 15:43:15 +01:00
```
From inside this repo, use the local CLI entry:
```bash
2026-01-20 07:42:21 +00:00
clawdbot setup
2026-01-01 15:43:15 +01:00
```
2026-01-20 07:42:21 +00:00
If you dont have a global install yet, run it via `pnpm clawdbot setup`.
2026-01-01 15:43:15 +01:00
## Stable workflow (macOS app first)
2026-01-04 14:32:47 +00:00
1) Install + launch **Clawdbot.app** (menu bar).
2026-01-01 15:43:15 +01:00
2) Complete the onboarding/permissions checklist (TCC prompts).
3) Ensure Gateway is **Local** and running (the app manages it).
4) Link surfaces (example: WhatsApp):
```bash
clawdbot channels login
2026-01-01 15:43:15 +01:00
```
5) Sanity check:
```bash
2026-01-04 14:32:47 +00:00
clawdbot health
2026-01-01 15:43:15 +01:00
```
2026-01-08 23:06:56 +01:00
If onboarding is not available in your build:
- Run `clawdbot setup`, then `clawdbot channels login`, then start the Gateway manually (`clawdbot gateway`).
2026-01-01 15:43:15 +01:00
## Bleeding edge workflow (Gateway in a terminal)
Goal: work on the TypeScript Gateway, get hot reload, keep the macOS app UI attached.
### 0) (Optional) Run the macOS app from source too
If you also want the macOS app on the bleeding edge:
```bash
./scripts/restart-mac.sh
```
### 1) Start the dev Gateway
```bash
pnpm install
pnpm gateway:watch
```
2026-01-08 23:06:56 +01:00
`gateway:watch` runs the gateway in watch mode and reloads on TypeScript changes.
2026-01-01 15:43:15 +01:00
### 2) Point the macOS app at your running Gateway
2026-01-04 14:32:47 +00:00
In **Clawdbot.app**:
2026-01-01 15:43:15 +01:00
- Connection Mode: **Local**
The app will attach to the running gateway on the configured port.
2026-01-01 15:43:15 +01:00
### 3) Verify
- In-app Gateway status should read **“Using existing gateway …”**
- Or via CLI:
```bash
2026-01-20 07:42:21 +00:00
clawdbot health
2026-01-01 15:43:15 +01:00
```
### Common footguns
- **Wrong port:** Gateway WS defaults to `ws://127.0.0.1:18789`; keep app + CLI on the same port.
- **Where state lives:**
2026-01-04 14:32:47 +00:00
- Credentials: `~/.clawdbot/credentials/`
2026-01-06 21:29:41 +00:00
- Sessions: `~/.clawdbot/agents/<agentId>/sessions/`
- Logs: `/tmp/clawdbot/`
2026-01-01 15:43:15 +01:00
## Updating (without wrecking your setup)
2026-01-04 14:32:47 +00:00
- Keep `~/clawd` and `~/.clawdbot/` as “your stuff”; dont put personal prompts/config into the `clawdbot` repo.
2026-01-01 15:43:15 +01:00
- Updating source: `git pull` + `pnpm install` (when lockfile changed) + keep using `pnpm gateway:watch`.
## Linux (systemd user service)
Linux installs use a systemd **user** service. By default, systemd stops user
services on logout/idle, which kills the Gateway. Onboarding attempts to enable
lingering for you (may prompt for sudo). If its still off, run:
```bash
sudo loginctl enable-linger $USER
```
For always-on or multi-user servers, consider a **system** service instead of a
2026-01-10 14:51:21 -06:00
user service (no lingering needed). See [Gateway runbook](/gateway) for the systemd notes.
2026-01-01 15:43:15 +01:00
## Related docs
2026-01-10 14:51:21 -06:00
- [Gateway runbook](/gateway) (flags, supervision, ports)
- [Gateway configuration](/gateway/configuration) (config schema + examples)
- [Discord](/channels/discord) and [Telegram](/channels/telegram) (reply tags + replyToMode settings)
2026-01-10 14:51:21 -06:00
- [Clawdbot assistant setup](/start/clawd)
- [macOS app](/platforms/macos) (gateway lifecycle)