review

OpenClaw Review: Is the "Free" AI Agent Actually Free?

OpenClaw is MIT-licensed and free to download, but LLM API bills can hit $200/month. Here's the real cost breakdown and how to keep it at $0.

Marcus ValeBy Marcus Vale · The craft & ownership purist
3.5/5
May 10, 2026
Verified May 2026

Marcus Vale is a fictional AI persona, not a real person. This article was written by AI and reviewed by a human editor before publishing. How we work →

OpenClaw Review: Is the "Free" AI Agent Actually Free?

Someone on the DEV Community posted about a $500 API bill they ran up in a weekend with an autonomous AI agent. The agent wasn't rogue — they just didn't realize the tool was polling an expensive LLM in the background every few seconds, even when it was idle.

That story is circulating now because it perfectly describes the trap. The software is free. The model it calls is not.

Here is exactly what OpenClaw costs, at every tier, and how to keep the bill at zero.

What Is OpenClaw, Actually?

Not an IDE — a messaging gateway for AI agents

OpenClaw is not a coding IDE. It does not open a project folder, suggest completions, or replace Cursor. Think of it more like a bridge: it connects chat apps you already use — WhatsApp, Telegram, Slack, Discord, iMessage — to an AI agent that can operate your computer on your behalf.

You send a message in Telegram. The agent reads it, decides what to do, runs shell commands or browses the web or edits files, and replies with results. All from your phone.

What it connects

OpenClaw supports around 24 messaging integrations out of the box. The most popular ones for beginners are:

  • WhatsApp and Telegram (work without extra config)
  • Slack and Discord (good for teams or automation bots)
  • iMessage (Mac only, requires Apple ecosystem)

You can also trigger it via a local REST API if you want to build your own front end.

What it can do

The agent runs on your machine with access to a shell. That means it can execute terminal commands, browse the web, read and write files, download things, and chain multi-step tasks together — all triggered by a chat message. Common use cases are: "summarize all the PDFs in this folder," "watch this directory and notify me when a new file appears," "run my test suite and DM me if anything fails."

Who built it and why it blew up

OpenClaw was created by Peter Steinberger, founder of PSPDFKit, confirmed on the project's GitHub repository.

The project surpassed 350,000 GitHub stars faster than most open-source tools accumulate in years. The appeal is obvious: it turns your phone into a remote control for an AI agent without paying for a SaaS subscription. MIT license means you can fork, self-host, and modify freely.

The "Free" Part — What That Actually Means

The software costs $0 — always

The OpenClaw codebase is MIT-licensed. You download it, run it, and there is no license fee, no usage cap, no metered tier. That part is genuinely free.

The LLM API is the bill

OpenClaw does not include an LLM. It is a shell that calls whichever model you point it at — OpenAI, Anthropic, Google, a local Ollama instance, whatever. You configure the API key. You pay that provider directly.

The cost varies by four to five orders of magnitude depending on which model you choose. That range is not an exaggeration — from literal $0 with a local model to $200+/month with heavy GPT-4o usage.

Why the heartbeat system burns tokens faster than you expect

OpenClaw runs a continuous polling loop to watch for new messages across your connected apps. Every message you send — including test messages, retries, and follow-ups in a running session — hits your LLM API and burns tokens. If you run the agent pointed at a premium model and send messages frequently throughout the day, the costs stack up faster than most beginners expect.

This is the pattern behind the "$500 bill" stories. The user assumed casual use was cheap. It wasn't.

Real Cost Breakdown: $0 to $200+/Month

Tier 1 — $0: Gemini free quota and local models

Two genuinely free options exist.

Gemini API free tier: Google offers free access to Gemini models through Google AI Studio. You can point OpenClaw at this endpoint using your free API key.

The free tier has rate limits that vary by model — as of May 2026, Gemini 2.5 Flash on the free tier allows around 10 requests per minute and 250 requests per day. Google reduced free tier quotas significantly in December 2025, so always confirm current limits at ai.google.dev before relying on them. These limits will throttle the polling loop rather than bill you. For light personal use, the limits are workable. For heavy use or running the agent 24/7, you will hit the cap and the agent will pause rather than charge you — which is actually the safest behavior for beginners.

See is Gemini good for coding? for more on using Gemini's free tier across AI tools.

Local models via Ollama: Run Llama 3.1 8B on your own machine. Zero API cost. The trade-off is quality — local models at the 8B parameter range are noticeably weaker at multi-step reasoning than frontier models, and they require a machine with enough RAM to run them (16 GB minimum, 32 GB comfortable).

Tier 2 — $5–$20/month: cheap cloud models

If free tier limits are too restrictive, move to cheap cloud models:

  • Gemini Flash — Google's fastest, cheapest model. Very capable for most agent tasks.
  • Mistral — competitive pricing, good instruction following.
  • DeepSeek — aggressive pricing from a Chinese AI lab, strong at code tasks.

At typical personal-use volumes, these cost $5–$20/month. The exact number depends entirely on how many messages you send and how long your context windows are.

Tier 3 — $50–$200+/month: premium models

GPT-4o ($2.50/M input, $10/M output) and Claude Sonnet ($3/M input, $15/M output) are genuinely excellent for complex multi-step agent tasks. They are also expensive at scale. If you run OpenClaw pointed at either of these models 24/7 with frequent use, expect $50–$200+/month. Heavy power users have reported higher.

This is not a knock on the models — it is a knock on using them for always-on background polling without understanding the cost model first.

The "$500 bill" story: what went wrong and how to prevent it

The pattern behind every large unexpected bill is the same: user sets up an agent pointed at a premium model, leaves it running overnight or over a weekend, comes back to a large invoice.

Three things prevent this:

  1. Set a spending cap in your API provider dashboard. Every major provider (OpenAI, Anthropic, Google) lets you set a hard monthly limit. The API stops working when you hit it — which is better than an unlimited bill.
  2. Start with Gemini free tier. Rate limits act as a natural spending cap.
  3. Disable the agent when not actively using it. Do not leave it running idle against a paid model.

Setup Reality Check

What you actually need

  • Node.js 22.16+ (Node 24 recommended)
  • A terminal (Mac and Linux users are fine; Windows users need WSL2)
  • An API key from whichever model provider you choose

Windows support through WSL2 is strongly recommended by the OpenClaw documentation, though not listed as an absolute requirement.

Time to first working agent: honest estimate

If you are comfortable in a terminal and have used an API key before, budget 30–45 minutes to get OpenClaw running with a Telegram bot and the Gemini free tier. If either of those is new to you, budget 2–3 hours and expect to troubleshoot at least one configuration step.

The most common sticking points are: getting the messaging app bot token set up correctly (Telegram is easiest), and understanding how to configure the model endpoint in the OpenClaw config file.

Who should and shouldn't bother

Good fit:

  • You want to control your computer or run tasks remotely via phone
  • You like tinkering with open-source tools
  • You are comfortable with the terminal and don't mind occasional debugging

Not a good fit:

  • You want a coding IDE with AI completions (use Cursor vs Claude Code for beginners instead)
  • You want a managed, no-config experience
  • You are not comfortable with terminal setup at all

OpenClaw vs Goose vs Claude Code — Which Agent Is Right for You?

These three tools get compared constantly in forum threads. They are solving different problems.

| | OpenClaw | Goose | | |---|---|---|---| | Setup effort | Medium (WSL2 on Windows, messaging bot config) | Low (installer, desktop UI) | Low (npm install) | | Cost floor | $0 (Gemini free or Ollama) | $0 (local models) | Paid (Claude API required) | | Best use case | Remote phone control of your machine | Local autonomous coding agent | Deep coding tasks in your codebase | | LLM flexibility | Any (you bring your own) | Any (you bring your own) | Claude only | | Coding IDE replacement? | No | Partial | Yes |

OpenClaw's unique value is the messaging gateway — controlling your machine from a chat app on your phone. Goose is a closer match if you want an agent for coding tasks on your desktop without the phone-remote angle. Claude Code is the choice if you want the strongest coding-specific agent and are already paying for Claude. See best free AI coding tools 2026 for the wider landscape.

Verdict: Worth It If You Pick the Right Model

OpenClaw is genuinely useful and genuinely free — but only if you make a deliberate model choice upfront. Default to Gemini free tier or a local Ollama model to start. Get familiar with how the agent behaves and how many tokens your typical sessions use before moving to a paid model.

The recommended starter pairing for beginners: OpenClaw + Gemini free API via Google AI Studio. You get a capable frontier model, zero cost, and rate limits that act as a built-in spending guard.

When to upgrade: move to Gemini Flash ($5–$20/month range) when you are hitting free tier rate limits regularly and the agent is actively useful to you. Move to GPT-4o or Claude Sonnet only when you have a specific task where the quality difference is clearly worth the cost jump — and after you have set a hard spending cap in your provider dashboard.

The software is free. Keep the model cheap until you know you need the expensive one.

The StackBrief weekly

New reviews and the AI-coding-tool news worth knowing — with our take. One email a week, unsubscribe anytime.

Keep reading