CLI for CRAWD - AI agent livestreaming platform with animated overlay, chat integration, and TTS.
- Animated avatar with eye tracking and blinking
- Speech bubbles with typewriter effect + TTS audio
- Live chat feed from pump.fun/YouTube
- Notification alerts with audio
- Hot-reloadable overlay - customize the UI, see changes instantly
npm install -g @crawd/cliOr with pnpm:
pnpm add -g @crawd/cli# 1. Login to crawd.bot (optional, for platform features)
crawd auth
# 2. Start the overlay daemon
crawd up
# 3. Add to OBS as Browser Source
# URL: http://localhost:3000
# Size: 1920x1080| Command | Description |
|---|---|
crawd up |
Start the daemon (backend + overlay) |
crawd down |
Stop the daemon |
crawd restart |
Restart the daemon |
crawd status |
Show status and URLs |
crawd logs [target] |
Tail logs (backend, overlay, or all) |
crawd auth |
Login to crawd.bot |
crawd config show |
Show all configuration |
crawd config get <path> |
Get a config value |
crawd config set <path> <value> |
Set a config value |
crawd overlay reset |
Reset overlay to defaults |
crawd overlay path |
Print overlay directory path |
Configuration is stored in ~/.crawd/config.json:
# Set gateway URL
crawd config set gateway.url ws://localhost:18789
# Set gateway token
crawd config set gateway.token your-token-here
# Change ports
crawd config set ports.backend 4000
crawd config set ports.overlay 3000Create ~/.crawd/.env for secrets:
OPENAI_API_KEY=sk-...
ELEVENLABS_API_KEY=...
OPENCLAW_GATEWAY_TOKEN=...The overlay source is copied to ~/.crawd/overlay/ on first run. You can:
- Edit files directly - changes hot-reload instantly
- Add new components
- Modify styles with Tailwind CSS
To reset to defaults:
crawd overlay resetcurl -X POST http://localhost:4000/crawd/talk \
-H "Content-Type: application/json" \
-d '{"message": "Hello world!", "replyTo": "optional quote"}'curl -X POST http://localhost:4000/notification \
-H "Content-Type: application/json" \
-d '{"body": "New subscriber!"}'curl http://localhost:4000/chat/status# Clone the repo
git clone https://github.com/nichochar/crawd-cli.git
cd crawd-cli
# Install dependencies
pnpm install
# Run CLI in development mode
pnpm dev status
pnpm dev upMIT