# Send Smart Auto Updater to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/smart-auto-updater",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=smart-auto-updater",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "references/integration.md",
      "references/report-templates.md",
      "references/risk-assessment.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "smart-auto-updater",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T19:13:09.808Z",
      "expiresAt": "2026-05-10T19:13:09.808Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=smart-auto-updater",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=smart-auto-updater",
        "contentDisposition": "attachment; filename=\"smart-auto-updater-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "smart-auto-updater"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Smart Auto-Updater

AI-powered auto-updater that intelligently decides whether to update based on impact assessment. Safe, intelligent, and configurable.

### 1. Check Phase

Checks for OpenClaw updates
Checks for skill updates via ClawHub
Fetches changelog and diff

### 2. AI Analysis Phase

Analyzes changes using LLM
Evaluates system impact (架构/性能/兼容性)
Classifies risk level (HIGH/MEDIUM/LOW)

### 3. Decision Phase

Risk LevelActionHIGHSkip update, send detailed reportMEDIUMSkip update, send warning + reportLOWAuto-update, send summary

### 4. Report Phase

Generates readable update report
Includes risk assessment
Provides upgrade recommendations

### Basic usage

# Run smart update check
openclaw sessions spawn \\
  --agentId smart-auto-updater \\
  --message "Run smart update check"

### With custom parameters

openclaw sessions spawn \\
  --agentId smart-auto-updater \\
  --message "Check updates with custom settings: auto-update LOW risk, report MEDIUM risk"

### Environment Variables

# AI Model (optional, defaults to configured model)
export SMART_UPDATER_MODEL="minimax-portal/MiniMax-M2.1"

# Auto-update threshold (default: LOW)
# Options: NONE (report only), LOW, MEDIUM
export SMART_UPDATER_AUTO_UPDATE="LOW"

# Risk tolerance (default: MEDIUM)
# HIGH: Only auto-update LOW risk
# MEDIUM: Auto-update LOW + MEDIUM risk
# LOW: Auto-update all
export SMART_UPDATER_RISK_TOLERANCE="MEDIUM"

# Report level (default: detailed)
# Options: brief, detailed, full
export SMART_UPDATER_REPORT_LEVEL="detailed"

### High Risk Report

🔴 Smart Auto-Updater Report

Update Available: v1.2.3 → v1.3.0

⚠️ Risk Level: HIGH

📋 Changes Summary:
- Breaking API changes detected
- Database migration required
- 3 files modified

🏗️ Impact Assessment:
- Architecture: MAJOR changes to core components
- Performance: Potential impact on startup time
- Compatibility: Breaks backward compatibility

🚫 Decision: SKIPPED

💡 Recommendations:
1. Review changelog manually
2. Test in staging environment
3. Schedule maintenance window

🗓️ Next Check: 24 hours

### Low Risk Auto-Update

🟢 Smart Auto-Updater Report

Updated: v1.2.3 → v1.2.4

✅ Risk Level: LOW

📋 Changes:
- Bug fixes (2)
- Performance improvements (1)

🏗️ Impact Assessment:
- Architecture: No changes
- Performance: Minor improvement
- Compatibility: Fully compatible

✅ Decision: AUTO-UPDATED

📊 Summary:
- OpenClaw: v1.2.3 → v1.2.4
- Skills updated: 2
- Skills unchanged: 15
- Errors: none

⏱️ Next Check: 24 hours

### Architecture

┌──────────────────┐
│  Trigger (Cron)  │
└────────┬─────────┘
         │
         ▼
┌──────────────────┐
│  Check Updates    │ ← clawhub update --dry-run
└────────┬─────────┘
         │
         ▼
┌──────────────────┐
│  AI Analysis     │ ← Analyze changes, assess risk
└────────┬─────────┘
         │
    ┌────┴────┐
    │         │
    ▼         ▼
┌───────┐  ┌───────┐
│ HIGH  │  │ MEDIUM│
│ Skip  │  │ Skip  │
└───┬───┘  └───┬───┘
    │          │
    ▼          ▼
┌───────┐  ┌───────┐
│ LOW   │  │ Report│
│ Update│  │ Only  │
└───┬───┘  └───────┘
    │          │
    └────┬─────┘
         │
         ▼
┌──────────────────┐
│  Generate Report  │ ← Send summary
└──────────────────┘

### Safety Features

Dry Run First - Always check before acting
Risk Classification - AI-powered impact assessment
Configurable Thresholds - Set your own risk tolerance
Detailed Logging - Every decision is logged
Manual Override - Always can review before updating

### Updates keep being skipped

Check risk tolerance setting
Verify AI model is available
Review changelog manually

### False positives (too many HIGH risk)

Lower risk tolerance
Check AI model prompts
Review specific change patterns

### Reports not being delivered

Verify delivery channel configuration
Check gateway status
Review session configuration

### References

references/risk-assessment.md → AI risk assessment methodology
references/report-templates.md → Report format examples
references/integration.md → Integration with cron/jobs
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ruiwang20010702
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T19:13:09.808Z
- Expires at: 2026-05-10T19:13:09.808Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/smart-auto-updater)
- [Send to Agent page](https://openagent3.xyz/skills/smart-auto-updater/agent)
- [JSON manifest](https://openagent3.xyz/skills/smart-auto-updater/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/smart-auto-updater/agent.md)
- [Download page](https://openagent3.xyz/downloads/smart-auto-updater)