What Is OpenClaw? The AI Agent Everyone Is Talking About, Explained

tools · 2026-02-20
What Is OpenClaw? The AI Agent Everyone Is Talking About, Explained

Summarize content with

You've probably seen OpenClaw trending on X or GitHub and thought: what even is this? The name keeps changing — it was Clawdbot, then Moltbot, now OpenClaw — and most explanations either go way too technical or treat it like it's magic without explaining how it actually works.

This post is the clear version. What OpenClaw is, how it works under the hood, what it can actually do, and whether you should care.

TL;DR: OpenClaw is a free, open-source AI agent that runs on your machine (or a $5/month server) and connects to your messaging apps — Telegram, WhatsApp, Slack, and more. Unlike ChatGPT, it doesn't wait for you to ask it something. It runs tasks on a schedule, monitors things in the background, and takes real actions: reading files, sending emails, running terminal commands, browsing the web. It was built by Austrian developer Peter Steinberger (founder of PSPDFKit) and hit 240,000+ GitHub stars in under three months.


1. It's an AI Agent, Not a Chatbot

The most important thing to understand about OpenClaw is what makes it categorically different from the AI tools most people already use.

ChatGPT, Claude, Gemini — these are reactive tools. You open a tab, type a message, they respond, you close the tab. Every session starts from scratch. They do nothing until you show up and ask them something.

OpenClaw is an AI agent. It runs as a persistent background process on your machine (or a server), stays connected to your messaging apps, and operates autonomously. You don't have to be at your computer for it to work. You don't have to trigger it. It's always on.

The practical difference: with ChatGPT you ask "summarize my emails" and it generates text. With OpenClaw you set it up once to check your inbox every 30 minutes, flag anything urgent, and message you on Telegram when something needs your attention — whether you're at your desk or not.

The name history: Peter Steinberger released the project as Clawdbot in November 2025. It rebranded to Moltbot weeks later, then to OpenClaw to better reflect its open-source mission. If you've seen any of those names trending, they're all the same project. The current GitHub is github.com/openclaw/openclaw.


2. How It Actually Works

OpenClaw runs as a single long-lived Node.js process called the Gateway. When you start it, you're launching five subsystems simultaneously:

  • Control plane — A WebSocket API on port 18789 that coordinates everything
  • Agent runtime — The loop that executes your AI model and calls tools
  • Message queue — Serializes tasks so the agent works sequentially and doesn't conflict
  • Session manager — Keeps different conversations isolated from each other
  • Channel adapters — Normalize messages from Telegram, WhatsApp, Slack, etc. into a standard format the agent understands

You bring your own API key — Claude, GPT-4, Gemini, DeepSeek, or a local model via Ollama. OpenClaw stores everything locally as Markdown files. No mandatory cloud. Your data stays on your machine.

When you send a message, the agent doesn't just generate text and stop. It enters a Reason-Act-Observe loop: it thinks about what needs to happen, calls a tool to execute it, observes the result, and repeats until the task is done. One request can trigger up to 20 tool calls in sequence.


3. The Two Features That Make It Different From Everything Else

Heartbeat

Every 30 minutes (configurable), OpenClaw wakes up and runs through a checklist you've defined in a file called HEARTBEAT.md. It reads your conversation history for context, works through the list, and makes a judgment call about whether anything needs your attention.

If nothing does, it sends a silent internal signal and goes back to sleep. If something does — an urgent email came in, a task is overdue, your server is down — it messages you proactively, without you asking.

This is the core thing that makes OpenClaw feel like an assistant rather than a tool. It's always watching, and it only interrupts you when there's an actual reason to.

Cron Jobs

You can schedule tasks to run on an exact timeline — every morning at 7am, every Sunday, every hour. Once configured, they run forever without any manual triggering. Your morning briefing, your weekly report, your inbox check — all happen automatically whether you remember to ask or not.

Cron vs. Heartbeat: Cron jobs run a specific task on schedule. Heartbeat decides whether something matters based on current context. Think of cron as "do this at 8am" and Heartbeat as "check if anything is wrong every 30 minutes and tell me if it is."


4. The File-Based Memory System

OpenClaw doesn't use a hidden database to store what it knows about you. It uses plain Markdown files that live on your disk. You can read them, edit them, and version control them with Git.

The core files every agent gets:

  • SOUL.md — Personality, tone, and behavioral rules. How should it communicate? What's off-limits?
  • USER.md — Everything about you. Your timezone, work patterns, preferences, communication style.
  • IDENTITY.md — Who the agent is. Its name, its role, how it thinks about its relationship to you.
  • MEMORY.md — Long-term facts and preferences it should always carry. "I prefer Python over Java." "My newsletter goes out Thursdays."
  • HEARTBEAT.md — The monitoring checklist it runs every 30 minutes.
  • TOOLS.md — Which capabilities are enabled and how they're configured.

Beyond these, OpenClaw keeps daily logs in memory/YYYY-MM-DD.md files — a raw record of everything that happened. When you ask about something from two weeks ago, it does a hybrid search across these files using both keyword matching and semantic search to find the right context.

The memory compounds. Every preference you mention gets stored. Every task refines its model of how you work. Six months in, the agent knows your patterns better than most people you work with.


5. What It Can Actually Do

OpenClaw has terminal access, browser access, and file system access on whatever machine it runs on. That's what separates it from every AI you've used before. Here's what that means in practice:

Email and calendar management. It monitors your inbox during Heartbeat cycles, triages by urgency, drafts responses, and can act on calendar events. When a flight drops $200, it messages you. When a meeting request comes in from an important contact, it flags it immediately.

Terminal and file operations. Run shell commands, read and write files, manage processes. Developers use it to monitor servers — when something crashes, a webhook triggers OpenClaw, it reads the error logs, restarts the service, and sends you a summary of what happened and what it did.

Web browsing and scraping. It navigates websites using semantic snapshots (an accessibility-tree-based approach rather than screenshots) to find information, fill forms, and interact with pages. It can search Amazon for products that meet specific criteria and add the right ones to your Notion database.

Multi-agent teams. You can run multiple isolated agents under one Gateway, each with its own role and tool access. An Architect agent can hand off a task to a Coder agent, which hands off to a Reviewer agent — passing files back and forth locally to solve problems you couldn't tackle with a single context window.

Skills system: OpenClaw has a community marketplace called ClawHub with 700+ installable skills that extend what agents can do — smart home control, CI/CD triggers, GitHub integration, browser automation, and more. Treat every community skill like an untrusted dependency: read the SKILL.md before installing. 341 malicious skills were found on ClawHub in early 2026.


6. What It Costs and What the Risks Are

OpenClaw itself is free and MIT licensed. Your actual costs:

  • A server to run it: Free on your own machine, or €5–7/month on Hetzner, up to $28/month on DigitalOcean
  • API costs: Highly variable. Light usage with careful configuration runs $18–36/month. Active multi-agent setups with frequent Heartbeat cycles run $270–540/month. Misconfigured setups have hit thousands per month because the agent re-reads large amounts of context on every interaction. Set hard spending caps in your API provider dashboard before you start.

The security reality is serious. In January 2026, a critical remote code execution vulnerability (CVE-2026-25253, CVSS 8.8) was disclosed affecting 21,000+ exposed instances. It's patched now in version 2026.1.29, but it illustrates the fundamental risk: OpenClaw has terminal access and system-level permissions on whatever machine it runs on. A misconfigured instance, a malicious skill, or a prompt injection attack via a poisoned email can give an attacker the same access OpenClaw has — which is potentially everything.

Do not run OpenClaw on your main machine. Run it in an isolated VM or on a dedicated VPS. Never connect your personal accounts directly. Use dedicated accounts created specifically for each agent. Set up a firewall and don't expose port 18789 to the public internet without TLS and authentication.


7. Who It's For (And Who It Isn't)

OpenClaw is a good fit if:

  • You're comfortable with a terminal and don't mind debugging installation errors
  • You want an AI that takes action in the background rather than waiting for you to ask questions
  • You have repetitive monitoring or execution tasks that follow predictable patterns
  • You want local control over your data and don't want it processed by a SaaS you don't control

OpenClaw is not a good fit if:

  • You've never self-hosted anything and want something that works in five minutes
  • You need a 100% reliable, never-fails workflow — agentic AI is still experimental and can loop or fail on complex tasks
  • You're not ready to think carefully about what access you're granting and to what
  • You're planning to run it on the same machine that has your banking info, SSH keys, and personal files

Frequently Asked Questions

Who built OpenClaw?

Peter Steinberger, the Austrian developer who founded PSPDFKit (now Nutrient), released the original version as Clawdbot in November 2025. It rebranded twice — to Moltbot, then to OpenClaw — in under two months as it went viral.

Does it work with any AI model?

Yes. OpenClaw is model-agnostic. It works with Claude, GPT-4, Gemini, DeepSeek, and local models through Ollama. You can even configure it to automatically fall back to a different model if your primary API key hits a rate limit.

How is it different from n8n or Zapier?

n8n and Zapier run predefined if/then workflows. OpenClaw is an AI agent with judgment — it reads context, makes decisions, and handles situations that don't fit a predefined workflow. They're complementary tools, not competing ones. A lot of people use OpenClaw as an oversight layer that monitors and triggers n8n workflows.

Can it really run fully autonomously?

Yes, and that's both the feature and the risk. Cron jobs and Heartbeat run without any input from you. If you misconfigure what it has access to, that autonomy can cause real damage. Start with read-only permissions, audit what it's doing for the first week, and expand access incrementally.

Is the setup hard?

Harder than downloading an app, easier than most self-hosting projects. On Hetzner, expect 30–45 minutes following the documentation. You'll SSH into a server, install Docker, clone the repo, run the setup script, and connect a Telegram bot. If something breaks, Grok 4.1 in Thinking Mode is useful for debugging — paste your exact error and the step you're on.


The Bottom Line

OpenClaw is the most significant shift in personal AI tooling since ChatGPT. Not because it's smarter than other AI models, but because it's the first accessible tool that runs in the background, takes real actions, and gets more useful over time rather than forgetting everything when you close a tab.

That also makes it the most consequential tool to set up carelessly. Terminal access, always-on background monitoring, and a community skills marketplace with documented malware incidents are not a combination to hand to your business without guardrails.

But set up correctly — on an isolated server, with dedicated accounts and minimal permissions — and you have something genuinely new: an AI that does work instead of just talking about it.

Share this post

MORE FROM THE BLOG