{
  "schemaVersion": "1.0",
  "item": {
    "slug": "smart-updater-pro",
    "name": "Smart Auto-Updater Pro",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/aiwithabidi/smart-updater-pro",
    "canonicalUrl": "https://clawhub.ai/aiwithabidi/smart-updater-pro",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/smart-updater-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=smart-updater-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/check_update.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/smart-updater-pro"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/smart-updater-pro",
    "agentPageUrl": "https://openagent3.xyz/skills/smart-updater-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/smart-updater-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/smart-updater-pro/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Auto-Updater 🔄",
        "body": "Keep OpenClaw up to date automatically and safely.\n\nChecks for new OpenClaw versions via git tags, compares with your current version, shows what's new, and optionally applies the update with safe rollback support."
      },
      {
        "title": "Quick Start",
        "body": "# Check for updates (safe, read-only)\nbash {baseDir}/scripts/check_update.sh\n\n# Check and apply if available\nbash {baseDir}/scripts/check_update.sh --apply\n\n# JSON output (for cron/automation)\nbash {baseDir}/scripts/check_update.sh --json\n\n# Check + apply + JSON\nbash {baseDir}/scripts/check_update.sh --apply --json"
      },
      {
        "title": "Via OpenClaw Cron",
        "body": "Add to your cron jobs to check daily:\n\n{\n  \"name\": \"auto-update-check\",\n  \"schedule\": \"0 1 * * *\",\n  \"command\": \"bash skills/auto-updater/{baseDir}/scripts/check_update.sh --json\",\n  \"description\": \"Daily OpenClaw update check at 1 AM\"\n}"
      },
      {
        "title": "Via System Crontab",
        "body": "# Check daily at 1 AM, log results\n0 1 * * * cd /root/.openclaw/workspace && bash skills/auto-updater/{baseDir}/scripts/check_update.sh >> /var/log/openclaw-updates.log 2>&1"
      },
      {
        "title": "How It Works",
        "body": "Fetch — git fetch --tags from the OpenClaw repo\nCompare — Current version vs latest git tag (semver sorted)\nReport — Shows version diff and changelog/commits between versions\nApply (optional) — Checkout new tag → pnpm install → pnpm build → docker build → docker compose up -d\nVerify — Checks gateway starts successfully after update"
      },
      {
        "title": "Safe Update Practices",
        "body": "Always runs git fetch before comparing (fresh data)\nShows what changed before applying\nRecords the previous version for rollback\nVerifies gateway health after update\nNever force-pushes or modifies git history"
      },
      {
        "title": "Rollback Procedure",
        "body": "If an update breaks something:\n\n# 1. See recent tags\ncd /host/openclaw && git tag --sort=-v:refname | head -5\n\n# 2. Checkout previous version\ngit checkout <previous-tag>\n\n# 3. Rebuild\npnpm install && pnpm build\ndocker build -t openclaw:latest .\ndocker compose up -d\n\n# 4. Verify\ndocker compose logs --tail=20\n\nThe script outputs rollback instructions automatically when applying updates."
      },
      {
        "title": "Credits",
        "body": "Built by M. Abidi | agxntsix.ai\nYouTube | GitHub\nPart of the AgxntSix Skill Suite for OpenClaw agents.\n\n📅 Need help setting up OpenClaw for your business? Book a free consultation"
      }
    ],
    "body": "Auto-Updater 🔄\n\nKeep OpenClaw up to date automatically and safely.\n\nChecks for new OpenClaw versions via git tags, compares with your current version, shows what's new, and optionally applies the update with safe rollback support.\n\nQuick Start\n# Check for updates (safe, read-only)\nbash {baseDir}/scripts/check_update.sh\n\n# Check and apply if available\nbash {baseDir}/scripts/check_update.sh --apply\n\n# JSON output (for cron/automation)\nbash {baseDir}/scripts/check_update.sh --json\n\n# Check + apply + JSON\nbash {baseDir}/scripts/check_update.sh --apply --json\n\nSetting Up as a Cron Job\nVia OpenClaw Cron\n\nAdd to your cron jobs to check daily:\n\n{\n  \"name\": \"auto-update-check\",\n  \"schedule\": \"0 1 * * *\",\n  \"command\": \"bash skills/auto-updater/{baseDir}/scripts/check_update.sh --json\",\n  \"description\": \"Daily OpenClaw update check at 1 AM\"\n}\n\nVia System Crontab\n# Check daily at 1 AM, log results\n0 1 * * * cd /root/.openclaw/workspace && bash skills/auto-updater/{baseDir}/scripts/check_update.sh >> /var/log/openclaw-updates.log 2>&1\n\nHow It Works\nFetch — git fetch --tags from the OpenClaw repo\nCompare — Current version vs latest git tag (semver sorted)\nReport — Shows version diff and changelog/commits between versions\nApply (optional) — Checkout new tag → pnpm install → pnpm build → docker build → docker compose up -d\nVerify — Checks gateway starts successfully after update\nSafe Update Practices\nAlways runs git fetch before comparing (fresh data)\nShows what changed before applying\nRecords the previous version for rollback\nVerifies gateway health after update\nNever force-pushes or modifies git history\nRollback Procedure\n\nIf an update breaks something:\n\n# 1. See recent tags\ncd /host/openclaw && git tag --sort=-v:refname | head -5\n\n# 2. Checkout previous version\ngit checkout <previous-tag>\n\n# 3. Rebuild\npnpm install && pnpm build\ndocker build -t openclaw:latest .\ndocker compose up -d\n\n# 4. Verify\ndocker compose logs --tail=20\n\n\nThe script outputs rollback instructions automatically when applying updates.\n\nCredits\n\nBuilt by M. Abidi | agxntsix.ai YouTube | GitHub Part of the AgxntSix Skill Suite for OpenClaw agents.\n\n📅 Need help setting up OpenClaw for your business? Book a free consultation"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/aiwithabidi/smart-updater-pro",
    "publisherUrl": "https://clawhub.ai/aiwithabidi/smart-updater-pro",
    "owner": "aiwithabidi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/smart-updater-pro",
    "downloadUrl": "https://openagent3.xyz/downloads/smart-updater-pro",
    "agentUrl": "https://openagent3.xyz/skills/smart-updater-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/smart-updater-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/smart-updater-pro/agent.md"
  }
}