OpenClaw AI: What It Is and How to Use It for Free

Updated June 2026  ยท  By Jarrod Gravison

Quick Answer: OpenClaw is a free, MIT-licensed AI agent you install on your own machine. It connects to messaging apps like WhatsApp, Telegram, and Discord, then uses any AI model you choose – including several with generous free tiers – to act as an autonomous personal assistant. Setup takes about 5 minutes.

Most people stumble onto OpenClaw after asking the same frustrated question: why do I have to use a browser tab to talk to an AI? OpenClaw answers that question by meeting you where you already are – your phone, your favourite chat app, your terminal. The project exploded from a hobby prototype in November 2025 to one of the fastest-growing open-source AI projects ever, and the reason is simple: it works, it is free, and it actually does things rather than just answering questions.

This guide covers what OpenClaw is, how it works, and – critically – how to run it at zero cost by pairing it with free-tier AI models. If you have been paying monthly fees for an AI assistant, you may not need to keep doing that.

What Exactly Is OpenClaw?

OpenClaw is a free and open-source autonomous AI agent, licensed under the MIT License and available on GitHub. According to its Wikipedia entry, it was first published on November 24, 2025, by Austrian engineer Peter Steinberger under the name “Warelay.” Within two months it passed through several rebranding moments – Clawdbot, then Moltbot – before settling on OpenClaw on January 30, 2026.

The name Moltbot was abandoned because, in Steinberger’s own words, it “never quite rolled off the tongue.” OpenClaw stuck, and the lobster theme continued – a nod to the idea of an agent that can grab and handle things for you.

Unlike ChatGPT or Claude, OpenClaw is not a model – it is infrastructure. You bring your own AI model (or use a free one), and OpenClaw acts as the orchestration layer: managing sessions, connecting to your messaging apps, running tools like web search and file management, and executing multi-step autonomous tasks without you needing to babysit every step.

By March 2026, the project had reached 247,000 GitHub stars and 47,700 forks – numbers that put it in the same league as the most popular open-source projects of the decade. Chinese developers adapted it to work with DeepSeek and WeChat, companies like Tencent and Z.ai announced OpenClaw-based services, and the project attracted endorsements from figures including Andrej Karpathy.

How Does OpenClaw Work Under the Hood?

OpenClaw runs a local process called the Gateway, which serves as the hub for all activity. The Gateway listens on port 18789 by default and handles three main jobs:

  • Channel management – it connects to your messaging apps (Telegram, WhatsApp, Discord, Signal, Slack, iMessage, and more) and routes incoming messages to the right AI session.

  • Model routing – it forwards your messages to whichever AI model provider you have configured, whether that is Anthropic, OpenAI, Google Gemini, Groq, or a locally running Ollama instance.

  • Tool execution – when the AI decides it needs to search the web, read a file, run code, send a message, or set a reminder, the Gateway executes that action on your behalf.

The agent also supports a skills system called ClawHub, where community-built and official skill packs extend what the AI can do. Skills range from basic calendar and email integrations to specialised tools for developers, traders, and researchers. Configuration lives in a single file at ~/.openclaw/openclaw.json, making it straightforward to customise.

OpenClaw is written in TypeScript and Swift, and officially supports macOS, Linux, and Windows (via native install or WSL2). The minimum requirement is Node.js 22.19 or higher, with Node 24 recommended.

How Can You Run OpenClaw for Free?

The software itself costs nothing – MIT license, download it, done. The ongoing cost depends entirely on your choice of AI model. Here is where the free options live:

  • Google Gemini Flash (free tier) – Get a free API key at ai.google.dev. Gemini Flash offers 15 requests per minute on the free tier, which is more than enough for casual daily use. Gemini is a built-in provider, so you just run openclaw onboard and pick Google. No credit card required.

  • Groq (free tier) – Groq runs open-source models like Llama 3 at very high speeds. There are rate limits on the free tier, but for 10-20 interactions a day they are barely noticeable. Sign up at groq.com, grab an API key, and set GROQ_API_KEY during onboarding.

  • Ollama (fully local) – Ollama became an official OpenClaw provider in March 2026. If you run Ollama locally, OpenClaw detects it automatically at http://127.0.0.1:11434. Once set up, every interaction costs you zero – no API calls, no rate limits, no privacy concerns. Suitable hardware required (8GB RAM minimum recommended).

  • OpenRouter free models – OpenRouter aggregates dozens of free open-source models, including Qwen 3.6 and other capable options. Community members have shared ClawHub skill packs specifically for routing through OpenRouter’s free tier.

For most people, Gemini Flash is the easiest zero-cost start. The free tier is generous, the model is fast and capable, and the onboarding wizard handles the setup without requiring manual configuration.

For power users who want no rate limits and full privacy, Ollama running a local model like Llama 3 or Mistral Small is the ideal path. You can compare these options on our free vs paid AI comparison hub to find what fits your usage level.

How Do You Install OpenClaw in 5 Minutes?

The official getting-started guide promises a working setup in about 5 minutes. Here is the process:

Step 1 – Install OpenClaw (macOS / Linux) curl -fsSL https://openclaw.ai/install.sh | bash

Windows users: iwr -useb https://openclaw.ai/install.ps1 | iex in PowerShell. Docker and npm installs also available.

Step 2 – Run the onboarding wizard openclaw onboard –install-daemon

The wizard asks you to choose a model provider, enter your API key (or configure Ollama), and set up your first messaging channel. Takes about 2 minutes.

Step 3 – Verify the Gateway is running openclaw gateway status

You should see the Gateway listening on port 18789.

Step 4 – Open the dashboard and start chatting openclaw dashboard

This opens the Control UI in your browser. Send your first message here, or connect Telegram (the fastest channel to set up) for mobile access.

Once the Gateway is running, you can connect as many messaging channels as you want. The recommended starting point is Telegram, which takes about 10 minutes to configure via BotFather and is widely considered the most stable channel. Discord works well for teams or if you want to use OpenClaw in a server context. See our free AI news section for the latest channel updates and configuration tips.

What Can OpenClaw Actually Do?

Beyond basic question-and-answer, OpenClaw is designed for autonomous task execution. The agent can:

  • Browse the web – fetch pages, extract information, and summarise content without you needing to open a browser.

  • Read and write files – manage documents, create notes, and organise your workspace through chat commands.

  • Run code – execute shell commands and scripts, useful for developers who want a conversational interface to their development environment.

  • Set reminders and schedule tasks – the built-in cron system lets you schedule recurring tasks or one-shot reminders delivered to your chosen messaging app.

  • Extend with skills – ClawHub provides community and official skill packs covering everything from Google Workspace integration to specialised research tools.

  • Multi-platform presence – the same agent answers across WhatsApp, Telegram, Discord, Slack, Signal, iMessage, Matrix, LINE, and more, maintaining context across sessions.

The autonomy is what separates OpenClaw from a simple chatbot wrapper. You can ask it to “research the top 5 competitors to my SaaS and email me a summary by 9am” and it will plan, execute, and deliver – across multiple tool calls – without you needing to supervise each step. This is the kind of workflow that previously required expensive enterprise automation platforms.

You can track the latest free AI tools that work similarly on our free AI tools directory.

Who Is Behind OpenClaw and What Happened to the Creator?

The story behind OpenClaw has a dramatic arc that caught wider attention in early 2026. Peter Steinberger, the Austrian engineer who built the project, told podcaster Lex Fridman that he created the prototype “because I was annoyed that it didn’t exist, so I just prompted it into existence.” The viral moment that lit the fuse was a demo showing the agent autonomously performing multiple tasks – and the internet responded immediately.

By February 2026, OpenClaw had attracted enough attention that Steinberger received offers from the largest AI companies. According to the Wikipedia profile of Steinberger, Sam Altman and Mark Zuckerberg both engaged with the project. Steinberger ultimately joined OpenAI on February 14, 2026, to lead a new team focused on “AI Agent infrastructure.”

Rather than shutting the project down or handing it to OpenAI, Steinberger established the OpenClaw Foundation as a non-profit to provide ongoing stewardship. Development has continued actively under the Foundation, with new features shipped regularly. The open-source community – over 47,700 forks worth of it – means the project is no longer dependent on any single contributor.

The Foundation’s approach has drawn comparisons to how major open-source projects like Linux and Node.js are governed: a neutral body stewarding a community project that no single company controls. For users, this matters because it means OpenClaw is unlikely to suddenly add paywalls or lock down features – the MIT license makes that structurally difficult anyway.

Is OpenClaw Safe and Private?

Privacy is one of the clearest advantages of self-hosted AI agents. Because you run OpenClaw on your own hardware, your conversations are not stored on a company’s servers by default. The only data that leaves your machine is what gets sent to the AI model API you choose – and if you use Ollama with a local model, nothing leaves your machine at all.

There are some nuances to understand:

  • Cloud model APIs – if you use Gemini or Groq on the free tier, your messages are sent to their servers. Free-tier providers often use data for model training. Check each provider’s terms if this matters to you.

  • Local Ollama – fully offline, nothing leaves your machine. The trade-off is that local models are generally less capable than frontier cloud models.

  • Messaging channels – if you connect WhatsApp or Telegram, those platforms see the messages you send to the bot (just as they would any other message). Signal offers the strongest end-to-end encryption among the supported channels.

For most personal use cases, the privacy picture is significantly better than using a browser-based AI assistant, where the provider logs every conversation. OpenClaw shifts control back to the user. You can also check our free tier tracker for updates on which model providers have changed their data use policies.

๐Ÿ”‘ Key Takeaways

  • OpenClaw is free and MIT-licensed, meaning you can download, use, and modify it at no cost – the only potential expense is your AI model API, which can also be free.

  • Google Gemini Flash’s free tier (15 requests per minute) is currently the easiest zero-cost model to pair with OpenClaw for casual daily use, requiring only a free API key from ai.google.dev.

  • The project grew from zero to 247,000 GitHub stars and 47,700 forks in under four months, making it one of the fastest-growing open-source AI projects on record.

  • Creator Peter Steinberger joined OpenAI in February 2026 but transferred stewardship to the non-profit OpenClaw Foundation, ensuring the project remains open-source and independent.

  • Running OpenClaw with Ollama and a local model provides complete privacy – no data leaves your machine – making it the best option for users with sensitive workflows.

In-depth reviews of AI tools See how the tools behind the headlines actually perform.

AI tools by profession and use case Find the right tool for what you actually do.

AI scam prevention and alerts Stay safe while exploring new AI tools.

Frequently Asked Questions

Is OpenClaw completely free to use?

OpenClaw itself is free and open-source under the MIT license. You pay nothing for the software. The only potential cost is your AI model API calls – but you can eliminate that too by pairing OpenClaw with free-tier providers like Google Gemini Flash (15 requests per minute free) or Groq’s free tier, or by running a local model through Ollama at zero cost.

What is OpenClaw and what does it do?

OpenClaw is a free, open-source autonomous AI agent that you install on your own computer or server. It connects to messaging apps like WhatsApp, Telegram, Discord, and Signal, letting you chat with an AI assistant through platforms you already use. It can browse the web, run code, manage files, set reminders, and execute multi-step tasks autonomously.

How long does it take to install OpenClaw?

The official documentation states you can have OpenClaw installed and running with a working chat session in about 5 minutes. The one-line install script handles setup on macOS and Linux. Windows users can use PowerShell or WSL2. After installation, the openclaw onboard wizard walks you through choosing a model provider and connecting your first messaging channel.

Which free AI models work with OpenClaw?

OpenClaw has built-in providers for Google Gemini (free tier via ai.google.dev), Groq (fast free tier with rate limits), and Ollama for fully local, offline models at zero ongoing cost. OpenRouter also works and provides access to free open-source models like Qwen 3.6. Gemini Flash offers 15 requests per minute on the free tier – more than enough for casual daily use.

Who created OpenClaw and is it still maintained?

OpenClaw was created by Austrian engineer Peter Steinberger, who first published it in November 2025. In February 2026, Steinberger joined OpenAI to lead an AI agent infrastructure team, but stewardship of the project passed to the OpenClaw Foundation, which continues development. The project had 247,000 GitHub stars and 47,700 forks as of March 2026.

Does OpenClaw work on Windows?

Yes. OpenClaw officially supports Windows via native installation or WSL2. The official documentation recommends WSL2 for the most stable Windows experience, though native Windows installation works for most features. macOS and Linux are also fully supported, with macOS typically being the smoothest setup due to the maturity of the Homebrew formula.

Explore Free AI Tools โ†’ Open Source AI Models