Files
openclaw/docs/clawd.md

206 lines
5.7 KiB
Markdown
Raw Normal View History

---
summary: "End-to-end guide for running Clawdis as a personal assistant with safety cautions"
read_when:
- Onboarding a new assistant instance
- Reviewing safety/permission implications
---
2025-12-13 13:25:49 +00:00
<!-- {% raw %} -->
# Building a personal assistant with CLAWDIS (Clawd-style)
2025-12-13 13:25:49 +00:00
CLAWDIS is a WhatsApp + Telegram gateway for **Pi** agents. This guide is the “personal assistant” setup: one dedicated WhatsApp number that behaves like your always-on agent.
2025-12-13 13:25:49 +00:00
## ⚠️ Safety first
2025-12-13 13:25:49 +00:00
Youre putting an agent in a position to:
- run commands on your machine (depending on your Pi tool setup)
- read/write files in your workspace
- send messages back out via WhatsApp/Telegram
2025-12-13 13:25:49 +00:00
Start conservative:
- Always set `inbound.allowFrom` (never run open-to-the-world on your personal Mac).
- Use a dedicated WhatsApp number for the assistant.
- Keep heartbeats disabled until you trust the setup (`heartbeatMinutes: 0`).
2025-12-13 13:25:49 +00:00
## Prerequisites
2025-12-13 13:25:49 +00:00
- Node **22+**
- CLAWDIS available on PATH (recommended during development: from source + global link)
2025-12-13 13:25:49 +00:00
- A second phone number (SIM/eSIM/prepaid) for the assistant
From source (recommended while the npm package is still settling):
```bash
pnpm install
pnpm build
pnpm link --global
```
2025-12-13 13:25:49 +00:00
## The two-phone setup (recommended)
2025-12-13 13:25:49 +00:00
You want this:
```
2025-12-13 13:25:49 +00:00
Your Phone (personal) Second Phone (assistant)
┌─────────────────┐ ┌─────────────────┐
2025-12-13 13:25:49 +00:00
│ Your WhatsApp │ ──────▶ │ Assistant WA │
│ +1-555-YOU │ message │ +1-555-CLAWD │
└─────────────────┘ └────────┬────────┘
│ linked via QR
┌─────────────────┐
│ Your Mac │
2025-12-07 03:36:46 +00:00
│ (clawdis) │
2025-12-13 13:25:49 +00:00
│ Pi agent │
└─────────────────┘
```
2025-12-13 13:25:49 +00:00
If you link your personal WhatsApp to CLAWDIS, every message to you becomes “agent input”. Thats rarely what you want.
2025-12-13 13:25:49 +00:00
## 5-minute quick start
2025-12-13 13:25:49 +00:00
1) Pair WhatsApp Web (shows QR; scan with the assistant phone):
2025-12-13 13:25:49 +00:00
```bash
clawdis login
```
2025-12-13 13:25:49 +00:00
2) Start the Gateway (leave it running):
2025-12-13 13:25:49 +00:00
```bash
clawdis gateway --port 18789
```
2025-12-13 13:25:49 +00:00
3) Start the local WebChat UI (optional, but great for debugging):
2025-12-13 13:25:49 +00:00
```bash
clawdis webchat
```
2025-12-13 13:25:49 +00:00
4) Put a minimal config in `~/.clawdis/clawdis.json`:
```json5
{
inbound: {
2025-12-13 13:25:49 +00:00
allowFrom: ["+15555550123"]
}
}
```
2025-12-13 13:25:49 +00:00
Now message the assistant number from your allowlisted phone.
## Give the agent a workspace (AGENTS.md)
2025-12-17 11:29:12 +01:00
Clawd reads operating instructions and “memory” from its workspace directory.
2025-12-17 11:29:12 +01:00
By default, Clawdis uses `~/clawd` as the agent workspace, and will create it (plus starter `AGENTS.md`, `SOUL.md`, `TOOLS.md`) automatically on setup/first agent run.
Tip: treat this folder like Clawds “memory” and make it a git repo (ideally private) so your `AGENTS.md` + memory files are backed up.
```bash
2025-12-17 11:29:12 +01:00
clawdis setup
```
2025-12-17 11:29:12 +01:00
Optional: choose a different workspace with `inbound.workspace` (supports `~`).
```json5
{
inbound: {
workspace: "~/clawd"
}
}
```
2025-12-13 13:25:49 +00:00
## The config that turns it into “an assistant”
2025-12-17 11:29:12 +01:00
CLAWDIS defaults to a good assistant setup, but youll usually want to tune:
- persona/instructions in `SOUL.md`
2025-12-13 13:25:49 +00:00
- thinking defaults (if desired)
- heartbeats (once you trust it)
2025-12-13 13:25:49 +00:00
Example:
```json5
{
2025-12-13 13:25:49 +00:00
logging: { level: "info" },
inbound: {
2025-12-13 13:25:49 +00:00
allowFrom: ["+15555550123"],
2025-12-17 11:29:12 +01:00
workspace: "~/clawd",
2025-12-13 13:25:49 +00:00
groupChat: {
requireMention: true,
mentionPatterns: ["@clawd", "clawd"]
},
2025-12-17 11:29:12 +01:00
agent: {
provider: "anthropic",
model: "claude-opus-4-5",
thinkingDefault: "high",
2025-12-13 13:25:49 +00:00
timeoutSeconds: 1800,
// Start with 0; enable later.
heartbeatMinutes: 0
2025-12-17 11:29:12 +01:00
},
session: {
scope: "per-sender",
resetTriggers: ["/new"],
idleMinutes: 10080,
mainKey: "main"
}
}
}
```
2025-12-13 13:25:49 +00:00
## Sessions and memory
2025-12-13 13:25:49 +00:00
- Session files: `~/.clawdis/sessions/{{SessionId}}.jsonl`
- Session metadata (token usage, last route, etc): `~/.clawdis/sessions/sessions.json` (legacy: `~/.clawdis/sessions.json`)
2025-12-13 13:25:49 +00:00
- `/new` starts a fresh session for that chat (configurable via `resetTriggers`)
2025-12-13 13:25:49 +00:00
## Heartbeats (proactive mode)
2025-12-17 11:29:12 +01:00
When `inbound.agent.heartbeatMinutes > 0`, CLAWDIS periodically runs a heartbeat prompt (default: `HEARTBEAT`).
2025-12-13 13:25:49 +00:00
- If the agent replies with `HEARTBEAT_OK` (exact token), CLAWDIS suppresses outbound delivery for that heartbeat.
```json5
{
inbound: {
2025-12-17 11:29:12 +01:00
agent: {
heartbeatMinutes: 30
}
}
}
```
2025-12-13 13:25:49 +00:00
## Media in and out
2025-12-13 13:25:49 +00:00
Inbound attachments (images/audio/docs) can be surfaced to your command via templates:
- `{{MediaPath}}` (local temp file path)
- `{{MediaUrl}}` (pseudo-URL)
- `{{Transcript}}` (if audio transcription is enabled)
2025-12-13 13:25:49 +00:00
Outbound attachments from the agent: include `MEDIA:<path-or-url>` on its own line (no spaces). Example:
```
2025-12-13 13:25:49 +00:00
Heres the screenshot.
MEDIA:/tmp/screenshot.png
```
2025-12-13 13:25:49 +00:00
CLAWDIS extracts these and sends them as media alongside the text.
2025-12-13 13:25:49 +00:00
## Operations checklist
```bash
2025-12-13 13:25:49 +00:00
clawdis status # local status (creds, sessions, queued events)
clawdis status --deep # also probes the running Gateway (WA connect + Telegram)
clawdis health --json # gateway health snapshot (WS)
```
2025-12-13 13:25:49 +00:00
Logs live under `/tmp/clawdis/` (default: `clawdis-YYYY-MM-DD.log`).
2025-12-13 13:25:49 +00:00
## Next steps
2025-12-13 13:25:49 +00:00
- WebChat: [WebChat](./webchat.md)
- Gateway ops: [Gateway runbook](./gateway.md)
- Cron + wakeups: [Cron + wakeups](./cron.md)
- macOS menu bar companion: [Clawdis macOS app](./clawdis-mac.md)
- Security: [Security](./security.md)
<!-- {% endraw %} -->