Agent skill
auto-updater
Automatically update OpenClaw and selected skills once daily. Runs via cron, checks for updates, applies them, and messages the user with a summary of what changed.
Install this agent skill to your Project
npx add-skill https://github.com/jdrhyne/agent-skills/tree/main/clawdbot/auto-updater
Metadata
Additional technical details for this skill
- version
- 1.1.0
- openclaw
-
{ "os": [ "darwin", "linux" ], "emoji": "\ud83d\udd04" }
SKILL.md
Auto-Updater Skill
Keep OpenClaw and skills up to date automatically with daily update checks.
What It Does
This skill sets up a daily cron job that:
- Updates OpenClaw itself (via package manager)
- Updates installed ClawHub skills (via
clawhub update --all) - Sends a summary of what changed
Setup
Quick Start
Ask OpenClaw to set up the auto-updater:
Set up daily auto-updates for OpenClaw and installed skills.
Or manually add the cron job:
openclaw cron add \
--name "Daily Auto-Update" \
--cron "0 4 * * *" \
--tz "America/Los_Angeles" \
--session isolated \
--wake now \
--deliver \
--message "Run daily auto-updates: check for OpenClaw updates and update installed skills. Report what changed."
How Updates Work
OpenClaw Updates
For npm installs:
npm update -g openclaw@latest
After update, run health checks:
openclaw --profile default doctor --fix
openclaw gateway restart
Skill Updates
clawhub update --all
This checks installed ClawHub skills and updates to latest versions.
Manual Commands
Run a manual skill update:
clawhub update --all --no-input --force
List installed ClawHub skills:
clawhub list
Check OpenClaw version:
openclaw --version
Troubleshooting
Updates Not Running
- Verify cron is enabled (
openclaw cron list) - Ensure gateway is running continuously (
openclaw gateway status) - Confirm cron entry exists and timezone is correct
Common Failures
- Permission errors: ensure the OpenClaw user can write to install paths
- Network errors: verify internet connectivity
- Broken plugin/provider state: run
openclaw --profile default doctor --fix
Disable Auto-Updates
openclaw cron remove "Daily Auto-Update"
Resources
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
senior-engineering
Engineering principles for building software like a senior engineer. Load when tackling non-trivial development work, architecting systems, reviewing code, or orchestrating multi-agent builds. Covers planning, delivery, quality gates, and LLM-specific patterns.
web-design-guidelines
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
munger-observer
Daily wisdom review applying Charlie Munger's mental models to your work and thinking. Use when asked to review decisions, analyze thinking patterns, detect biases, apply mental models, do a "Munger review", or run the Munger Observer. Triggers on scheduled daily reviews or manual requests like "run munger observer", "review my thinking", "check for blind spots", or "apply mental models".
frontend-design
Expert frontend design guidelines for creating beautiful, modern UIs. Use when building landing pages, dashboards, or any user interface.
humanizer
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
gemini
Use when the user asks to run Gemini CLI for code review, plan review, or big context (>200k) processing. Ideal for comprehensive analysis requiring large context windows. Uses Gemini 3 Pro by default for state-of-the-art reasoning and coding.
Didn't find tool you were looking for?