Real-time companion monitor for Clawdbot agents by @luccasveg.
Watch your AI agents work across WhatsApp, Telegram, Discord, and Slack in a live node graph. See thinking states, tool calls, and response chains as they happen.
- Live activity graph - ReactFlow visualization of agent sessions and action chains
- Multi-platform - Monitor agents across all messaging platforms simultaneously
- Real-time streaming - WebSocket connection to clawdbot gateway
- Action tracing - Expand nodes to inspect tool args and payloads
- Session filtering - Filter by platform, search by recipient
docker run -d \
-p 3000:3000 \
-e CLAWDBOT_API_TOKEN=your-token \
ghcr.io/luccast/crabwalk:latestOr with docker-compose:
curl -O https://raw.githubusercontent.com/luccast/crabwalk/master/docker-compose.yml
CLAWDBOT_API_TOKEN=your-token docker-compose up -dgit clone https://github.com/luccast/crabwalk.git
cd crabwalk
npm install
CLAWDBOT_API_TOKEN=your-token npm run devOpen http://localhost:3000/monitor
Requires clawdbot gateway running on the same machine.
Find your token in the clawdbot config file:
cat ~/.clawdbot/clawdbot.json | grep api_tokenOr copy it directly:
export CLAWDBOT_API_TOKEN=$(cat ~/.clawdbot/clawdbot.json | grep -o '"api_token": *"[^"]*"' | cut -d'"' -f4)TanStack Start, ReactFlow, Framer Motion, tRPC, TanStack DB

