OpenClaw: The Open-Source AI Agent That Hit 175K Stars
If you have not heard of OpenClaw yet, you probably will soon. It started as a side project called Clawdbot, built by a solo developer named Peter Steinberger in about 10 days. It hit 70,000 GitHub stars in its first week. Anthropic asked him to change the name (too close to "Claude"), so it became Moltbot, then eventually OpenClaw. As of February 2026, it sits at over 175,000 stars with 28,000+ forks and 130+ contributors.
What makes it different from ChatGPT, Claude, or any other AI chatbot is that it is not a chatbot at all. It is an agent. It runs on your own machine, connects to your tools, and does things proactively without you having to ask.
What OpenClaw actually is
Think of it as an AI employee that lives on your server. You message it on WhatsApp at 11pm saying "check my email tomorrow morning and send me a briefing." It schedules a cron job, wakes up at 7am, reads your inbox, categorizes everything, and sends you a summary on WhatsApp before you even open your laptop.
That is the core difference. ChatGPT waits for you to come to it. OpenClaw comes to you. It runs as a daemon on your machine, maintains persistent memory across days and months, and connects to whatever platforms and tools you configure.
It supports WhatsApp, Telegram, Discord, Slack, Signal, iMessage, Microsoft Teams, and about 60 other integrations. You talk to it the same way you would message a coworker.
Why self-hosting matters
Every interaction you have with ChatGPT goes through OpenAI's servers. Every Claude conversation goes through Anthropic. For personal use that is fine. But if you are running a business and your AI agent has access to customer emails, financial data, API keys, and internal processes, sending all of that to a third-party cloud is a real risk.
OpenClaw runs entirely on your infrastructure. Your data never leaves your machine. That means:
- Full GDPR/HIPAA compliance if you configure it properly
- Zero vendor access to your conversations
- No training on your data
- If there is a breach, it only affects you, not every customer on a shared platform
- Full audit trails of every interaction
You can run it on a Mac Mini, a $5 VPS, a Raspberry Pi, or your laptop. The software is free and open source. You only pay for the AI model API calls and your hosting.
How it works technically
Install it globally via npm:
npm install -g openclaw@latest
Run the onboarding:
openclaw onboard --install-daemon
This sets up the background daemon that keeps OpenClaw running 24/7. Then connect a chat channel:
openclaw channels login whatsapp
You scan a QR code with a dedicated phone number and you are connected. From that point on, you message your OpenClaw agent the same way you would message anyone on WhatsApp.
The architecture is straightforward. OpenClaw is a Node.js application that runs as a persistent process. It receives messages from connected platforms, processes them through an AI model (Claude, GPT-4, DeepSeek, Gemini, or local models via Ollama), executes actions through its skill system, and sends responses back.
Requirements are minimal: Node.js 22+, an AI API key, and optionally accounts for the chat platforms you want to connect.
The skill system
Skills are how you extend what OpenClaw can do. They are essentially plugins, defined as simple Markdown files that describe a capability. You do not need to write code for most of them.
openclaw skills list
openclaw skills enable email-manager
openclaw skills enable calendar-sync
openclaw skills enable github-monitor
There are over 565 community-built skills available. Some examples:
- Email management: reads your inbox, categorizes messages, drafts responses, archives newsletters, sends daily briefings
- Customer support: monitors a support inbox, answers FAQs automatically, creates tickets for complex issues
- System monitoring: watches server health, monitors error logs, alerts on downtime, tracks deployments
- Calendar and scheduling: coordinates meeting times, sends invites, checks traffic for commute reminders
- Development workflows: runs tests, connects to Sentry for error tracking, opens pull requests, reviews code
You can also create your own skills by writing a Markdown file that describes what the skill does, what tools it has access to, and how it should behave.
Multi-agent routing
OpenClaw supports running multiple agent personas. You can have one workspace for work and another for personal use, each with different skills, different memory contexts, and different access permissions.
This is useful if you want your work agent to have access to Jira and Slack but not your personal calendar, or if you want your personal agent to handle shopping lists and reminders without knowing anything about your business.
The cost math
OpenClaw itself is free. The costs come from AI model API usage and hosting:
AI model costs per month:
- Claude Sonnet: $50-100
- GPT-4o: $40-80
- DeepSeek: $10-20
- Local models via Ollama: free
Hosting costs per month:
- VPS (Hetzner, DigitalOcean): $5-20
- Raspberry Pi: $35 one-time
- Mac Mini: $600 one-time
- Your laptop: free
Total cost for a year is roughly $600-1,200 depending on which model and hosting you choose. Compare that to hiring a virtual assistant ($35,000/year), a customer support rep ($45,000/year), or a DevOps engineer ($120,000/year). Obviously OpenClaw does not fully replace any of those roles, but it can handle 60-80% of the routine work.
What people are actually doing with it
The community has gotten creative. Some real use cases from the Discord:
One founder has it running his entire company operations. It checks email, handles customer support tickets, monitors his SaaS infrastructure, and sends him daily briefings. He described it as "it's running my company."
A developer set up autonomous coding loops. He sends a message on Telegram saying "fix the failing tests in the auth module" and OpenClaw pulls the code, runs the tests, identifies the failures, writes fixes, and opens a pull request. All from his phone while walking his dog.
Another user named his agent Jarvis. It gives daily briefings, checks his calendar, reminds him when to leave based on live traffic data, and manages his smart home devices.
Where it falls short
OpenClaw is not perfect. The 10-20 hour DIY setup time is real. You need basic command-line skills and the patience to configure integrations. The documentation has improved a lot since the early Clawdbot days but it is still a moving target with frequent updates.
The persistent memory is powerful but can also get confused over very long conversations spanning weeks. You sometimes need to manually reset context or redirect the agent.
Cost can also creep up if you use Claude Sonnet heavily. A busy agent that handles a lot of email and customer support can easily burn through $100+ in API costs per month.
And the platform integrations, while numerous, are not all equally polished. WhatsApp and Telegram work well. Some of the more obscure integrations are community-maintained and can be flaky.
Why it matters
The bigger picture here is what OpenClaw represents. A solo developer built a tool in 10 days that accumulated 175,000 GitHub stars because it solves a problem that the big tech companies have been fumbling for years. Apple could not make Siri useful. Google Assistant peaked and stalled. Amazon Alexa is fading.
OpenClaw works because it takes the opposite approach. Instead of trying to be a general-purpose voice assistant locked into one ecosystem, it is an open, extensible agent that connects to whatever you already use and runs on hardware you control.
The 175,000 stars are not just hype. They represent a genuine shift in how people think about AI. Not as a chatbot you visit in a browser tab, but as a persistent, proactive system that is always running in the background, handling the stuff you do not want to think about.
