{
  "schemaVersion": "1.0",
  "item": {
    "slug": "smart-auto-updater",
    "name": "Smart Auto Updater",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ruiwang20010702/smart-auto-updater",
    "canonicalUrl": "https://clawhub.ai/ruiwang20010702/smart-auto-updater",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/smart-auto-updater",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=smart-auto-updater",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "references/integration.md",
      "references/report-templates.md",
      "references/risk-assessment.md"
    ],
    "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-auto-updater"
    },
    "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-auto-updater",
    "agentPageUrl": "https://openagent3.xyz/skills/smart-auto-updater/agent",
    "manifestUrl": "https://openagent3.xyz/skills/smart-auto-updater/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/smart-auto-updater/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": "Smart Auto-Updater",
        "body": "AI-powered auto-updater that intelligently decides whether to update based on impact assessment. Safe, intelligent, and configurable."
      },
      {
        "title": "1. Check Phase",
        "body": "Checks for OpenClaw updates\nChecks for skill updates via ClawHub\nFetches changelog and diff"
      },
      {
        "title": "2. AI Analysis Phase",
        "body": "Analyzes changes using LLM\nEvaluates system impact (架构/性能/兼容性)\nClassifies risk level (HIGH/MEDIUM/LOW)"
      },
      {
        "title": "3. Decision Phase",
        "body": "Risk LevelActionHIGHSkip update, send detailed reportMEDIUMSkip update, send warning + reportLOWAuto-update, send summary"
      },
      {
        "title": "4. Report Phase",
        "body": "Generates readable update report\nIncludes risk assessment\nProvides upgrade recommendations"
      },
      {
        "title": "Basic usage",
        "body": "# Run smart update check\nopenclaw sessions spawn \\\n  --agentId smart-auto-updater \\\n  --message \"Run smart update check\""
      },
      {
        "title": "With custom parameters",
        "body": "openclaw sessions spawn \\\n  --agentId smart-auto-updater \\\n  --message \"Check updates with custom settings: auto-update LOW risk, report MEDIUM risk\""
      },
      {
        "title": "Environment Variables",
        "body": "# AI Model (optional, defaults to configured model)\nexport SMART_UPDATER_MODEL=\"minimax-portal/MiniMax-M2.1\"\n\n# Auto-update threshold (default: LOW)\n# Options: NONE (report only), LOW, MEDIUM\nexport SMART_UPDATER_AUTO_UPDATE=\"LOW\"\n\n# Risk tolerance (default: MEDIUM)\n# HIGH: Only auto-update LOW risk\n# MEDIUM: Auto-update LOW + MEDIUM risk\n# LOW: Auto-update all\nexport SMART_UPDATER_RISK_TOLERANCE=\"MEDIUM\"\n\n# Report level (default: detailed)\n# Options: brief, detailed, full\nexport SMART_UPDATER_REPORT_LEVEL=\"detailed\""
      },
      {
        "title": "High Risk Report",
        "body": "🔴 Smart Auto-Updater Report\n\nUpdate Available: v1.2.3 → v1.3.0\n\n⚠️ Risk Level: HIGH\n\n📋 Changes Summary:\n- Breaking API changes detected\n- Database migration required\n- 3 files modified\n\n🏗️ Impact Assessment:\n- Architecture: MAJOR changes to core components\n- Performance: Potential impact on startup time\n- Compatibility: Breaks backward compatibility\n\n🚫 Decision: SKIPPED\n\n💡 Recommendations:\n1. Review changelog manually\n2. Test in staging environment\n3. Schedule maintenance window\n\n🗓️ Next Check: 24 hours"
      },
      {
        "title": "Low Risk Auto-Update",
        "body": "🟢 Smart Auto-Updater Report\n\nUpdated: v1.2.3 → v1.2.4\n\n✅ Risk Level: LOW\n\n📋 Changes:\n- Bug fixes (2)\n- Performance improvements (1)\n\n🏗️ Impact Assessment:\n- Architecture: No changes\n- Performance: Minor improvement\n- Compatibility: Fully compatible\n\n✅ Decision: AUTO-UPDATED\n\n📊 Summary:\n- OpenClaw: v1.2.3 → v1.2.4\n- Skills updated: 2\n- Skills unchanged: 15\n- Errors: none\n\n⏱️ Next Check: 24 hours"
      },
      {
        "title": "Architecture",
        "body": "┌──────────────────┐\n│  Trigger (Cron)  │\n└────────┬─────────┘\n         │\n         ▼\n┌──────────────────┐\n│  Check Updates    │ ← clawhub update --dry-run\n└────────┬─────────┘\n         │\n         ▼\n┌──────────────────┐\n│  AI Analysis     │ ← Analyze changes, assess risk\n└────────┬─────────┘\n         │\n    ┌────┴────┐\n    │         │\n    ▼         ▼\n┌───────┐  ┌───────┐\n│ HIGH  │  │ MEDIUM│\n│ Skip  │  │ Skip  │\n└───┬───┘  └───┬───┘\n    │          │\n    ▼          ▼\n┌───────┐  ┌───────┐\n│ LOW   │  │ Report│\n│ Update│  │ Only  │\n└───┬───┘  └───────┘\n    │          │\n    └────┬─────┘\n         │\n         ▼\n┌──────────────────┐\n│  Generate Report  │ ← Send summary\n└──────────────────┘"
      },
      {
        "title": "Safety Features",
        "body": "Dry Run First - Always check before acting\nRisk Classification - AI-powered impact assessment\nConfigurable Thresholds - Set your own risk tolerance\nDetailed Logging - Every decision is logged\nManual Override - Always can review before updating"
      },
      {
        "title": "Updates keep being skipped",
        "body": "Check risk tolerance setting\nVerify AI model is available\nReview changelog manually"
      },
      {
        "title": "False positives (too many HIGH risk)",
        "body": "Lower risk tolerance\nCheck AI model prompts\nReview specific change patterns"
      },
      {
        "title": "Reports not being delivered",
        "body": "Verify delivery channel configuration\nCheck gateway status\nReview session configuration"
      },
      {
        "title": "References",
        "body": "references/risk-assessment.md → AI risk assessment methodology\nreferences/report-templates.md → Report format examples\nreferences/integration.md → Integration with cron/jobs"
      }
    ],
    "body": "Smart Auto-Updater\n\nAI-powered auto-updater that intelligently decides whether to update based on impact assessment. Safe, intelligent, and configurable.\n\nWhat it does\n1. Check Phase\nChecks for OpenClaw updates\nChecks for skill updates via ClawHub\nFetches changelog and diff\n2. AI Analysis Phase\nAnalyzes changes using LLM\nEvaluates system impact (架构/性能/兼容性)\nClassifies risk level (HIGH/MEDIUM/LOW)\n3. Decision Phase\nRisk Level\tAction\nHIGH\tSkip update, send detailed report\nMEDIUM\tSkip update, send warning + report\nLOW\tAuto-update, send summary\n4. Report Phase\nGenerates readable update report\nIncludes risk assessment\nProvides upgrade recommendations\nQuick Start\nBasic usage\n# Run smart update check\nopenclaw sessions spawn \\\n  --agentId smart-auto-updater \\\n  --message \"Run smart update check\"\n\nWith custom parameters\nopenclaw sessions spawn \\\n  --agentId smart-auto-updater \\\n  --message \"Check updates with custom settings: auto-update LOW risk, report MEDIUM risk\"\n\nConfiguration\nEnvironment Variables\n# AI Model (optional, defaults to configured model)\nexport SMART_UPDATER_MODEL=\"minimax-portal/MiniMax-M2.1\"\n\n# Auto-update threshold (default: LOW)\n# Options: NONE (report only), LOW, MEDIUM\nexport SMART_UPDATER_AUTO_UPDATE=\"LOW\"\n\n# Risk tolerance (default: MEDIUM)\n# HIGH: Only auto-update LOW risk\n# MEDIUM: Auto-update LOW + MEDIUM risk\n# LOW: Auto-update all\nexport SMART_UPDATER_RISK_TOLERANCE=\"MEDIUM\"\n\n# Report level (default: detailed)\n# Options: brief, detailed, full\nexport SMART_UPDATER_REPORT_LEVEL=\"detailed\"\n\nReport Format\nHigh Risk Report\n🔴 Smart Auto-Updater Report\n\nUpdate Available: v1.2.3 → v1.3.0\n\n⚠️ Risk Level: HIGH\n\n📋 Changes Summary:\n- Breaking API changes detected\n- Database migration required\n- 3 files modified\n\n🏗️ Impact Assessment:\n- Architecture: MAJOR changes to core components\n- Performance: Potential impact on startup time\n- Compatibility: Breaks backward compatibility\n\n🚫 Decision: SKIPPED\n\n💡 Recommendations:\n1. Review changelog manually\n2. Test in staging environment\n3. Schedule maintenance window\n\n🗓️ Next Check: 24 hours\n\nLow Risk Auto-Update\n🟢 Smart Auto-Updater Report\n\nUpdated: v1.2.3 → v1.2.4\n\n✅ Risk Level: LOW\n\n📋 Changes:\n- Bug fixes (2)\n- Performance improvements (1)\n\n🏗️ Impact Assessment:\n- Architecture: No changes\n- Performance: Minor improvement\n- Compatibility: Fully compatible\n\n✅ Decision: AUTO-UPDATED\n\n📊 Summary:\n- OpenClaw: v1.2.3 → v1.2.4\n- Skills updated: 2\n- Skills unchanged: 15\n- Errors: none\n\n⏱️ Next Check: 24 hours\n\nArchitecture\n┌──────────────────┐\n│  Trigger (Cron)  │\n└────────┬─────────┘\n         │\n         ▼\n┌──────────────────┐\n│  Check Updates    │ ← clawhub update --dry-run\n└────────┬─────────┘\n         │\n         ▼\n┌──────────────────┐\n│  AI Analysis     │ ← Analyze changes, assess risk\n└────────┬─────────┘\n         │\n    ┌────┴────┐\n    │         │\n    ▼         ▼\n┌───────┐  ┌───────┐\n│ HIGH  │  │ MEDIUM│\n│ Skip  │  │ Skip  │\n└───┬───┘  └───┬───┘\n    │          │\n    ▼          ▼\n┌───────┐  ┌───────┐\n│ LOW   │  │ Report│\n│ Update│  │ Only  │\n└───┬───┘  └───────┘\n    │          │\n    └────┬─────┘\n         │\n         ▼\n┌──────────────────┐\n│  Generate Report  │ ← Send summary\n└──────────────────┘\n\nSafety Features\nDry Run First - Always check before acting\nRisk Classification - AI-powered impact assessment\nConfigurable Thresholds - Set your own risk tolerance\nDetailed Logging - Every decision is logged\nManual Override - Always can review before updating\nTroubleshooting\nUpdates keep being skipped\nCheck risk tolerance setting\nVerify AI model is available\nReview changelog manually\nFalse positives (too many HIGH risk)\nLower risk tolerance\nCheck AI model prompts\nReview specific change patterns\nReports not being delivered\nVerify delivery channel configuration\nCheck gateway status\nReview session configuration\nReferences\nreferences/risk-assessment.md → AI risk assessment methodology\nreferences/report-templates.md → Report format examples\nreferences/integration.md → Integration with cron/jobs"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ruiwang20010702/smart-auto-updater",
    "publisherUrl": "https://clawhub.ai/ruiwang20010702/smart-auto-updater",
    "owner": "ruiwang20010702",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/smart-auto-updater",
    "downloadUrl": "https://openagent3.xyz/downloads/smart-auto-updater",
    "agentUrl": "https://openagent3.xyz/skills/smart-auto-updater/agent",
    "manifestUrl": "https://openagent3.xyz/skills/smart-auto-updater/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/smart-auto-updater/agent.md"
  }
}