Key Takeaways
- OpenClaw is free and open-source — runs locally on Mac, Windows, or Linux under the MIT license
- 228K+ GitHub stars — the fastest-growing repository in GitHub history
- Created by Peter Steinberger — founder of PSPDFKit, who joined OpenAI in February 2026
- Not just a chatbot — it can browse the web, execute shell commands, manage files, and automate tasks 24/7
- Connects to your apps — WhatsApp, Slack, Discord, iMessage, Telegram, and 50+ integrations
What Is OpenClaw?
OpenClaw is a free, open-source personal AI assistant that runs locally on your own computer. Unlike standard chatbots such as ChatGPT or Claude that live in a browser tab, OpenClaw has "eyes and hands" — it can browse the web, read and write files on your machine, execute shell commands, and interact with you through the messaging apps you already use.
Think of it as an autonomous AI agent that sits on your Mac (or Windows/Linux machine) and works around the clock. You can message it on WhatsApp at 2 AM asking it to summarize your emails, and it will do it. You can ask it to monitor a website for changes, schedule reminders, or automate repetitive workflows — all without opening a separate app.
The project is hosted on GitHub and has accumulated over 228,000 stars, making it the fastest-growing repository in the platform's history. It went from 2,000 stars to nearly 200,000 in under three months.
The History: Clawdbot to Moltbot to OpenClaw
OpenClaw didn't start with that name. The project has been through several identity changes:
- Clawdbot (November 2025) — Austrian developer Peter Steinberger published the original project. The name was a playful reference to Anthropic's Claude chatbot.
- Moltbot — The project was renamed, likely to distance itself from the Claude branding.
- OpenClaw (late January 2026) — The final rebrand coincided with the project's viral explosion. The lobster emoji became its mascot, and the "open" prefix emphasized its open-source nature.
Steinberger is no newcomer to the developer world. He founded PSPDFKit, a widely-used PDF framework, and built it into a global developer tools business. His reputation in the iOS/macOS developer community helped OpenClaw gain early traction.
On February 14, 2026, Steinberger announced he was joining OpenAI, and that OpenClaw would be moved to an independent open-source foundation to ensure its continued development.
How OpenClaw Works
At a high level, OpenClaw consists of four layers:
1. The Gateway (Control Plane)
The Gateway is the core of OpenClaw. It's a local-first WebSocket server that coordinates sessions, channels, tools, and events. Every message — whether from WhatsApp, Slack, or a cron job — flows through the Gateway before reaching the AI.
2. The Channel Layer (Messaging)
This is how you talk to OpenClaw. It supports direct messaging and group chats across:
- WhatsApp (via Baileys)
- Telegram (via grammY)
- Slack (via Bolt)
- Discord (via discord.js)
- iMessage (via BlueBubbles)
- Signal, Google Chat, Microsoft Teams, Matrix
- WebChat for browser-based access
Each channel routes messages to isolated agent workspaces, so your work conversations stay separate from personal ones.
3. The LLM Brain
OpenClaw is model-agnostic. It works with:
- Anthropic Claude — the recommended default (Pro/Max tiers work best with Opus 4.6)
- OpenAI GPT models — via OAuth integration
- Local models — run entirely on your machine through Ollama or other local inference engines
This flexibility means you can run OpenClaw completely offline with a local model, or connect it to the most powerful cloud models for demanding tasks.
4. The Skills Toolbox (AgentSkills)
Skills are what give OpenClaw its abilities beyond conversation. There are over 100 preconfigured AgentSkills, and the community has built many more through ClawHub, a marketplace for sharing skills. Skills can:
- Control smart home devices (Philips Hue, etc.)
- Manage your calendar, email, and notes
- Interact with GitHub, Spotify, Twitter, and WordPress
- Automate browser tasks (form filling, data extraction)
- Monitor health data from WHOOP
- Write and deploy code
OpenClaw can even write its own skills — the AI can create new automation tools and hot-reload them without restarting.
Key Features
Persistent Memory
Unlike a chatbot that forgets everything when you close the tab, OpenClaw maintains persistent memory through local Markdown files. It remembers your preferences, past conversations, and context across sessions.
24/7 Background Operation
OpenClaw runs as a daemon (background service) on your machine. It can execute cron jobs, respond to webhooks, monitor Gmail via Pub/Sub, and proactively initiate tasks without you prompting it.
Browser Automation
OpenClaw can control a dedicated Chrome/Chromium instance to browse the web, fill out forms, extract data, and automate repetitive web tasks.
Voice: Talk Mode
OpenClaw supports hands-free voice interaction through Talk Mode. When activated, it uses Whisper (running locally via faster-whisper) for speech-to-text and ElevenLabs for natural-sounding text-to-speech responses. Your voice is transcribed locally — it never leaves your machine.
Talk Mode works on macOS, iOS, and Android, turning OpenClaw into a voice-activated assistant you can speak to naturally.
50+ Integrations
Beyond messaging, OpenClaw connects to Gmail, GitHub, Spotify, Obsidian, calendar systems, weather services, smart home devices, and dozens more. Device nodes on iOS and Android add camera access, screen recording, location data, and push notifications.
Supported Platforms
| Platform | Support | Notes |
|---|---|---|
| macOS | Full | Native menu bar app (beta), installer available |
| Linux | Full | Primary development platform |
| Windows | Full | Via npm or installer |
| iOS | Node | Device node for camera, location, notifications |
| Android | Node | Device node for camera, location, notifications |
| Docker | Full | Containerized deployment |
| Raspberry Pi | Full | Always-on home server setup |
Installation requires Node.js 22 or later. The quickest way to get started is:
npm install -g openclaw@latest
openclaw onboard --install-daemon
There's also a one-liner curl install and a git clone option for developers who want to hack on the source code. For a detailed walkthrough, see our How to Set Up OpenClaw on Mac guide.
Security Considerations
OpenClaw's power comes with real security trade-offs that you should understand before installing it.
The Permission Problem
To be useful, OpenClaw needs broad access to your system — email, files, messaging apps, shell commands. This is fundamentally different from a chatbot that only sees what you paste into it. A misconfigured OpenClaw instance can expose sensitive data.
Prompt Injection Risks
Because OpenClaw processes messages from external sources (WhatsApp contacts, Slack channels, websites it browses), it's vulnerable to prompt injection — where a carefully crafted message tricks the AI into performing unintended actions. Cisco's AI security research team demonstrated that a third-party skill could perform data exfiltration without user awareness.
ClawHub Skill Risks
In February 2026, Snyk security researchers scanned nearly 4,000 skills from ClawHub and found malicious payloads in a significant number of them. The skill repository lacked adequate vetting at the time, making it possible for attackers to distribute malicious code disguised as helpful automations.
Mitigating the Risks
- Use sandboxed mode — OpenClaw offers a sandboxed mode that limits system access
- Vet skills carefully — only install skills from trusted sources; review the code before enabling
- DM pairing — by default, OpenClaw requires approval codes for unknown senders on messaging platforms
- Keep it updated — the project has been actively patching security issues, with version 2026.2.23 including significant security hardening
- Limit permissions — only grant the integrations and system access you actually need
Who Is OpenClaw For?
OpenClaw is a powerful tool, but it's not for everyone.
Great For
- Developers and power users — who are comfortable with the terminal, Node.js, and configuring API keys
- Automation enthusiasts — who want an AI that can actually do things, not just talk about them
- Privacy-conscious users — who want their AI running locally rather than in someone else's cloud
- Tinkerers and experimenters — the open-source nature means you can modify everything
- Small teams — who want a shared AI assistant across Slack or Discord
Not Ideal For
- Non-technical users — setup requires command-line knowledge and API key management
- People who need enterprise security — the security concerns are real and still being addressed
- Casual users — if you just want to ask questions, ChatGPT or Claude in a browser is simpler
- Users without always-on hardware — OpenClaw works best running 24/7 on a dedicated machine or server
Getting Started with OpenClaw
If you're on a Mac and want to try OpenClaw, the process takes about 15-20 minutes:
- Install Node.js 22+ — via Homebrew (
brew install node) or from nodejs.org - Install OpenClaw — run
npm install -g openclaw@latest - Run onboarding —
openclaw onboard --install-daemonwalks you through API key setup - Connect a channel — link WhatsApp, Slack, or your preferred messaging app
- Start chatting — message your AI assistant through your connected apps
For a complete step-by-step walkthrough with screenshots, see our How to Set Up OpenClaw on Mac guide.
If you're a Mac user who wants to dictate commands to your AI assistant hands-free, EmberType provides offline voice-to-text that works alongside tools like OpenClaw. Speak naturally, and EmberType types your words directly into any app — including the terminal where you interact with OpenClaw. Since EmberType processes everything locally with Whisper AI, your voice never leaves your device.
Dictate to Your AI Assistant
Use EmberType's offline voice-to-text to speak commands to OpenClaw and other AI tools on your Mac.
Download EmberType FreeFrequently Asked Questions
Voice-to-Text for Your AI Workflow
EmberType turns your voice into text in any app — offline, private, and instant on Mac.
Download EmberType FreemacOS 14+ required. Apple Silicon only. $39 after trial.
