# Send Skill Update 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": "skill-update",
    "name": "Skill Update",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/skill-update",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/skill-update",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skill-update",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-update",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "migrate.md",
      "preview.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "skill-update",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T01:32:32.526Z",
      "expiresAt": "2026-05-16T01:32:32.526Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-update",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-update",
        "contentDisposition": "attachment; filename=\"skill-update-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skill-update"
      },
      "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/skill-update"
    },
    "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/skill-update",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-update",
    "agentUrl": "https://openagent3.xyz/skills/skill-update/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-update/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-update/agent.md"
  }
}
```
## Documentation

### Safe Skill Updates

Core principle: Never update without user understanding and approval.

Updates can break things:

Changed file locations → data loss
Removed features → broken workflows
New requirements → unexpected behavior
Changed data formats → incompatible state

References:

Read preview.md — Diff and impact analysis
Read migrate.md — Data migration strategies

### Update Flow

Check — Are updates available?
Preview — What changes? How does it affect user?
Explain — Present changes step-by-step
Confirm — User explicitly approves
Backup — Save current state
Update — Apply new version
Verify — Confirm everything works

### Checking for Updates

npx clawhub outdated           # List skills with updates
npx clawhub info <slug>        # Show available versions

Proactive notification: When user mentions a skill, check if update exists. Mention it once, don't nag.

### Preview Before Update

⚠️ Never update without showing impact first.

For each changed file:

Show what's different (added/removed/modified)
Explain how it affects user's workflow
Flag breaking changes prominently

Breaking change indicators:

File/folder structure changes
Removed instructions or features
New required setup steps
Changed data format expectations

### User Validation

Present changes in digestible format:

"Skill X has v2.0.0 available. Changes:
⚠️ Breaking: Config now in config.md (was in SKILL.md)
Added: New templates/ folder with examples
Removed: Old legacy.md no longer needed
Migration needed: Your saved preferences need to move.
I can help migrate. Proceed?"

Only update after explicit "yes".

### Backup Strategy

Before ANY update:

Copy current skill folder to ~/.clawhub/backups/<slug>-<version>-<timestamp>/
Note the backup location in response
If update fails → offer restore

### Handling Migrations

When data format changes:

Detect user's current data (preferences, saved state)
Explain what needs to migrate
Propose migration steps
Execute only with approval
Verify migrated data works

See migrate.md for patterns.

### Rollback

If update causes problems:

"Something's not working? I have a backup from before the update.
Want me to restore skill X to v1.2.3?"

Keep backups for at least 7 days or until user confirms new version works.

Updates should feel safe, not scary. User stays in control.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- 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-09T01:32:32.526Z
- Expires at: 2026-05-16T01:32:32.526Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skill-update)
- [Send to Agent page](https://openagent3.xyz/skills/skill-update/agent)
- [JSON manifest](https://openagent3.xyz/skills/skill-update/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skill-update/agent.md)
- [Download page](https://openagent3.xyz/downloads/skill-update)