Migration Guide: Moltbot to OpenClaw
OpenClaw (formerly Moltbot/Clawdbot) is moving fast. This guide covers how to safely migrate your existing installation to the latest version (v2026.1.30+).
Before You Start
Section titled “Before You Start”Snapshot your current configuration and workspace:
- Config:
~/.openclaw/openclaw.json(or~/.moltbot/moltbot.json) - Credentials:
~/.openclaw/credentials/ - Workspace:
~/.openclaw/workspace
Method 1: Automated Update (Preferred)
Section titled “Method 1: Automated Update (Preferred)”The easiest way to update is to re-run the installer. It detects existing installs, upgrades in place, and runs openclaw doctor automatically.
curl -fsSL https://openclaw.ai/install.sh | bashNotes:
- Add
--no-onboardif you don’t want the onboarding wizard to run again. - This works for both global and source installs.
Method 2: Global Install Update
Section titled “Method 2: Global Install Update”If you installed via npm or pnpm globally, you can update using your package manager.
Using npm:
npm i -g openclaw@latestUsing pnpm:
pnpm add -g openclaw@latestAfter updating, run the doctor command to ensure everything is migrated correctly:
openclaw doctoropenclaw gateway restartMethod 3: Source Install Update
Section titled “Method 3: Source Install Update”If you are running from a git clone, use the built-in update command:
openclaw updateThis command will:
- Switch to the selected channel.
- Fetch and rebase against upstream.
- Rebuild dependencies and the Control UI.
- Run
openclaw doctor. - Restart the gateway.
Verification
Section titled “Verification”After updating, verify your installation status:
openclaw --versionopenclaw healthNew in v2026.1.30
Section titled “New in v2026.1.30”- Per-Agent Models: Check model status with
openclaw gateway status --agent. - Shell Completion: Run
openclaw completionto set up tab completion for Zsh/Bash/PowerShell.
Troubleshooting
Section titled “Troubleshooting”If you encounter issues:
- Run
openclaw doctor- it fixes most common config and migration issues. - Check the logs:
openclaw logs --follow. - If necessary, you can rollback to a specific version (see Updating Docs).