Bonrock
Back to articles
AI Strategy5 min read

OpenClaw: Your AI Agent Lives on Your Machine, Not Theirs

OpenClaw runs a persistent AI agent on your own server, connected to Telegram, WhatsApp, Discord, and iMessage. Self-hosted, open-source, and fully under your control.

The thing nobody says out loud about AI assistants: your most capable one knows everything about you and runs on servers you don't control.

ChatGPT knows what you've been working on. Claude knows your drafts. Cursor knows your codebase. These are the tools people actually use, and every prompt goes through someone else's infrastructure, gets logged, gets used for one purpose or another. For casual users this is a reasonable tradeoff. For anyone who takes the "assistant" part seriously, it deserves more thought than most people give it.

OpenClaw is the other path: your agent, your machine, your rules.

What It Is

OpenClaw is an open-source gateway daemon that runs a persistent AI agent on a server you control. Persistent means it doesn't disappear when you close a tab; it runs in the background, maintains its own memory, and acts on things when it decides they need acting on.

You install it on a VPS, a Raspberry Pi, a Mac, or a Linux box. It connects to the messaging apps you already use: Telegram, WhatsApp, Discord, iMessage, Signal, Slack. Then you message it the way you'd message a person, and it handles things. It also checks in proactively when something needs your attention without being asked.

You configure the model. OpenClaw supports Anthropic, OpenAI, OpenRouter, Ollama for local models, and a dozen others. Routine tasks run on Claude Sonnet. Sensitive work runs on a local model that never leaves your machine. You're not locked into one company's pricing or policy decisions.

The Workspace Is the Actual Insight

Most AI assistants manage context as a problem to minimize: they compress it, forget it, start over each session. OpenClaw manages context as a feature to maintain.

The agent has a workspace directory with files it reads at the start of every session:

  • SOUL.md: how the agent should behave, what it values, its limits
  • USER.md: context about you, including name, timezone, and what matters to you
  • MEMORY.md: curated long-term memory the agent writes and updates over time
  • Daily log files where it records what it did and what it learned

The agent starts fresh each session but immediately reads these files. Continuity is kept as documents, which can be written, edited, pruned, version-controlled, and backed up rather than as a growing conversation history that becomes unmanageable.

This makes your agent's memory portable. Move it to a different machine: copy the files. Switch model providers: same files. Want to see what your agent thinks it knows about you: open MEMORY.md. Want to correct something it got wrong: edit the file. No black box.

Heartbeats Are What Make This Different From a Chat Interface

Every commercial AI assistant waits for you to ask something. An assistant that notices things and brings them to you without being asked is a different kind of system.

OpenClaw supports heartbeats: scheduled check-ins where the agent looks at what needs attention and acts on it without being asked. Every 30 minutes by default (configurable), it wakes up, reads a HEARTBEAT.md file you control, and does whatever is on the list. Scan your inbox for anything urgent, check for upcoming calendar events, verify a deployment is healthy, whatever you care about.

If nothing needs your attention, it stays quiet. If something needs action, it messages you. The threshold is yours to define.

The Skills System Extends What It Can Do

OpenClaw has a skills system: modular instruction sets that live as directories on your machine. A skill is a folder with a SKILL.md file. The file describes when the skill applies and what it does. You can write your own for tasks specific to your workflows, or install community skills from ClawHub.

Skills can include scripts, reference files, templates, anything the task requires. Built-in examples: weather lookups, running Claude Code or Codex as subagents, security audits, tmux remote control. Because skills are just files, they're inspectable, modifiable, and shareable. There's no proprietary extension format; it's the same text files the agent reads for everything else.

A Note About the Origin Story

OpenClaw has an unusually honest origin story for a developer tool.

It started as Warelay, a WhatsApp gateway with a persistent AI instance named Clawd living inside it. In January 2026, Anthropic sent a trademark letter. The community gathered at 5am on Discord to pick a replacement name. Hundreds of proposals came in: Shelldon, Pinchy, Thermidor, Crusty, Lobstar. OpenClaw won.

Then: Twitter bots grabbed the handle within seconds of the rename announcement. Someone's personal GitHub account was accidentally renamed. Crypto scammers launched $OPENCLAW before the new name was an hour old. The creator watched it happen and called it "cinema."

The lobster mascot, Molty, carries a creed that includes "I shall not dump directories to strangers," a reference to an actual early incident where the agent shared its entire file structure in a group chat. The bugs became the lore.

Who This Is Actually For

The honest version: OpenClaw is for people who are comfortable running a VPS and care more about control than convenience.

If you don't want to manage a server, there are products that are genuinely better for you. The setup isn't hard, but it's yours to maintain. No support line, no managed updates, no guarantee that the Discord community has answers to your specific problem.

If you do want control over your data, your model choices, your agent's behavior, and your credentials, this is a different proposition than anything commercial. Your agent connects to your actual infrastructure, with your actual keys, on your actual machine. It can do anything you can do.

The alternative is renting access to someone else's idea of what an AI assistant should be. For anything where continuity, privacy, and trust actually matter, that tradeoff is worth thinking through.

The lobster runs on your machine. The claw is the law.