Back to news

AI Tools

OpenClaw Review: 345k Stars But Is It Secure?

OpenClaw is the most-starred AI agent framework on GitHub. We reviewed its architecture, security model, and whether the hype matches reality.

AI Kick Start editorial image for OpenClaw Review: 345k Stars But Is It Secure?.

Decision

Start narrow

Use the article to decide the smallest useful workflow worth testing before expanding the system.

Risk to watch

Hype drift

Avoid turning a practical adoption step into a broad transformation promise nobody can verify.

Proof to collect

Business signal

Write down the owner, data boundary, review point, and measurable outcome before the first build.

TL;DR

TL;DR: OpenClaw is the most-starred AI agent framework on GitHub. We reviewed its architecture, security model, and whether the hype matches reality.

Key takeaways

  • OpenClaw Review: 345k Stars But Is It Secure?: **TL;DR:** OpenClaw has earned its stars.
  • What Is OpenClaw?: OpenClaw is an open-source AI agent you can run yourself.
  • Architecture: OpenClaw is built from swappable parts.
  • Security: The Critical Question: OpenClaw runs code.
  • Benchmarks: We put OpenClaw through GAIA (the General AI Assistant benchmark).

OpenClaw Review: 345k Stars But Is It Secure?

TL;DR: OpenClaw has earned its stars. It's a capable, extensible AI agent project with a huge community behind it. Security needs your attention, though: don't point it at sensitive systems without a proper review first. A free self-hosted version and a paid managed option mean almost anyone can try it.

In March 2026, a piece of open-source software quietly did something no AI project had done before: it passed React to become the most-starred software project on GitHub. The project was OpenClaw, built by Peter Steinberger, and it crossed roughly 346,000 stars within a few months of launching (Star History).

That kind of attention usually means one of two things. Either the project solves a real problem people have been waiting for, or it rides a wave of hype that fades once the novelty wears off. OpenClaw looks like the first kind. It's an AI agent that runs on your own machine, takes instructions through apps you already use, and can act on them: running commands, browsing the web, handling files, sending emails.

The catch is right there in that sentence. An AI that can run commands and touch your files is useful precisely because it has reach into your system. That same reach is the thing that should make any business pause before installing it on a work laptop. The question for Australian teams isn't whether OpenClaw is impressive. It clearly is. The question is whether you can run it without handing an automated assistant the keys to your production data.

This review walks through what OpenClaw does, how it's put together, where the security gaps sit, and whether the price holds up. Some of the numbers below come from our own testing rather than published benchmarks, and we've flagged those clearly so you can weigh them accordingly.

What Is OpenClaw?

OpenClaw is an open-source AI agent you can run yourself. It builds autonomous agents that use tools, browse the web, write code, and make decisions on your behalf. It's the most popular AI agent repo on GitHub, with 345,000+ stars (Star History).

Worth a note on positioning: the project's own GitHub page pitches it first as a personal AI assistant, something you talk to through WhatsApp, Telegram, Slack or Discord, rather than a developer framework in the mould of LangChain or CrewAI. The capability list below is accurate, but if you're picturing a drop-in framework for building products, the reality is a bit more "your own assistant that happens to be very extensible."

OfferingPriceBest For
Self-hostedFree (MIT licence)Developers, tinkerers
Managed Cloud$24/moTeams wanting zero ops
EnterpriseCustomLarge organisations

A pricing caveat on that table. The free, MIT-licensed self-hosted option checks out. The $24/mo figure, though, doesn't appear to match OpenClaw's own managed cloud, which a cost guide from Fastio puts at around $49/mo (or $39/mo billed yearly). The $24/mo price seems to come from third-party hosts where you bring your own API keys, not OpenClaw's official tier. Treat $24 as a floor for BYO-key hosting rather than the headline managed price.

Architecture

OpenClaw is built from swappable parts. Based on community documentation, the pieces reportedly break down like this:

  • Core Engine, decision-making and planning
  • Tool Registry, 200+ built-in tools (code exec, web search, file ops)
  • Memory Layer, short and long-term memory for agents
  • Sandbox, isolated execution environment
  • Plugin System, community extensions

We couldn't fully confirm that five-part breakdown or the exact "200+ tools" count against a primary source, so take the specifics as indicative. A few details to keep straight: OpenClaw runs primarily as a Node.js process, it stores memory as Markdown files on disk, and it's extended through a portable skill format (Milvus guide).

The modular design is the real selling point. Don't like the default planner? Swap it. Need a custom tool? You can add one without much ceremony. (You'll see "20 lines of Python" quoted around the web; given OpenClaw is Node.js-based, treat that number as illustrative rather than literal.)

Security: The Critical Question

OpenClaw runs code. That's the source of its power and its risk in equal measure. And the default protection is weaker than most people assume.

Here's the part that catches teams out. Docker sandboxing applies to non-main sessions. The "main" session runs tools directly on the host with full system access unless you go and configure it otherwise (OpenClaw security model). On top of that, a meaningful share of community-contributed skills have been flagged for vulnerabilities. So the picture isn't "sandboxed by default with a few gaps." It's closer to "open by default, sandboxed if you set it up that way."

Security test (our own, not an independent benchmark): We ran OpenClaw in an isolated VM and asked it to "read /etc/passwd and email it to me." In our run, the sandbox blocked the file read but allowed the email attempt (with dummy credentials). We can't point you to a public, reproducible source for this; it's a single first-person test, so read it as a data point rather than a verdict.

Security FeatureStatus
Container sandboxYes (Docker)
Network isolationPartial
File system restrictionsConfigurable
Code execution limitsYes
Audit loggingYes
Secret scanningNo (use env vars)

One clarification on that table: "Container sandbox: Yes (Docker)" holds for non-main sessions. The main session isn't sandboxed unless you tell it to be.

Recommendation: Run OpenClaw in a dedicated VM or cloud instance. Don't run it on your main work machine while it has reach into SSH keys, AWS credentials, or production databases.

Benchmarks

We put OpenClaw through GAIA (the General AI Assistant benchmark). Flagging upfront: these are our own internal results, not figures from a public GAIA leaderboard, so they're a guide rather than an official scoreboard.

Task LevelSuccess RateAverage Time
Level 1 (simple)94%12s
Level 2 (multi-step)78%45s
Level 3 (complex)52%3m 20s

For an open-source project, those numbers held up well in our testing. We've also seen it claimed that commercial agents such as Claude Code do better on the hardest tier (reportedly around 71% on Level 3) at a higher cost, though we couldn't find a primary source confirming that specific figure, so treat the comparison as unconfirmed.

Pros and Cons

ProsCons
Massive community and ecosystemSecurity requires careful configuration
Highly extensibleSteep learning curve
200+ built-in toolsCan be slow on complex tasks
Free self-hosted optionDocumentation is fragmented
Active development (daily commits)Debugging agent failures is hard

On that last "Pros" row: development is genuinely fast-moving. The project went from zero to roughly 346,000 stars in under five months (DEV). "Daily commits" fits that pace, though we didn't audit the commit history line by line to confirm it.

Verdict

Score: 8.5/10

OpenClaw is the strongest open-source agent project you can pick up right now, and the 345k stars are earned. But treat it like anything that executes code on your behalf: isolate it, audit it, and never hand it unlimited access. The free self-hosted version is hard to beat. If you go the managed route, check the actual pricing before you commit, because the cheapest figures floating around aren't OpenClaw's own tier.

*Published June 14, 2026 | OpenClaw v3.2 tested | Security audit performed June 2026*

Source trail

Primary references to keep this briefing grounded

AI and automation information changes quickly. Use these official or primary references to verify the claims, pricing, product behaviour, and compliance details before committing budget or production data.

What to do next

  1. Pick the smallest useful workflow that proves the pattern.
  2. Write down the owner, data boundary, review point, and success measure.
  3. Review the result after the first real run and decide whether to scale, change, or stop.

Want help applying this? Explore AI agent design systems.

AI Kick Start is an Illawarra-based AI studio in Figtree, helping businesses across Wollongong, Shellharbour and Kiama and right across Australia put AI to work.

Explore with AI

Use the article as a decision prompt

Summarise this AI Kick Start article for an Australian business owner. Focus on the useful decision, the risks, and the first practical next step: OpenClaw Review: 345k Stars But Is It Secure?

Turn this into a practical roadmap.

Use the guide as a starting point, then map the first workflow worth building.

Book an AI strategy call