OpenClaw Updater (LinZ)
/install linz-openclaw-updater
OpenClaw Updater
Automatically check for and install OpenClaw updates with backup and rollback support.
Overview
This skill provides automated OpenClaw update capabilities:
- Check current vs latest version
- Perform safe updates with automatic backups
- Schedule periodic auto-updates via cron
- Dry-run mode to preview updates
Quick Start
Check Current Version
openclaw --version
Check for Updates (Dry Run)
bash ~/.openclaw/workspace/skills/openclaw-updater/scripts/update-openclaw.sh --dry-run
Perform Update
bash ~/.openclaw/workspace/skills/openclaw-updater/scripts/update-openclaw.sh
Force Reinstall
bash ~/.openclaw/workspace/skills/openclaw-updater/scripts/update-openclaw.sh --force
Setting Up Auto-Updates
Daily Auto-Update via Cron
Add to crontab for daily update checks at 3 AM:
0 3 * * * /bin/bash ~/.openclaw/workspace/skills/openclaw-updater/scripts/update-openclaw.sh >> ~/.openclaw/logs/cron-update.log 2>&1
Or use OpenClaw's built-in cron:
{
"name": "openclaw-auto-update",
"schedule": { "kind": "cron", "expr": "0 3 * * *" },
"payload": {
"kind": "systemEvent",
"text": "Run OpenClaw auto-updater: bash ~/.openclaw/workspace/skills/openclaw-updater/scripts/update-openclaw.sh"
},
"sessionTarget": "main"
}
How It Works
- Version Check: Compares installed version against npm registry
- Backup: Creates timestamped backup of config and workspace
- Update: Runs
npm install -g @openclaw/core@latest - Verify: Confirms new version is installed
- Cleanup: Maintains only last 5 backups
Logs and Backups
- Logs:
~/.openclaw/logs/auto-update.log - Backups:
~/.openclaw/backups/openclaw-backup-YYYYMMDD-HHMMSS.tar.gz
Troubleshooting
Node.js Version Issues
OpenClaw requires Node.js >= 22.16.0. If you see version warnings:
# Check current Node version
node --version
# Update Node.js (using n or nvm)
n install 22.16.0
# or
nvm install 22.16.0 && nvm use 22.16.0
Update Fails
- Check logs:
cat ~/.openclaw/logs/auto-update.log - Verify npm permissions:
npm config get prefix - Try with sudo if needed:
sudo npm install -g @openclaw/core@latest
Rollback
If update causes issues, restore from backup:
cd ~
tar -xzf ~/.openclaw/backups/openclaw-backup-YYYYMMDD-HHMMSS.tar.gz
Script Options
| Option | Description |
|---|---|
--dry-run |
Check for updates without installing |
--force |
Force update even if versions match |
--help |
Show usage information |
Resources
scripts/
update-openclaw.sh- Main update script with backup/restore capabilities
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install linz-openclaw-updater - After installation, invoke the skill by name or use
/linz-openclaw-updater - Provide required inputs per the skill's parameter spec and get structured output
What is OpenClaw Updater (LinZ)?
Automatically check for and install OpenClaw updates. Use when the user wants to update OpenClaw to the latest version, schedule automatic updates, or check... It is an AI Agent Skill for Claude Code / OpenClaw, with 150 downloads so far.
How do I install OpenClaw Updater (LinZ)?
Run "/install linz-openclaw-updater" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is OpenClaw Updater (LinZ) free?
Yes, OpenClaw Updater (LinZ) is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does OpenClaw Updater (LinZ) support?
OpenClaw Updater (LinZ) is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created OpenClaw Updater (LinZ)?
It is built and maintained by zlin87468-maker (@zlin87468-maker); the current version is v1.0.0.