Building a personal assistant with CLAWDBOT (Clawd-style)
CLAWDBOT is a WhatsApp + Telegram + Discord gateway for Pi agents. This guide is the “personal assistant” setup: one dedicated WhatsApp number that behaves like your always-on agent.⚠️ Safety first
You’re 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/Discord
- Always set
whatsapp.allowFrom(never run open-to-the-world on your personal Mac). - Use a dedicated WhatsApp number for the assistant.
- Heartbeats now default to every 30 minutes. Disable until you trust the setup by setting
agent.heartbeat.every: "0m".
Prerequisites
- Node 22+
- CLAWDBOT available on PATH (recommended: global install)
- A second phone number (SIM/eSIM/prepaid) for the assistant
The two-phone setup (recommended)
You want this:5-minute quick start
- Pair WhatsApp Web (shows QR; scan with the assistant phone):
- Start the Gateway (leave it running):
- Put a minimal config in
~/.clawdbot/clawdbot.json:
Give the agent a workspace (AGENTS)
Clawd reads operating instructions and “memory” from its workspace directory. By default, Clawdbot uses~/clawd as the agent workspace, and will create it (plus starter AGENTS.md, SOUL.md, TOOLS.md, IDENTITY.md, USER.md) automatically on setup/first agent run. BOOTSTRAP.md is only created when the workspace is brand new (it should not come back after you delete it).
Tip: treat this folder like Clawd’s “memory” and make it a git repo (ideally private) so your AGENTS.md + memory files are backed up.
docs/agent-workspace.md
Optional: choose a different workspace with agent.workspace (supports ~).
The config that turns it into “an assistant”
CLAWDBOT defaults to a good assistant setup, but you’ll usually want to tune:- persona/instructions in
SOUL.md - thinking defaults (if desired)
- heartbeats (once you trust it)
Sessions and memory
- Session files:
~/.clawdbot/agents/<agentId>/sessions/{{SessionId}}.jsonl - Session metadata (token usage, last route, etc):
~/.clawdbot/agents/<agentId>/sessions/sessions.json(legacy:~/.clawdbot/sessions/sessions.json) /newor/resetstarts a fresh session for that chat (configurable viaresetTriggers). If sent alone, the agent replies with a short hello to confirm the reset./compact [instructions]compacts the session context and reports the remaining context budget.
Heartbeats (proactive mode)
By default, CLAWDBOT runs a heartbeat every 30 minutes with the prompt:Read HEARTBEAT.md if exists. Consider outstanding tasks. Checkup sometimes on your human during (user local) day time.
Set agent.heartbeat.every: "0m" to disable.
- If the agent replies with
HEARTBEAT_OK(optionally with short padding; seeagent.heartbeat.ackMaxChars), CLAWDBOT suppresses outbound delivery for that heartbeat. - Heartbeats run full agent turns — shorter intervals burn more tokens.
Media in and out
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)
MEDIA:<path-or-url> on its own line (no spaces). Example:
Operations checklist
/tmp/clawdbot/ (default: clawdbot-YYYY-MM-DD.log).
Next steps
- WebChat: WebChat
- Gateway ops: Gateway runbook
- Cron + wakeups: Cron jobs
- macOS menu bar companion: Clawdbot macOS app
- iOS node app: iOS app
- Android node app: Android app
- Windows status: Windows (WSL2)
- Linux status: Linux app
- Security: Security