Frequently Asked Questions
General Questions
Section titled “General Questions”What is Clawdbot?
Section titled “What is Clawdbot?”Clawdbot is an open-source personal AI assistant that connects Claude (Anthropic’s AI) to your favorite messaging platforms like WhatsApp, Telegram, Discord, and more. It runs on your own hardware, giving you privacy and control over your conversations.
Is Clawdbot free to use?
Section titled “Is Clawdbot free to use?”Clawdbot itself is free and open-source (MIT license). However, you’ll need an Anthropic API key, which has associated costs based on usage. Anthropic offers a free tier for getting started.
What AI model does Clawdbot use?
Section titled “What AI model does Clawdbot use?”Clawdbot uses Claude, Anthropic’s AI assistant. By default, it uses claude-sonnet-4-20250514, but you can configure it to use other Claude models like Opus or Haiku depending on your needs and budget.
Is my data safe with Clawdbot?
Section titled “Is my data safe with Clawdbot?”Yes. Since Clawdbot runs on your own infrastructure, your conversations stay on your hardware. Messages are sent to Anthropic’s API for processing but are not stored or used for training by Anthropic according to their API terms.
Setup & Installation
Section titled “Setup & Installation”What are the system requirements?
Section titled “What are the system requirements?”- Python: 3.10 or higher
- RAM: 512MB minimum, 1GB recommended
- Disk: 100MB for base installation
- Network: Stable internet connection
- OS: macOS, Linux, Windows, or Docker
Can I run Clawdbot on a Raspberry Pi?
Section titled “Can I run Clawdbot on a Raspberry Pi?”Yes! Clawdbot runs well on Raspberry Pi 4 or newer. For Pi 3, you may experience slower response times due to limited RAM.
How do I update Clawdbot?
Section titled “How do I update Clawdbot?”cd clawdbotgit pull origin mainpip install -r requirements.txt --upgradeCan I run multiple channels simultaneously?
Section titled “Can I run multiple channels simultaneously?”Absolutely. Clawdbot can connect to WhatsApp, Telegram, Discord, and other channels all at the same time from a single instance.
Channels & Platforms
Section titled “Channels & Platforms”Which messaging platforms are supported?
Section titled “Which messaging platforms are supported?”| Platform | Status | Notes |
|---|---|---|
| ✅ Stable | Via WhatsApp Web | |
| Telegram | ✅ Stable | Bot API |
| Discord | ✅ Stable | Bot API |
| Slack | ✅ Stable | App/Bot API |
| iMessage | ✅ Stable | macOS only |
| SMS | ⚡ Beta | Via Twilio |
| ⚡ Beta | IMAP/SMTP | |
| Signal | 🔧 Alpha | Limited |
Does Clawdbot work in group chats?
Section titled “Does Clawdbot work in group chats?”Yes, with some platforms:
- Telegram: Works in groups with proper bot configuration
- Discord: Works in servers and channels
- Slack: Works in channels and threads
- WhatsApp: Works but requires careful rate limiting
Why does WhatsApp require QR code scanning?
Section titled “Why does WhatsApp require QR code scanning?”Clawdbot uses WhatsApp Web protocol, which requires authentication via QR code. This is WhatsApp’s security measure - there’s no official API for personal accounts.
Can I use Clawdbot with my existing WhatsApp number?
Section titled “Can I use Clawdbot with my existing WhatsApp number?”Yes. Clawdbot connects as a “device” on your account, similar to WhatsApp Web. Your number and conversations remain yours.
Features & Capabilities
Section titled “Features & Capabilities”What can Clawdbot do?
Section titled “What can Clawdbot do?”Clawdbot inherits Claude’s capabilities:
- Answer questions and have conversations
- Help with writing and editing
- Code assistance and debugging
- Analysis and research help
- Creative tasks like brainstorming
- Translation and language help
Can Clawdbot access the internet?
Section titled “Can Clawdbot access the internet?”By default, no. Claude doesn’t have real-time internet access. However, you can extend Clawdbot with plugins that provide web search, weather data, or other online information.
Can I customize Clawdbot’s personality?
Section titled “Can I customize Clawdbot’s personality?”Yes! You can set a system prompt in your configuration to define Clawdbot’s personality, tone, and behavior:
# In .envSYSTEM_PROMPT="You are a helpful assistant named Jarvis. Be concise and friendly."Does Clawdbot remember conversations?
Section titled “Does Clawdbot remember conversations?”Clawdbot maintains context within a session. The default context window varies by model (100K+ tokens for Claude 3). For long-term memory, you can implement plugins or use hooks.
Can Clawdbot send/receive images?
Section titled “Can Clawdbot send/receive images?”Support varies by channel:
- Telegram: Full image support (send/receive)
- Discord: Full image support
- WhatsApp: Image receiving supported
- Others: Check specific channel docs
Troubleshooting
Section titled “Troubleshooting”Why is Clawdbot responding slowly?
Section titled “Why is Clawdbot responding slowly?”Common causes:
- API latency: Anthropic’s servers may be busy
- Large context: Long conversations slow responses
- Network: Check your internet connection
- Model choice: Opus is slower than Sonnet/Haiku
Why am I getting “Rate Limit” errors?
Section titled “Why am I getting “Rate Limit” errors?”You’ve exceeded Anthropic’s API rate limits. Solutions:
- Wait a few minutes
- Upgrade your API tier
- Reduce message frequency
Clawdbot stopped responding. What should I do?
Section titled “Clawdbot stopped responding. What should I do?”- Check the logs for errors
- Verify your API key is valid
- Ensure channel connections are active
- Try restarting Clawdbot
See our Troubleshooting Guide for detailed solutions.
Costs & Pricing
Section titled “Costs & Pricing”How much does it cost to run Clawdbot?
Section titled “How much does it cost to run Clawdbot?”Costs depend on usage:
- Clawdbot: Free (open source)
- Anthropic API: ~$3/M input tokens, ~$15/M output tokens for Sonnet
- Hosting: Free if running on your own hardware
A casual user might spend $1-5/month on API costs.
How can I reduce API costs?
Section titled “How can I reduce API costs?”- Use Haiku model for simple tasks (
CLAUDE_MODEL=claude-3-haiku-20240307) - Reduce context length
- Implement message caching for repeated queries
- Set up usage limits in configuration
Development & Contributing
Section titled “Development & Contributing”How can I contribute to Clawdbot?
Section titled “How can I contribute to Clawdbot?”- Report bugs and request features on GitHub Issues
- Submit pull requests for improvements
- Improve documentation
- Share your plugins and extensions
Can I build custom plugins?
Section titled “Can I build custom plugins?”Yes! Clawdbot has a plugin system. See our Plugin Development Guide to get started.
What license is Clawdbot under?
Section titled “What license is Clawdbot under?”MIT License - you’re free to use, modify, and distribute Clawdbot, including for commercial purposes.
Still Have Questions?
Section titled “Still Have Questions?”- Join GitHub Discussions
- Check the official documentation
- Search existing issues