In late 2025, a project went viral that most tech Twitter hadn't seen coming. Within weeks, it accumulated 145,000+ GitHub stars, became one of the fastest-growing open-source projects in history, and had developers staying up until 2 AM tweaking their "virtual employee."
OpenClaw isn't just another AI tool—it's a philosophical statement about how personal AI should work.
The Evolution: Three Names, One Vision
The project has undergone rapid rebrandings:
| Name | Period | Reason |
|---|---|---|
| Clawdbot | Late 2025 | Initial release—"virtual employee" concept goes viral |
| Moltbot | Jan 2026 | Trademark dispute with Anthropic |
| OpenClaw | Present | Final name to emphasize open-source nature |
The core mission remained constant: a powerful, self-hosted AI agent that puts the user in control.
It's "Claude with hands"—an AI that doesn't just think, but acts.
What Makes OpenClaw Different
Local-First vs. Cloud-Locked
| Aspect | Cloud AI | OpenClaw |
|---|---|---|
| Data location | Their servers | Your machine |
| Availability | Requires internet | Works offline |
| Customization | Limited | Full control |
| Cost | Subscription | API fees only |
Action-Oriented vs. Conversational
Traditional AI: "Here's a summary of your calendar." OpenClaw: "Declined 12 meeting invites, rescheduled 3, and prepared agenda for tomorrow."
Architecture
Core Components
openclaw/ ├── orchestrator/ # Agent brain - decides what to do ├── tools/ # Capabilities - bash, browser, files, API ├── memory/ # Persistent context across sessions ├── channels/ # Interfaces - Telegram, Discord, WhatsApp └── scheduler/ # Background tasks (heartbeat/cron)
Multi-Model Support
- Claude 3.5 Sonnet (recommended)
- GPT-4o
- DeepSeek
- Any OpenAI-compatible API
Tool Use
OpenClaw has access to real operating system capabilities:
tools = [ "browser", # Web browsing, scraping "bash", # Run shell commands "files", # Read/write disk "code", # Execute code "database", # Query databases "api", # HTTP requests ]
This is why it's called "AI with hands."
Key Features
1. Persistent Memory
Remembers past interactions over weeks—not just the current session.
2. Multi-Channel Presence
Control OpenClaw from anywhere:
| Channel | Description |
|---|---|
| Telegram | Command via chat |
| Discord | Server-based control |
| Mobile-first | |
| Web UI | Browser interface |
| SSH | Remote access |
3. Heartbeat & Scheduler
# Heartbeat: Run every X minutes # Cron: Run on schedule # Examples: - "Every morning at 9AM, summarize my emails" - "Check my GitHub PRs every hour"
4. Skill Platform
Extend functionality with custom skills:
name: github-reviewer description: Automated PR reviews trigger: new_pr actions: - fetch_diff - analyze_code - post_review
Setup
Requirements
- Node.js ≥22
- Anthropic API key ($20-50/month typical use)
Quick Start
# Install npm install -g clawdbot@latest # Configure clawdbot config set-anthropic-key $ANTHROPIC_API_KEY # Run clawdbot daemon # Control via Telegram/Discord/WhatsApp clawdbot channels enable telegram
Docker Installation
docker run -d \ --name clawdbot \ -v ~/clawdbot:/data \ -e ANTHROPIC_API_KEY=$key \ clawdbot/agent:latest
Cost Analysis
| Component | Monthly Cost |
|---|---|
| Anthropic API | $20-50 |
| Self-hosted server | $5-10 (optional) |
| Total | $25-60 |
Compare to cloud agents:
| Service | Monthly Cost |
|---|---|
| ChatGPT Teams | $30/user |
| Claude Team | $30/user |
| OpenClaw (self) | $25-60 (total) |
The Bigger Picture
OpenClaw represents a shift in how we think about AI assistants:
| Old Paradigm | New Paradigm |
|---|---|
| Cloud-first | Local-first |
| Conversational | Action-oriented |
| Session-based | Persistent |
| Subscription | API fees only |
OpenClaw is available at openclaw.ai. Use responsibly.