Skip to main content
PromptQuorum
Home/Power Local LLM/OpenClaw Review 2026: Renamed Twice, Now Run by a Nonprofit
Local AI Agents & Tool Use

OpenClaw Review 2026: Renamed Twice, Now Run by a Nonprofit

Β·12 min readΒ·By Hans Kuepper Β· Founder of PromptQuorum, multi-model AI dispatch tool Β· PromptQuorum

OpenClaw is an open-source, MIT-licensed AI agent gateway that runs a language model against your own messaging apps and machine β€” not a chatbot you visit, but a background service that reaches you on WhatsApp, Discord, Slack, and 25+ other channels and can run shell commands, control a browser, and touch your files when you ask it to. It began as a solo project in November 2025, changed its name twice in three days after a trademark dispute with Anthropic, and is now stewarded by a nonprofit foundation after its creator, Peter Steinberger, joined OpenAI in February 2026.

OpenClaw is an open-source AI agent gateway: a persistent background service that connects a language model to messaging apps you already use β€” WhatsApp, Telegram, Discord, Slack, Signal, iMessage, and more β€” and lets it run shell commands, control a browser, read and write files, and manage a calendar or inbox, all triggered by a text message. It started in November 2025 as a personal project called Clawdbot, was renamed twice within three days in January 2026 after a trademark dispute with Anthropic, and by February 2026 had been handed to a nonprofit foundation after its creator joined OpenAI. It has also accumulated 647 published security advisories in that time.

Key Takeaways

  • Open-source AI agent gateway: connects an LLM to WhatsApp, Telegram, Discord, Slack, Signal, iMessage, and 25+ other channels
  • Can run shell commands, control a browser, read/write files, and manage calendar or email β€” triggered by a text message
  • Started November 2025 as "Clawdbot"; renamed to "Moltbot" then "OpenClaw" within 3 days in January 2026 after Anthropic's trademark dispute over "Clawd"
  • Creator Peter Steinberger joined OpenAI in February 2026; project handed to the nonprofit OpenClaw Foundation, chaired by Dave Morin, sponsored by OpenAI
  • 647 published GitHub security advisories (Jan–Jun 2026): 14 critical, 219 high, 350 medium, 64 low
  • A disclosed unauthenticated RCE chain (3 CVEs, CVSS up to 8.8) via a single WhatsApp message, patched in version 2026.6.6
  • MIT licensed, 388,916 stars, current release v2026.9.1

πŸ“ In One Sentence

OpenClaw is an open-source, MIT-licensed AI agent gateway that connects a language model to messaging apps like WhatsApp and Discord and lets it run shell commands, control a browser, and manage files on your machine, with an unusually public and extensive security-advisory history (647 published in its first six months).

πŸ’¬ In Plain Terms

Instead of opening a chat window, you text an AI agent the same way you'd text a person β€” on WhatsApp, Telegram, Slack, whatever you already use β€” and it can actually go do things on your computer, not just reply with text. That power is also the risk: every advisory in its 647-item security history traces back to exactly that capability.

πŸ“ŒNote: This review covers OpenClaw as of v2026.9.1 (September 2026). Given its release pace (multiple versions per week) and its unusually active security-advisory history, verify current status directly on the repository before deploying it, especially with real messaging accounts and file-system access.

What Is OpenClaw?

OpenClaw (github.com/openclaw/openclaw) is an open-source AI agent gateway β€” a persistent background service, not a chat window you visit β€” that runs on your own machine and reaches you through messaging apps you already use. Its own description states it plainly: "The AI that really does things. Any OS. Any Platform." At its center is the Gateway, a daemon that manages connections to messaging channels, routes incoming messages to agent sessions, and handles scheduling.

  • Talks to you through WhatsApp, Telegram, Discord, Slack, Signal, iMessage, and other channels (documentation cites 29 supported channels)
  • Can run shell commands, control a browser, read and write files, manage a calendar, and send emails β€” all from a text message
  • Works with OpenAI, Google Gemini, Mistral, local models via Ollama, and effectively any provider with an API
  • State (transcripts, memory index) lives on your own machine rather than a vendor cloud, per the project's stated design goal
  • Processes messages within a session one at a time via a Command Queue, to keep tool use and session history consistent
  • Homepage: openclaw.ai

From Clawdbot to Moltbot to OpenClaw

OpenClaw did not start as OpenClaw. Austrian software engineer Peter Steinberger, founder of the PDF-tooling company PSPDFKit, built a personal AI assistant for himself named "Clawd" β€” a playful nod to Anthropic's Claude β€” and open-sourced a more capable version on GitHub in November 2025 under the name Clawdbot.

On January 27, 2026, Anthropic's legal team sent a trademark notice: "Clawd" was judged phonetically too close to "Claude." Steinberger leaned into the project's lobster mascot β€” lobsters molt to grow β€” and renamed it Moltbot that same day, with the agent persona becoming "Molty." Three days later, on January 29, 2026, he renamed it again to OpenClaw, saying "Moltbot" never quite rolled off the tongue. The second rename, executed with deliberate secrecy and coordinated timing to avoid a repeat incident, referenced both the project's open-source nature and its lobster heritage.

The transition was not clean. When Steinberger attempted to rename the GitHub organization and the project's X/Twitter handle simultaneously, crypto scammers seized the briefly-abandoned handles within roughly 10 seconds and promoted a fake "$CLAWD" token on Solana that reached a reported market capitalization above $16 million before Steinberger publicly denounced it as a scam. Typosquat domains and a cloned GitHub repository also appeared in the following days.

In February 2026, Steinberger announced he was joining OpenAI and that a nonprofit foundation would take over stewardship of the project. The OpenClaw Foundation formally launched with 501(c)(3) nonprofit status, a first full-time team of ten across engineering and operations, and is chaired by entrepreneur and investor Dave Morin. OpenAI committed to sponsoring the foundation while OpenClaw remains open source under the MIT license.

πŸ“ŒNote: The scam-token and domain-squatting incidents around the January 2026 rename were directed at abandoned social/GitHub handles during the transition window, not a vulnerability in the OpenClaw software itself. They are included here because they shaped the project's public reputation and are frequently conflated with its separate, software-level security advisories covered below.

How OpenClaw Works

OpenClaw's architecture centers on the Gateway: a persistent daemon that manages every messaging-channel connection, routes incoming messages to the right agent session, and handles scheduled or background tasks. Within a single session, messages are processed one at a time through a Command Queue rather than in parallel β€” the project's own documentation explains this is deliberate, to prevent tool conflicts and keep session history consistent. Conversation transcripts are indexed into a local SQLite database with vector search, and the agent runs a memory-search query against that index before answering, rather than relying only on the current conversation's context window.

  • Gateway: persistent background daemon managing channel connections, message routing, and scheduling
  • Command Queue: serializes message processing per session to prevent tool conflicts
  • Local memory: transcripts indexed into SQLite with vector search, queried before each response
  • Model-agnostic: OpenAI, Google Gemini, Mistral, local models via Ollama, or any API-compatible provider
  • Team mode: a shared gateway with sessions multiple people can open and steer, live presence, and commits credited to individual team members
  1. 1
    macOS or Linux: run curl -fsSL https://openclaw.ai/install.sh | bash in a terminal.
  2. 2
    Windows: run iwr -useb https://openclaw.ai/install.ps1 | iex in PowerShell.
  3. 3
    Already manage Node.js yourself? Install the published package instead: npm install -g openclaw@latest --allow-scripts=openclaw (npm 12, or npm 11.16+).
  4. 4
    The installer launches an onboarding wizard automatically β€” choose Quick start to reuse detected AI access and open the dashboard, or Custom setup for the full guided flow.
  5. 5
    Quick start keeps the Gateway running in the foreground. For background operation, stop it with Ctrl+C, then run openclaw gateway install.
  6. 6
    Run openclaw dashboard to open the Control UI in your browser and confirm the Gateway is reachable; send it a test message to confirm the model connection works.

Security Track Record

OpenClaw's security history is unusually well-documented, and unusually large, for a project of any age. Per GitHub's own security-advisories API, the project published 647 advisories between January 31 and June 30, 2026: 14 rated critical, 219 high, 350 medium, and 64 low. No new advisories had been published between July and this review's September 2026 snapshot, though that gap reflects this review's data pull, not a guarantee the pace has permanently slowed β€” check the repository's live advisory feed for the current count.

The most serious disclosed issue was reported by security researcher Chinmohan Nayak: three high-severity vulnerabilities (GHSA-hjr6-g723-hmfm, GHSA-9969-8g9h-rxwm, both CVSS 8.8; GHSA-575v-8hfq-m3mc, CVSS 8.4) that together formed an unauthenticated remote-code-execution chain triggerable by a single WhatsApp message. It affected versions through 2026.6.1 and was patched in 2026.6.6.

Separately, in the days after the January 2026 rename, security firm Malwarebytes and other researchers reported over 1,000 publicly exposed OpenClaw instances leaking API keys, private chat histories, and system credentials β€” a configuration and deployment problem (unsecured public exposure) rather than a code vulnerability in OpenClaw itself.

Published advisories (Jan–Jun 2026)

What it shows:
647 total: 14 critical, 219 high, 350 medium, 64 low

Most severe disclosed issue

What it shows:
Unauthenticated RCE chain via WhatsApp message, CVSS up to 8.8, patched in 2026.6.6

Exposed-instance incident

What it shows:
1,000+ public instances found leaking API keys and chat histories (deployment misconfiguration, not a code flaw)

Disclosure process

What it shows:
Advisories published through GitHub's standard security-advisory workflow, with CVE/GHSA identifiers and CVSS scores

πŸ“ŒNote: We did not run our own security audit of OpenClaw for this review. Every figure above comes from GitHub's public security-advisories API or named, dated reporting (Forbes, Malwarebytes, and the named researcher's own disclosure), not from testing PromptQuorum performed. A large advisory count is not automatically damning β€” it can reflect either a genuinely large attack surface (OpenClaw touches shell, browser, files, and email) or an unusually rigorous disclosure process, and the two are not mutually exclusive here. Verify the current advisory count and your installed version against the repository before deploying it with real accounts or file-system access.

Is OpenClaw Still Maintained?

Yes, actively. The repository was pushed to within hours of this review's research, and OpenClaw ships new versions roughly every few days β€” the five most recent tags at review time were v2026.9.1, v2026.8.2, v2026.8.1, and two beta releases, spanning less than two weeks.

Governance changed hands in February 2026: creator Peter Steinberger joined OpenAI, and stewardship passed to the nonprofit OpenClaw Foundation (501(c)(3) status, chaired by Dave Morin, a first full-time team of ten across engineering and operations, sponsored by OpenAI). The project remains MIT licensed under that arrangement. As of this review, the foundation had not published detailed public governance documents, so exactly how technical and roadmap decisions are made day-to-day is not fully transparent from the outside.

Repository activity

What it shows:
Pushed within hours of this review; releases roughly every few days

Current release

What it shows:
v2026.9.1

Star count

What it shows:
388,916 stars, 81,708 forks

Governance

What it shows:
Nonprofit OpenClaw Foundation (501(c)(3)), chaired by Dave Morin, sponsored by OpenAI, since February 2026

Who Should Use OpenClaw?

The right fit depends heavily on your tolerance for a young, fast-moving, and unusually security-scrutinized project having real access to your accounts, files, and shell.

OpenClaw vs. Alternatives

OpenClaw's combination of messaging-channel reach and full machine control does not have an exact peer in this directory. The closest comparisons split across two different axes: other broad personal-agent gateways, and narrower single-purpose agents that trade OpenClaw's reach for a smaller attack surface.

Tool
Interface
License
Best For
OpenClawMessaging apps + GatewayMITCross-channel personal agent, full machine access
gooseDesktop, CLIApache-2.0Coding/automation agent, Linux Foundation-governed
n8nWeb, self-hostedFair-codeWorkflow automation with AI/LLM nodes
Open InterpreterTerminal, ACP-compatibleApache 2.0Scoped terminal coding agent for open models
OnyxWeb, self-hostedMITEnterprise search + RAG, any model provider
AutoGPT (classic)CLI, autonomous loopMITUnscoped autonomous-agent experiments

Common Mistakes

  • Confusing the January 2026 scam-token and typosquat-domain incidents (which targeted abandoned social/GitHub handles during the rename) with a vulnerability in OpenClaw's own code β€” they are separate issues covered in different sections above
  • Exposing a Gateway instance to the public internet without authentication, which is exactly the misconfiguration behind the 1,000+-instance exposure incident, rather than keeping it on a private network or behind proper access controls
  • Running an outdated version against a project that ships new releases every few days and has published 647 security advisories β€” check your installed version against the current release before assuming you are patched
  • Granting full shell, file, and messaging-account access without first reading OpenClaw's permission and channel-disablement settings, given the documented history of permission-related advisories (including per-account tool disablement being ignored, as in GHSA-2q7j-2vhx-56g8)

Frequently Asked Questions

What is OpenClaw?

OpenClaw is an open-source, MIT-licensed AI agent gateway that connects a language model to messaging apps like WhatsApp, Telegram, Discord, and Slack, and lets it run shell commands, control a browser, read and write files, and manage a calendar or email, all triggered by a text message.

Is OpenClaw the same as Clawdbot or Moltbot?

Yes. OpenClaw is the same project, renamed twice within three days in January 2026: first from Clawdbot to Moltbot after an Anthropic trademark dispute over the name "Clawd," then from Moltbot to OpenClaw three days later.

Who created OpenClaw and who runs it now?

Austrian software engineer Peter Steinberger, founder of PSPDFKit, created the project as Clawdbot in November 2025. In February 2026 he joined OpenAI, and stewardship passed to the nonprofit OpenClaw Foundation, chaired by Dave Morin and sponsored by OpenAI, while the project remains MIT licensed.

Is OpenClaw safe to use?

It depends on configuration and how current your installed version is. OpenClaw has published 647 security advisories (14 critical, 219 high, 350 medium, 64 low) between January and June 2026, including a now-patched unauthenticated remote-code-execution chain triggerable via a single WhatsApp message. Its shell, file, and browser access are powerful by design β€” review its permission model before granting broad access, and keep it updated given its frequent release cadence.

What is the OpenClaw Gateway?

The Gateway is OpenClaw's core component: a persistent background daemon that manages connections to messaging channels, routes incoming messages to agent sessions, and handles scheduled tasks. Within one session, it processes messages one at a time through a Command Queue to keep tool use and session history consistent.

What models does OpenClaw work with?

OpenClaw is model-agnostic. It works with OpenAI, Google Gemini, Mistral, local models via Ollama, and effectively any provider with a compatible API.

How do I install OpenClaw?

On macOS or Linux, run curl -fsSL https://openclaw.ai/install.sh | bash. On Windows, run iwr -useb https://openclaw.ai/install.ps1 | iex in PowerShell. If you already manage Node.js, you can instead run npm install -g openclaw@latest --allow-scripts=openclaw. The installer launches an onboarding wizard automatically.

Is OpenClaw free?

Yes. It is MIT licensed, which permits free use, modification, and redistribution, including inside a commercial product.

What happened with the $CLAWD token?

During the January 2026 rename, crypto scammers briefly seized the project's abandoned GitHub organization and X/Twitter handles and promoted a fake "$CLAWD" token on Solana, which reportedly reached over $16 million in market capitalization before Steinberger publicly denounced it as a scam. It was not created or endorsed by the OpenClaw project.

How does OpenClaw compare to n8n or goose?

n8n is a workflow-automation platform with AI nodes, better suited to structured business processes than open-ended personal-assistant tasks. goose is a Linux Foundation-governed coding and automation agent with a narrower scope than OpenClaw's cross-channel reach. OpenClaw's distinguishing feature is that it reaches you through messaging apps you already use and can act broadly on your machine from there β€” a wider capability surface than either alternative, with a correspondingly larger documented security history.

Sources

← Back to Power Local LLM