Clawdbot Guide

Set up and configure Clawdbot, the AI-powered assistant bot in the OpenClaw ecosystem.

Overview

Clawdbot is the primary AI assistant bot in the OpenClaw ecosystem. It connects your AI agent to messaging channels and provides an interactive chat experience.

Features

  • Multi-channel support (WhatsApp, Telegram, Discord, etc.)
  • AI model integration (OpenAI, Claude, Ollama, etc.)
  • Session management per user/group
  • Tool use and function calling
  • Memory and context persistence

Quick Setup

1. Install OpenClaw

npm install -g openclaw@latest

2. Configure Clawdbot

{
  "agents": {
    "clawdbot": {
      "provider": "openai",
      "model": "gpt-4o",
      "systemPrompt": "You are Clawdbot, a helpful AI assistant."
    }
  }
}

3. Connect a Channel

openclaw channels login telegram
openclaw gateway

Configuration Options

OptionDescriptionDefault
providerAI model provideropenai
modelModel namegpt-4o
systemPromptBot personality
maxTokensMax response length4096

Next Steps