
Auto Updater
- 1.2k installs
- Updated February 18, 2026
- teylersf/openclaw-auto-updater
auto-updater is an agent skill for automatically update openclaw every night. use when the user wants their agent to stay up-to-date with the latest openclaw version. runs a cron job that stops the gateway, runs.
About
The auto-updater skill is designed for automatically update OpenClaw every night. Use when the user wants their agent to stay up-to-date with the latest OpenClaw version. Runs a cron job that stops the gateway, runs. Auto-Updater Skill This skill keeps OpenClaw updated by running a nightly cron job that executes an external shell script — so the update works even when the gateway restarts. Quick Setup To enable auto-updates, say "set up auto-updater" and I'll: 1. Invoke when the user the user wants their agent to stay up-to-date with the latest OpenClaw version.
- Automatically update OpenClaw every night. Use when the user wants their agent to stay up-to-date with the latest OpenCl
- User the user wants their agent to stay up-to-date with the latest OpenClaw version.
- Developers using auto updater workflows documented in SKILL.md.
Auto Updater by the numbers
- 1,234 all-time installs (skills.sh)
- +2 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #331 of 1,880 Design & UI/UX skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
auto-updater capabilities & compatibility
- Capabilities
- automatically update openclaw every night. use w · user the user wants their agent to stay up to da · developers using auto updater workflows document
- Use cases
- frontend
What auto-updater says it does
Automatically update OpenClaw every night. Use when the user wants their agent to stay up-to-date with the latest OpenClaw version. Runs a cron job that stops the gateway, runs the
Automatically update OpenClaw every night. Use when the user wants their agent to stay up-to-date with the latest OpenClaw version. Runs a cron job that stops t
npx skills add https://github.com/teylersf/openclaw-auto-updater --skill auto-updaterAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.2k |
|---|---|
| Security audit | 1 / 3 scanners passed |
| Last updated | February 18, 2026 |
| Repository | teylersf/openclaw-auto-updater ↗ |
How do I automatically update openclaw every night. use when the user wants their agent to stay up-to-date with the latest openclaw version. runs a cron job that stops the gateway, runs?
Automatically update OpenClaw every night. Use when the user wants their agent to stay up-to-date with the latest OpenClaw version. Runs a cron job that stops the gateway, runs.
Who is it for?
Developers using auto updater workflows documented in SKILL.md.
Skip if: Skip when the task falls outside auto-updater scope or needs a different stack.
When should I use this skill?
User the user wants their agent to stay up-to-date with the latest OpenClaw version.
What you get
Completed auto-updater workflow with documented commands, files, and expected deliverables.
- Cron job entry
- Update shell script
- Restarted OpenClaw gateway
Files
Auto-Updater Skill
This skill keeps OpenClaw updated by running a nightly cron job that executes an external shell script — so the update works even when the gateway restarts.
Quick Setup
To enable auto-updates, say "set up auto-updater" and I'll: 1. Copy the update script to your home folder 2. Create a cron job that runs the script at 4 AM daily
Why a Script?
The agent can't run commands while the gateway is restarting. We use a standalone shell script that runs independently of the agent.
The Update Script
#!/bin/bash
# OpenClaw Auto-Updater
openclaw gateway stop
openclaw update.run
openclaw gateway startChange Update Time
Tell me "change update time to [time]" and I'll update the cron schedule.
Manual Update
Say "update yourself now" and I'll run the script immediately.
Troubleshooting
Check the log file: ~/openclaw-update.log
OpenClaw Auto-Updater
A skill for OpenClaw that automatically updates your agent every night.
What It Does
This skill sets up a nightly cron job that runs an external shell script — the script runs independently of the agent, so it works even when the gateway restarts.
Why a Script?
When OpenClaw updates, the gateway restarts — which kills any running agent commands. By using a standalone shell script (not agent commands), the update runs successfully without needing the agent to be active.
Installation
Copy the auto-updater folder to your skills directory:
cp -r auto-updater ~/.openclaw/skills/Restart your OpenClaw gateway:
openclaw gateway restartSetup
Once installed, say "Set up auto-updater" and I'll: 1. Copy the update script to ~/update-openclaw.sh 2. Create a cron job that runs at 4 AM daily
The Script
Location: ~/update-openclaw.sh
#!/bin/bash
set -e
LOG_FILE="$HOME/openclaw-update.log"
log() {
echo "[$(date)] $1" | tee -a "$LOG_FILE"
}
log "Starting OpenClaw update..."
openclaw gateway stop
openclaw update.run
openclaw gateway start
log "Update complete!"Usage
- "Set up auto-updater" - Creates the cron job
- "Update yourself now" - Runs the script immediately
- "Change update time to [time]" - Updates the schedule
Change Update Time
The cron runs at 4 AM by default. To change:
crontab -e
# Change: 0 4 * * * ~/update-openclaw.shManual Run
~/update-openclaw.shCheck logs: ~/openclaw-update.log
Troubleshooting
Update Failed
Check the log:
cat ~/openclaw-update.logRun manually to see errors:
~/update-openclaw.shCron Not Running
crontab -l # List cron jobsRequirements
- OpenClaw v2026.02+
- Gateway running in local mode
- Internet connection for updates
#!/bin/bash
# OpenClaw Auto-Updater Script
# Run this via cron or launchd to update OpenClaw independently
# Usage: ./update-openclaw.sh
set -e
LOG_FILE="$HOME/openclaw-update.log"
log() {
echo "[$(date '+%Y-%m-%d %H:%M:%S')] $1" | tee -a "$LOG_FILE"
}
log "Starting OpenClaw update..."
# Stop the gateway
log "Stopping gateway..."
openclaw gateway stop
# Run the update
log "Running update..."
openclaw update.run
# Restart the gateway
log "Restarting gateway..."
openclaw gateway start
log "Update complete!"
Related skills
How it compares
Pick auto-updater over manual upgrade docs when OpenClaw runs continuously and needs cron-driven unattended version updates.
FAQ
What does auto-updater do?
Automatically update OpenClaw every night. Use when the user wants their agent to stay up-to-date with the latest OpenClaw version. Runs a cron job that stops the gateway, runs.
When should I use auto-updater?
User the user wants their agent to stay up-to-date with the latest OpenClaw version.
Is auto-updater safe to install?
Review the Security Audits panel on this page before installing in production.