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

### Skill Lifecycle Management

Manage the full lifecycle of installed skills: discovery, installation, updates, and cleanup.

References:

suggestions.md — when to suggest skills based on current task
lifecycle.md — installation, updates, and cleanup

Complements:

skill-finder — user-initiated search ("find me a skill for X")
skill-manager — proactive lifecycle management

### Scope

This skill ONLY:

Suggests skills based on current task context
Tracks installed skills in ~/skill-manager/inventory.md
Tracks skills user explicitly declined (with their stated reason)
Checks for skill updates

This skill NEVER:

Counts task repetition or user behavior patterns
Installs without explicit user consent
Reads files outside ~/skill-manager/

### Security Note

This skill uses npx clawhub commands which download and execute code from ClawHub registry. This is the standard mechanism for skill management. Always review skills before installing.

### Context-Based Suggestions

When working on a task, notice the current context:

User mentions specific tool (Stripe, AWS, GitHub) → check if skill exists
Task involves unfamiliar domain → suggest searching

This is responding to current context, not tracking patterns.

### Lifecycle Actions

ActionCommandInstallnpx clawhub install <slug>Updatenpx clawhub update <slug>Infonpx clawhub info <slug>Removenpx clawhub uninstall <slug>

### Memory Storage

Inventory at ~/skill-manager/inventory.md.

First use: mkdir -p ~/skill-manager

Format:

## Installed
- slug@version — purpose — YYYY-MM-DD

## Declined
- slug — "user's stated reason"

What is tracked:

Skills user installed (with purpose and date)
Skills user explicitly declined (with their stated reason)

Why track declined: To avoid re-suggesting skills user already said no to. Only stores what user explicitly stated.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.3
## 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-09T00:04:42.601Z
- Expires at: 2026-05-16T00:04:42.601Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skill-manager)
- [Send to Agent page](https://openagent3.xyz/skills/skill-manager/agent)
- [JSON manifest](https://openagent3.xyz/skills/skill-manager/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skill-manager/agent.md)
- [Download page](https://openagent3.xyz/downloads/skill-manager)