OpenClaw v2.0 Update: Critical Pre-Update Checklist to Avoid Breaking Changes

OpenClaw Major Update Requires Pre-Update Preparation
OpenClaw has released its biggest update in months with 12 breaking changes, a completely new plugin system, and 30+ security patches. The update will silently break setups if users run npm update without preparation first.
Step 1: Check Environment Variables
Legacy environment variables from when OpenClaw was called Clawdbot or Moltbot will no longer work. There's no compatibility shim, fallback, or warning. Check for old variables:
env | grep -i clawdbot
env | grep -i moltbot
If anything shows up, rename them:
CLAWDBOT_*→OPENCLAW_*MOLTBOT_*→OPENCLAW_*
Check your .env, .bashrc, .zshrc, .profile, and any docker-compose files. Missing variables will cause OpenClaw to start with default settings instead of your configuration.
Step 2: Check State Directory
Auto-detection for the old directory name is gone. Check your current state directory:
ls ~/.moltbot 2>/dev/null && echo "YOU NEED TO MOVE THIS"
ls ~/.openclaw 2>/dev/null && echo "you're fine"
If you're still on ~/.moltbot, move it before updating:
mv ~/.moltbot ~/.openclaw
Or set the path explicitly:
export OPENCLAW_STATE_DIR=~/.openclaw
If you update first, OpenClaw will create a fresh ~/.openclaw directory with empty config.
Step 3: Backup Your Config
Create a backup before updating:
cp -r ~/.openclaw ~/.openclaw-backup-$(date +%Y%m%d)
This includes your SOUL.md, USER.md, MEMORY.md, agents config, skills, and everything else.
Step 4: Check Browser Automation Setup
The legacy chrome extension relay is completely removed. If your browser config uses driver: "extension" or browser.relayBindHost, those settings do nothing now. Check your config:
openclaw config get | grep -i browser
The new approach uses existing-session browser attachment. OpenClaw connects to a browser that's already running instead of controlling one through an extension. OpenClaw now manages its own browser profile (the openclaw profile) or attaches to an existing chrome session via CDP.
Step 5: Understand Clawhub Change
Clawhub is now the default plugin and skill store. When you run openclaw plugins install or openclaw skills install, it checks Clawhub first and only falls back to npm if it can't find the package there. This means:
- Some skills installed via npm might need to be reinstalled via Clawhub
openclaw skills search,openclaw skills install, andopenclaw skills updateare new commands that use ClawHub natively- If a skill isn't on Clawhub, you can still install from npm (it's a fallback, not a removal)
After updating, run:
openclaw skills update
To make sure your existing skills are synced with the new system.
📖 Read the full source: r/clawdbot
👀 See Also

Leveraging Agent Skills for Writing CUDA Kernels with Upskill
Hugging Face introduces a practical approach to upskill models for writing CUDA kernels using the new Upskill tool, improving model efficiency through agent skills.

Building a Fully Local Multi-Agent Assistant with OpenClaw and Ollama
A developer shares their stack for a fully local personal AI assistant using OpenClaw and Ollama, including models qwen3.5:35b-a3b, gemma3:4b, mistral:7b, MCP servers for Home Assistant and Gmail, and a Telegram Bot interface.

Fixing Claude Cowork 'Failed to start workspace' errors on Windows 11 Home
A user solved Claude Cowork startup errors on Windows 11 Home by installing Windows Subsystem for Linux (WSL2) from the Microsoft Store, which is required for the underlying VM technology.

Structuring Claude Code Projects with CLAUDE.md, Skills, and MCP
A developer shares workflow improvements for Claude Code, including starting in plan mode, maintaining a CLAUDE.md file for project memory, creating reusable Skills for recurring tasks, and using MCP to connect to external tools.