Google “Claw AI” and you’ll get MSI gaming handhelds, random startups, and a pile of unrelated results. The thing most people actually mean when they say “Claw AI” is OpenClaw — the open-source AI agent framework that quietly crossed 145,000 GitHub stars and built one of the largest skill ecosystems in the AI agent space.
If you’ve heard the name but aren’t sure what it does, why people care, or how it fits next to ChatGPT and Copilot, this is your starting point.
We’ll cover how it works, the naming confusion (there have been four names), the skills ecosystem, security concerns, and how to get running. No fluff. Just what you need to know.
The Short Version
| Full name | OpenClaw |
| What it is | Open-source AI agent framework |
| GitHub stars | 145,000+ |
| Skills available | 3,500+ total — 433 curated on Claw Directory |
| Cost | Free (you pay for Claude API usage) |
| Platforms | macOS, Linux, Windows (WSL) |
| Messaging | Telegram, WhatsApp, Discord, Signal, Terminal |
OpenClaw is free under the MIT license. The only cost is the Claude API usage, which runs a few dollars a month for personal use. You install it on your own machine, connect it to your messaging apps, and add skills to give it abilities. That’s the whole model.
If you already know what OpenClaw is and just want to set it up, skip to the How to Get Started section. Otherwise, keep reading — there’s a lot to unpack.
How OpenClaw Works
OpenClaw has four main pieces: the local runtime, Claude, messaging channels, and skills. Here’s how they fit together.
The runtime lives on your machine. It’s what you install and run. It handles incoming messages, manages skills, and sends requests to the AI model. Nothing runs on someone else’s server — your agent is a process on your hardware.
Claude (by Anthropic) is the AI backbone. When your agent receives a message, the runtime sends it to Claude’s API along with context about your installed skills. Claude decides what to do, and the runtime executes it. You need a Claude API key from console.anthropic.com to use OpenClaw.
Messaging channels are how you talk to your agent. Connect Telegram, WhatsApp, Discord, Signal, or just use the terminal. You send a message, your agent responds. It feels like texting a very capable friend.
Skills are what make the agent useful beyond conversation. Each skill is a SKILL.md file — plain Markdown that tells the agent what it can do and when to do it. Want image generation? Install a skill. Want YouTube summaries? Install a skill. The agent reads these Markdown files and knows what abilities it has.
When you send “generate a picture of a cat in space” to your agent on Telegram, here’s what happens: Telegram delivers the message to the runtime. The runtime packages it with your skill context and sends it to Claude. Claude sees you have an image generation skill installed, decides to use it, and returns the instructions. The runtime executes those instructions, gets the image, and sends it back to your Telegram chat. The whole loop takes a few seconds.
The important thing: you don’t need to learn a special syntax or memorize commands. You just talk to it normally. The agent figures out which skill to use based on what you’re asking for. If you say “summarize this YouTube video” and you have the tube-summary skill installed, it knows what to do. If you don’t have the right skill, it tells you.
This is fundamentally different from something like ChatGPT, where the abilities are baked in. With OpenClaw, you build the agent you want by choosing what it can do. More on that comparison below.
Our Getting Started guide walks through the full setup.
The Name Changes: Clawd to Clawdbot to Moltbot to OpenClaw
If you’re confused about the names, you’re not alone. The project has been through four names in two years, and people still search for all of them.
Here’s the timeline:
| Year | Name | What Happened |
|---|---|---|
| 2024 | Clawd | Original name, early release |
| 2024 | Clawdbot | Renamed to clarify it’s a bot/agent |
| 2025 | Moltbot | Another rebrand (Molt = evolution/shedding) |
| 2025 | OpenClaw | Framework name separated from the agent name |
The important distinction now: OpenClaw is the framework. Moltbot is the agent built on it. Think of OpenClaw as the engine and Moltbot as the car. When people say “Claw AI,” they almost always mean the whole thing — framework plus agent.
The old documentation at docs.clawd.bot still uses some of the older names. If you’re reading tutorials from 2024 that mention “Clawdbot,” they’re talking about the same project. The commands have been updated, but the concepts haven’t changed.
This naming history matters because it fragments the search results. Someone searches “Clawdbot tutorial” and finds year-old guides. Someone else searches “Moltbot setup” and finds different ones. They’re all talking about the same thing.
The community mostly uses “OpenClaw” now for the framework, but “Claw AI” has stuck as the casual shorthand. You’ll see all the names in Reddit threads, GitHub issues, and Discord conversations. Don’t let it throw you off.
What Makes It Different from ChatGPT, Gemini, or Copilot
The question everyone asks: “Why would I use this instead of ChatGPT?”
Here’s the comparison:
| OpenClaw | ChatGPT | Gemini | Copilot | |
|---|---|---|---|---|
| Self-hosted | Yes | No | No | No |
| Open source | Yes (MIT) | No | No | No |
| Skills/plugins | 3,500+ | GPT Store | Extensions | Limited |
| Data privacy | Local only | Cloud | Cloud | Cloud |
| Cost | API usage only | $20-200/mo | Free-$20/mo | $10-30/mo |
| Messaging | Any channel | Web/App | Web/App | IDE/Web |
The numbers tell part of the story. But the real difference is ownership.
When you use ChatGPT, you’re renting access to someone else’s system. OpenAI decides what features you get, what data they keep, and what you can do with it. Your conversations live on their servers. If they change the terms, raise the price, or remove a feature, you adapt.
With OpenClaw, you own the whole stack. The agent runs on your machine. Your data stays local. You choose which skills to install, which messaging channels to use, and how the agent behaves. If you don’t like something, you change it — it’s MIT-licensed code. Nobody can take it away or change the terms on you.
The tradeoff is real though. ChatGPT works in thirty seconds. OpenClaw takes ten minutes to set up. ChatGPT handles everything out of the box. OpenClaw needs you to install skills for specific abilities. If you just want to ask questions and get answers, ChatGPT is easier. If you want an AI agent that does things — controls your smart home, manages your email, generates images, deploys your code — and you want to own it, OpenClaw is the better fit.
There’s also a philosophical difference worth mentioning. ChatGPT is a product. OpenClaw is infrastructure. Products are polished but limited to what the company ships. Infrastructure is rougher around the edges but you can build whatever you want on top of it. Neither is wrong. It depends on what you’re after.
One more thing: cost. ChatGPT Pro runs $200/month. Even the Plus tier is $20/month. OpenClaw costs whatever you spend on Claude API tokens, which for most people is $3-8/month. If you’re running it for a team or hitting it hard with skill-heavy workflows, maybe $15-25/month. Still significantly cheaper than any subscription tier from the major providers.
The Skills Ecosystem
Skills are what separate OpenClaw from a plain chatbot. Without skills, your agent can only talk. With skills, it can do things.
The numbers: 3,500+ total skills in the ecosystem, 5,705+ published on ClawHub (the official marketplace), and 433 curated on Claw Directory (that’s us — we review every skill we list).
Here’s what makes the skill system unusual: skills are Markdown files. Not compiled code. Not Docker containers. Not npm packages. A skill is a folder containing a SKILL.md file that describes what the skill does in plain English. The agent reads this file and understands its new ability.
~/.openclaw/skills/
├── fal-ai/
│ └── SKILL.md
├── tube-summary/
│ └── SKILL.md
└── diagram-gen/
└── SKILL.md
This means you can open any skill in a text editor and read exactly what it does. You can modify it. You can write your own in ten minutes. There’s no compilation step, no build process. Write Markdown, reload, done.
This design choice is what let the ecosystem grow so fast. Writing a skill doesn’t require knowing Python or JavaScript. If you can write clear instructions in English, you can write a skill. The barrier to contribution is basically zero, which is how you get to 3,500+ skills in two years.
Skills cover a wide range:
- Media Skills — image generation, video editing, audio processing, design tools
- Productivity — Google Workspace integration, bookmarks, presentations, scheduling
- Development — database management, deployment, diagrams, code tools
- AI Tools — multi-model generation, prompt engineering, model access
- Smart Home — IoT control, speaker management, device automation
Some specific skills worth knowing about: fal-ai handles image and video generation through multiple AI models. google-workspace-mcp connects your agent to Gmail, Calendar, and Drive without the usual Google Cloud Console headache. tube-summary summarizes YouTube videos from their subtitles. diagram-gen generates architecture diagrams from your codebase.
We picked the best skills across every category if you want the shortlist.
ClawHub: The Official Marketplace
ClawHub (clawhub.ai) is where most people get their skills. It hosts 5,705+ skills with one-command installation:
clawhub install skill-name
That’s it. One command downloads the skill, places it in the right directory, and makes it available to your agent. No configuration files, no dependency management. Run the command, restart your agent, and the skill is live.
You can search from the terminal too:
clawhub search "image generation"
ClawHub also handles updates. When a skill author pushes a new version, you pull it with:
clawhub update skill-name
ClawHub’s open submission model means anyone can publish a skill. That’s mostly good — it’s how the ecosystem grew to 5,705+ skills in under two years. But it’s also how 341 malicious skills ended up in the marketplace. More on that in our security guide.
The gap between ClawHub and Claw Directory comes down to curation. ClawHub lists everything. We list the 433 skills we’ve actually reviewed and can recommend. If you want to browse freely, go to ClawHub. If you want someone else to have done the filtering, start with Claw Directory.
Who Uses Claw AI?
Four groups keep showing up.
Developers
This is the biggest group. Developers use OpenClaw to automate workflows they’d otherwise do manually. Database management through conversation instead of SQL clients. Architecture diagrams generated from code. Deployment pipelines triggered from Telegram. The skill ecosystem is heavily weighted toward developer tools, which makes sense — developers built it. Skills like neondb-skill for Postgres management and diagram-gen for code visualization are among the most-installed in the ecosystem.
Content Creators
Image generation, video editing, YouTube research, presentation building. Content creators use OpenClaw as a production assistant. Send your agent a prompt and get an image back. Send it a YouTube link and get a summary. Send it a topic and get a slide deck. Skills like fal-ai for image generation and gamma for presentations are popular in this group. The media and productivity skill categories exist because of these users.
Privacy-Conscious Users
Everything runs on your machine. Your conversations don’t leave your hardware. Your data isn’t training anyone’s model. For people who want AI assistance but don’t want their data on someone else’s servers, OpenClaw is one of the few options that actually delivers on the privacy promise.
The only external call is to the Claude API for the AI processing, and Anthropic’s API data policy explicitly states that API inputs and outputs are not used for model training. Your skills, your conversations, your files — all local. This matters more than most people think, especially if you’re using your agent to handle work emails, financial data, or personal information.
Tinkerers
Some people just like building things. OpenClaw attracts the same crowd that runs Linux on their laptop, self-hosts their email, and configures their own home server. It’s a system you can take apart, understand, modify, and make yours. Writing custom skills, tweaking the agent’s behavior, connecting it to weird APIs just to see if it works. If that sounds like a fun Saturday afternoon, you’re the target audience.
Security: The Elephant in the Room
Let’s talk about this directly. OpenClaw’s security track record isn’t spotless, and pretending otherwise would be dishonest.
CVE-2026-25253 was disclosed earlier this year — a vulnerability in the skill loading mechanism that allowed malicious skills to execute arbitrary code outside their intended scope. It was patched, but not before 341 malicious skills were discovered on ClawHub. A separate audit found that 26% of tested community skills had some form of vulnerability, ranging from data exfiltration to privilege escalation.
Those numbers sound bad. They are bad. But they need context.
This is what happens with every open ecosystem. Linux has CVEs published regularly. npm has had thousands of malicious packages. PyPI has the same problem. The Docker Hub has had cryptominers in public images. Any system where anyone can publish will have bad actors trying to exploit it.
OpenClaw is going through the same growing pains. The framework itself is well-maintained — 145,000 GitHub stars means a lot of eyes on the code. The risk is in the skills, specifically community-published skills that haven’t been reviewed.
That’s part of why Claw Directory exists. We review the skills we list. The 433 skills on our site are a curated subset of the 5,705+ on ClawHub. Fewer skills, but we’ve actually looked at them.
The practical advice is straightforward: don’t install skills from unknown authors without reading the SKILL.md file first. Stick to well-known skills with active maintainers. Use curated sources. And keep your OpenClaw runtime updated — the team patches vulnerabilities quickly once they’re reported.
This isn’t a reason to avoid OpenClaw. It’s a reason to be thoughtful about which skills you install. The same way you wouldn’t run random shell scripts from the internet, don’t install random skills without checking them first.
We wrote a full ClawHub skills security guide with audit steps, red flags, and hardening tips.
How to Get Started
Five steps from zero to a running agent:
- Install OpenClaw — one-line installer
- Set your Claude API key — from console.anthropic.com
- Connect a messaging channel — Telegram is the easiest
- Install a skill — pick one from ClawHub
- Start your agent — and send it a message
Here’s the quick version:
curl -fsSL https://install.openclaw.dev | bash
openclaw config set api-key YOUR_KEY
openclaw channel add telegram
clawhub install fal-ai
openclaw start
That gets you a running agent on Telegram with image generation abilities. The whole process takes about ten minutes, most of which is setting up a Telegram bot through BotFather.
Once it’s running, try a few things: ask it a question (just regular conversation works), then ask it to generate an image (since you installed fal-ai). You’ll see the difference between base conversation and skill-powered abilities immediately.
From there, the rabbit hole is deep. Browse skills, add the ones that match your workflow, and tweak things until the agent works the way you want. Most people start with two or three skills and gradually add more as they find new things they want their agent to do.
Full walkthrough in our Getting Started guide. Takes about ten minutes.
MSI Claw AI+: Not the Same Thing
If you landed here looking for the MSI Claw AI+, you’re in the wrong place — but here’s the quick answer. The MSI Claw AI+ is a gaming handheld made by MSI. Intel Core Ultra processor, Windows 11, 7-inch screen. It’s a competitor to the Steam Deck and ROG Ally. Cool hardware if you’re into handheld PC gaming.
It has nothing to do with OpenClaw, Moltbot, or the AI agent framework this site covers. The name overlap is just a coincidence. MSI makes hardware; OpenClaw is open-source software. Two completely different products that happen to share a word. Search engines mix them together constantly, which is partly why “what is Claw AI” is such a common query.
FAQ
Is OpenClaw free?
Yes. MIT license, free and open-source. You pay for Claude API usage — a few dollars per month for personal use. Heavy usage with lots of skills might run $10-20/month, but most people spend under $5.
Is it the same as Clawdbot?
Same project, different name. Clawdbot was the old name for the agent. Now the agent is called Moltbot and the framework is OpenClaw. If you see tutorials mentioning Clawdbot or Clawd, they’re talking about this.
Is it safe?
The framework itself is well-maintained and open-source with 145,000+ GitHub stars. Skills are a different story — some ClawHub skills have been found to be malicious. Stick to curated sources and review what you install. See our security guide.
What AI model does it use?
Claude by Anthropic. You need a Claude API key from console.anthropic.com. There’s no way to swap in GPT-4 or Gemini — OpenClaw is built specifically around Claude’s API and capabilities. Community forks have experimented with other models, but the official project is Claude-only.
Does it work on Windows?
Yes, through WSL2 (Windows Subsystem for Linux). Install WSL2 first, then follow the same Linux installation steps. Native Windows support isn’t available yet. Most Windows users report the WSL2 experience works fine once it’s configured.
How many skills are there?
3,500+ in the full ecosystem. 5,705+ on ClawHub (the official marketplace). 433 curated on Claw Directory. The numbers keep growing — ClawHub gets new submissions daily.
ClawHub vs. Claw Directory — what’s the difference?
ClawHub is the official marketplace where anyone can publish. It has the most skills (5,705+) but no editorial review. Claw Directory is a curated subset — we review and describe every skill we list. Fewer skills (433), higher quality, and we flag security concerns when we find them.
Summary
Here’s where to go from here:
| Resource | Link |
|---|---|
| Getting Started Guide | Set up OpenClaw from scratch |
| Best Skills 2026 | Our top picks across every category |
| Security Guide | Audit skills and harden your setup |
| Best Skills Page | Curated directory |
| Install Guide | Quick install reference |
| Ecosystem Sites | 50+ community resources |
OpenClaw is the AI agent you actually own. It runs on your machine, connects to the apps you already use, and does what you tell it through skills you choose. No subscription fees, no data leaving your hardware, no features gated behind pricing tiers.
Start with the getting started guide, pick a few skills, and build from there.