TLDR: OpenClaw 2.0 (version tag v2026.8.1, released late August 30 / early August 31, 2026) is the largest update in the open-source AI agent OpenClaw’s history.
Built by 933 contributors (569 first-timers) with more than 16,000 pull requests—roughly half of all PRs ever merged into the project—it simplifies onboarding, rebuilds the browser Control UI as a chat-first experience, introduces multiplayer shared cloud sessions, consolidates memory, improves skills and security controls, and touches nearly every subsystem.
Installation is now dramatically easier via guided detection of existing ChatGPT/Claude subscriptions, API keys, and local models. Upgrade carries real but manageable risks (SQLite session migration, plugin removals, model route renames). For production or multi-model flexibility, pairing OpenClaw with a unified gateway such as CometAPI (one key for 500+ models at competitive rates) is a practical recommendation.
Key Takeaways
- OpenClaw 2.0 is not a traditional semantic versioning leap but a scale-based “2.0” label for the biggest consolidated release after nearly seven weeks of focused work following 106 releases in the prior 230 days.
- Core advances: near-zero-config first-run setup, rebuilt chat-first browser app with Session Rail and widgets, shared cloud sessions (“multiplayer”), built-in memory with background consolidation and self-learning, Skill Workshop, and stronger (though not default-hardened) permission and credential models.
- Installation is simplest via the official scripts (
curl ... | bashor PowerShell equivalent); desktop companion apps exist for Windows and macOS. - Upgrade requires a verified backup; three main migrations (SQLite sessions, OpenProse removal, codex/* → openai/*) are handled largely by
openclaw doctor --fix. Early post-release issues centered on non-interactive doctor runs. - Security remains operator responsibility: shared sessions are collaboration controls (not tenant isolation), Secret Store is not encrypted at rest by default, and sandboxing is off by default—critics have highlighted these gaps.
- For model flexibility, cost control, and redundancy, configure OpenClaw to use CometAPI as a custom provider (OpenAI-compatible, Anthropic-messages, and Google formats supported under one key).
What Is OpenClaw?
OpenClaw is a free, open-source (MIT License), self-hosted autonomous AI agent / personal assistant that runs primarily on your own hardware (macOS, Linux, Windows, with WSL2 recommended on Windows). Unlike pure chatbots such as ChatGPT that live in a browser tab and only suggest actions, OpenClaw executes real tasks: managing files, controlling browsers, sending messages across WhatsApp, Telegram, Slack, Discord, Signal, iMessage and other channels, automating workflows, and maintaining persistent memory.
It began life in late 2025 (initially as Warelay / related projects) under Peter Steinberger and the community, rebranded and open-sourced, and is now stewarded under the OpenClaw Foundation. The architecture centers on a local Gateway (control plane for sessions, tools, events, and channels), a Control UI / CLI / TUI, messaging channel plugins, and optional companion apps. Models can be hosted (OpenAI, Anthropic, Google, etc.), subscription-backed, or fully local (Ollama, LM Studio, llama.cpp). State and credentials stay under user control.
By mid-2026 the project had shipped at a blistering pace—106 releases in roughly 230 days—before pausing nearly seven weeks to consolidate foundational work. That pause produced OpenClaw 2.0.
See Also Top 6 OpenClaw Skills you can't afford to miss in 2026
Major Features of OpenClaw 2.0
Simplified, Guided Installation and Onboarding
First-time setup now detects resources already present on the machine: existing ChatGPT, Claude, or Codex logins/subscriptions, API keys, and qualifying local models (Ollama, LM Studio). The installer verifies that the chosen model can actually complete a request before saving credentials, then moves most remaining configuration out of the initial wizard. Users reach a first conversation faster and finish setup by talking to the agent itself.
Default OpenAI-oriented setups lean toward recent models (coverage mentions GPT-5.6 defaults in places); local paths improved (e.g., hosted llama-server replacing older node-llama-cpp paths, higher default context lengths).
Rebuilt Browser Control UI (Chat-First Experience)
The browser app was rebuilt as a first-class surface. It opens directly into a conversation. The old Overview page is gone; sessions live in a sidebar. Files, approvals, terminals, git diffs, and a dockable browser panel sit alongside the chat. A “Session Rail” provides compact live status (progress, ratings, plan steps, pull requests). Interactive widgets can be pinned to session dashboards, granted scoped actions or network origins, and exported. Performance claims in simulated environments include reduced JavaScript requests (140 → 45) and faster startup (~1.6 s → ~575 ms).
Shared Cloud Sessions (“Multiplayer”)
The headline collaboration feature: multiple users can join the same ongoing agent session with full context, assign tasks, suggest changes, work in draft mode, or participate fully. Access levels are controllable by owners/admins. The OpenClaw team itself now uses this mode to build OpenClaw. Sessions can run on the local Gateway, paired devices (openclaw connect), or disposable cloud machines via provisioning tools (AWS, Hetzner, etc.). Important caveat from the project: these are collaboration controls, not hostile-tenant isolation or network/file-system security boundaries.
Memory System Consolidation
Built-in Memory now owns core search and recall (the QMD add-on is retired via supported migration). Background consolidation (“grounded dreaming”) promotes provenance-qualified material into long-term memory (with a Dream Diary and an explicit off switch). Self-learning can turn strong reusable lessons into proposed skills. Full-text conversation search is available. Explicit controls such as openclaw memory forget exist. Sessions persist more durably across idle periods and day boundaries by default.
Skills, Automations, and Widgets
A Skill Workshop provides a guided path to create, validate, install, call, and review skills, with applied history and individual reporting of invalid skills instead of catalog breakage. Automations can stay linked to the conversation that created them; recurring actions can use one-time approval. IMAP plugins can trigger agent work from incoming email. Interactive widgets and durable progress cards turn the UI into a true control surface.
Security and Permission Model Improvements
Approvals now bind more tightly to the exact request, command, session, and person. Reusable command permissions can bind to exact arguments and working directory; script-backed commands re-check reviewed bytes. Sessions support explicit modes: read-only, guarded, workspace, or full access. A team credential store keeps certain secret values write-only; agents can request credentials via masked prompts that never enter model-visible text. Plugin installs from arbitrary executable sources require an explicit force flag. These are meaningful steps after earlier security advisories, yet critics note remaining gaps (detailed in the risks section).
Other Notable Changes
- Model and provider expansions and route cleanups
- Native app and companion updates
- Storage backend changes supporting the new session model
- Extensive bug fixes and reliability work across channels and tools
How to Install OpenClaw 2.0
System Requirements
- Node.js 22.22.3+, 24.15+, or 25.9+ (Node 26 recommended; installers often provision a suitable version)
- macOS, Linux, or Windows (WSL2 strongly recommended for the Gateway on Windows)
- Optional: pnpm if building from source
Desktop companions:
- Windows Hub (signed installers for x64/arm64)
- macOS menu-bar app (DMG/ZIP from GitHub releases)
Recommended: Official Installer Script
macOS / Linux / WSL2:
curl -fsSL https://openclaw.ai/install.sh | bash
Windows (PowerShell):
iwr -useb https://openclaw.ai/install.ps1 | iex
The script detects the OS, installs Node if needed, installs OpenClaw, and launches onboarding. Flags exist for --no-onboard and other automation options.
Alternative Methods
- npm (Node already managed):
npm install -g openclaw@latest --allow-scripts=openclaw # adjust for older npm
openclaw onboard --install-daemon
- pnpm or bun equivalents with appropriate trust/allow-build flags
- From source (contributors):
git clone https://github.com/openclaw/openclaw.git
cd openclaw
corepack enable
pnpm install && pnpm build && pnpm ui:build
pnpm add --global "openclaw@link:$PWD"
openclaw onboard --install-daemon
- Local-prefix installer and container/VPS options are documented for advanced deployments.
Post-Install Verification
openclaw --version
openclaw doctor
openclaw gateway status
openclaw dashboard # or open http://127.0.0.1:18789/ on the gateway host
Managed startup uses LaunchAgents (macOS), systemd user services (Linux/WSL2), or Scheduled Tasks (native Windows). Full details live in the official install documentation.
Upgrade Path and Risks
Pre-Upgrade Checklist
- Create a verified backup of your OpenClaw state directory, configuration, sessions, and any custom plugins/skills.
- Review the official release notes (docs.openclaw.ai/releases/2026.8.1) and updating guides.
- Prefer an interactive terminal (TTY) for the upgrade and doctor steps—early reports showed non-interactive
doctor --fixcould silently skip 2.0 migrations.
Known Migrations and Breaking Changes
| Change | Impact & Action |
|---|---|
| Sessions & transcripts → SQLite | New sessions after migration will not appear in older releases on downgrade. Backup first. |
| Bundled OpenProse plugin & /prose command removed | Run openclaw doctor --fix; follow upstream Agent Skill migration. Existing .prose files are retained. |
| codex/* and openai-codex/* model refs → openai/* | openclaw doctor --fix migrates routes, provider config, stored sessions, and automations. Conflicts flagged for manual repair. |
| Plugin SDK subpath deprecations | September 1, 2026 gates; update plugins per the SDK migration guide. |
Most cleanup is handled by openclaw doctor --fix (or --repair). After upgrade, re-evaluate per-session permission modes (prefer least privilege) and re-apply any hardening checklist from prior advisories.
Early Post-Release Issues (as of late August 31 reporting)
doctor --fixskipping migrations without a TTY (P1, fix reported quickly)- Memory sync issues with certain embedding providers (e.g., Gemini batch limits)
- Plugin consent persistence for legacy installs
- Dashboard readiness false positives
A release of this magnitude typically sees follow-up patches; monitor the official tracker and release notes.
Security Risks Highlighted by Coverage
The Register and others noted that while usability improved dramatically, “security by default” did not fully accompany it:
- Shared session controls are not network- or filesystem-level isolation / tenant boundaries.
- Secret Store values (passwords, API keys) are not encrypted at rest; they rely on filesystem permissions of the state directory.
- The sandbox for isolating untrusted code is not enabled by default.
Earlier 2026 analyses (pre-2.0) already documented risks around plaintext credentials, prompt injection leading to destructive actions, high-severity CVEs, and supply-chain concerns in the skills marketplace (ClawHub). 2.0 strengthens approval binding and permission modes, but operators remain responsible for least-privilege configuration, network isolation, secret management, and sandbox enablement. Granting a capable agent broad system and credential access should never be done lightly.
Comparison Table: OpenClaw Pre-2.0 vs OpenClaw 2.0
| Aspect | Pre-2.0 (typical 2026 mid-year) | OpenClaw 2.0 (v2026.8.1) |
|---|---|---|
| Installation | More configuration-heavy first run | Guided detection of existing keys/subscriptions/local models; chat-driven finish |
| Browser / Control UI | Overview-centric, less integrated | Chat-first, Session Rail, widgets, dockable panels |
| Collaboration | Primarily single-user / local | Shared cloud sessions with role-based participation |
| Memory | Split / QMD add-on common | Consolidated built-in + background consolidation + self-learning |
| Skills | More ad-hoc | Skill Workshop, validation, history |
| Session storage | Prior format | SQLite (migration required) |
| Security model | Improving but policy-heavy | Tighter approval binding, explicit session modes, write-only secrets (still operator-dependent defaults) |
| Scale of release | Frequent small ships | ~50% of all historical PRs in one consolidated drop |
How to Power OpenClaw with CometAPI: Recommended Integration
OpenClaw is model-agnostic. You can point it at official provider keys, local models, or a unified gateway. For teams and power users who want one API key, access to 500+ models (GPT family, Claude family, Gemini, and many others), competitive pricing (often 20%+ below list), easy switching, and centralized observability, CometAPI is a natural fit. CometAPI provides OpenAI-compatible, Anthropic-messages, and Google-generative-ai endpoints under a single credential.
Five-minute tutorial on configuring OpenClaw with CometAPI
- Obtain a CometAPI key from cometapi.com.
- Store it securely (e.g.,
COMETAPI_KEYin~/.openclaw/.envwith restricted permissions, or your preferred secret manager). - Edit
~/.openclaw/openclaw.json(or equivalent) to add providers, for example:
{
"agents": {
"defaults": {
"model": {
"primary": "cometapi-claude/claude-sonnet-4-6"
}
}
},
"models": {
"mode": "merge",
"providers": {
"cometapi-openai": {
"baseUrl": "https://api.cometapi.com/v1",
"apiKey": "${COMETAPI_KEY}",
"api": "openai-completions",
"models": [{ "id": "gpt-5.4", "name": "GPT-5.4" }]
},
"cometapi-claude": {
"baseUrl": "https://api.cometapi.com",
"apiKey": "${COMETAPI_KEY}",
"api": "anthropic-messages",
"models": [{ "id": "claude-sonnet-4-6", "name": "Claude Sonnet 4.6" }]
},
"cometapi-google": {
"baseUrl": "https://api.cometapi.com/v1beta",
"apiKey": "${COMETAPI_KEY}",
"api": "google-generative-ai",
"models": [{ "id": "gemini-3.1-pro-preview", "name": "Gemini 3.1 Pro" }]
}
}
}
}
(Exact model IDs and paths should be verified against current CometAPI and OpenClaw documentation, as catalogs evolve.) Use full provider/model references in sessions. After changes, restart the Gateway and verify with a test conversation.
This setup lets you experiment with different frontier and cost-efficient models without re-keying multiple vendor accounts, while keeping OpenClaw’s self-hosted control plane intact. Detailed guides are available on the CometAPI OpenClaw integration pages.
Practical Recommendations and Best Practices
- Start with the guided installer and the rebuilt browser UI for the fastest path to a useful agent.
- Treat shared sessions as a collaboration feature among trusted parties only; layer additional network and host isolation if multi-tenant concerns exist.
- Always enable the narrowest workable permission mode per session and enable sandboxing for untrusted skills/code where available.
- Back up before every major upgrade; run doctor interactively after 2.0-scale releases.
- For multi-model or cost-sensitive workloads, route through a gateway such as CometAPI rather than managing many individual keys.
- Monitor the official release notes, GitHub tracker, and security advisories—OpenClaw’s velocity means both features and fixes arrive quickly.
- Remember the project’s own framing: OpenClaw is open source and yours to shape and own. The 2.0 release lowers the barrier to a first useful workflow while expanding the ceiling for team and continuous use.
Frequently Asked Questions (FAQs)
What is the exact version number of OpenClaw 2.0?
The shipping tag is v2026.8.1 (late August 30 / August 31, 2026). The project and community call it OpenClaw 2.0 because of its unprecedented scale.
Is OpenClaw 2.0 a breaking upgrade?
Mostly additive, but three deliberate migrations (SQLite sessions, OpenProse removal, model route renames) require attention. openclaw doctor --fix handles the bulk of the work when run properly.
How long does a typical install take?
With the official script and existing AI access already present, many users reach a first conversation in minutes. Full configuration can continue conversationally.
Can I still use local models?
Yes. Ollama, LM Studio, and improved llama.cpp / llama-server paths are supported and detected during guided setup.
Is OpenClaw free?
The software is MIT-licensed and free. Costs come from the LLM providers (or local compute) you choose. Gateways like CometAPI can reduce effective model costs.
Should enterprises use the shared session feature immediately?
Only among mutually trusted participants and after reviewing the explicit non-isolation statements in the documentation. Combine with host-level and network controls.
Where do I find official release notes and docs?
Primary sources: openclaw.ai blog, docs.openclaw.ai (including the 2026.8.1 release page and install/updating guides), and the GitHub repository github.com/openclaw/openclaw.
How do I switch models or providers after install?
Edit the configuration (or talk to the agent to finish setup), restart the Gateway, and verify. Custom providers such as CometAPI integrate cleanly via the models.providers structure.
OpenClaw 2.0 represents a maturation point for the self-hosted agent category: dramatically lower friction to start, richer continuity and collaboration features, and clearer (if still operator-owned) security primitives. Whether you are an individual seeking a persistent personal agent or a small team exploring multiplayer agent workflows, the 2.0 release is the strongest starting point the project has offered to date. Pair it with careful permission hygiene and, where multi-model flexibility matters, a unified API layer such as CometAPI, and you have a powerful, owned foundation for real work.
Always cross-check the latest official documentation before production deployment, as the project continues to evolve rapidly.
