openclaw-updater

star 4

Check and update OpenClaw to the latest version from GitHub. Use when the user asks to update OpenClaw, check for updates, sync with GitHub, or review changelog. Handles source installation from GitHub.

jx1100370217 By jx1100370217 schedule Updated 2/7/2026

name: openclaw-updater description: Check and update OpenClaw to the latest version from GitHub. Use when the user asks to update OpenClaw, check for updates, sync with GitHub, or review changelog. Handles source installation from GitHub.

OpenClaw Updater

Automate OpenClaw updates from GitHub repository.

Source Location

OpenClaw source is installed at: /Users/jianxiong/.openclaw/source/openclaw

Check for Updates

  1. Get current installed version:

    head -5 /Users/jianxiong/.openclaw/source/openclaw/package.json | grep version
    
  2. Fetch latest GitHub version:

    curl -s "https://raw.githubusercontent.com/openclaw/openclaw/main/package.json" | head -5 | grep version
    
  3. Fetch changelog for update details:

    curl -s "https://raw.githubusercontent.com/openclaw/openclaw/main/CHANGELOG.md" | head -200
    

Update from GitHub Source

cd /Users/jianxiong/.openclaw/source/openclaw
git pull origin main
pnpm install
pnpm build
npm install -g .

Update Summary Format (Chinese)

🔄 **OpenClaw 更新摘要**

📦 当前版本: `X.X.X`
🆕 最新版本: `Y.Y.Y`

**主要更新**
• [Feature 1]
• [Feature 2]

**修复**
• [Fix 1]
• [Fix 2]

Post-Update Actions

  1. Verify new version: npm list -g openclaw
  2. Restart gateway: use gateway tool with action: "restart"
  3. Send summary to Telegram (target: 6033691813)

Cron Job

Daily 9 PM (21:00 Asia/Shanghai) auto-update is configured via OpenClaw cron tool.

Install via CLI
npx skills add https://github.com/jx1100370217/my-openclaw-skills --skill openclaw-updater
Repository Details
star Stars 4
call_split Forks 1
navigation Branch main
article Path SKILL.md
More from Creator
jx1100370217
jx1100370217 Explore all skills →