# Send agentskills-io 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": "agentskills-io",
    "name": "agentskills-io",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/killerapp/agentskills-io",
    "canonicalUrl": "https://clawhub.ai/killerapp/agentskills-io",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agentskills-io",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentskills-io",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/skill-template.md",
      "references/best-practices.md",
      "references/examples.md",
      "references/specification.md",
      "references/validation.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agentskills-io",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T15:19:18.085Z",
      "expiresAt": "2026-05-18T15:19:18.085Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentskills-io",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentskills-io",
        "contentDisposition": "attachment; filename=\"agentskills-io-2.5.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agentskills-io"
      },
      "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/agentskills-io"
    },
    "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/agentskills-io",
    "downloadUrl": "https://openagent3.xyz/downloads/agentskills-io",
    "agentUrl": "https://openagent3.xyz/skills/agentskills-io/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentskills-io/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentskills-io/agent.md"
  }
}
```
## Documentation

### Agent Skills (agentskills.io)

Create portable skills for AI agents. Works with Claude Code, Cursor, GitHub Copilot, OpenAI integrations, VS Code (symlinks enable sharing across tools).

### Resources

Specification: https://agentskills.io/specification | Validator: https://github.com/agentskills/agentskills

### Structure

skill-name/
├── SKILL.md          # Required (frontmatter + instructions, <5000 tokens activation)
├── scripts/          # Optional: executable code
├── references/       # Optional: detailed docs
└── assets/           # Optional: templates, static files

Rules: Dir name = frontmatter name:. Only 3 subdirs. SKILL.md <500 lines. ~100 tokens for discovery (name+desc).

### Required

name: 1-64 chars, lowercase alphanumeric-hyphens (^[a-z0-9]+(-[a-z0-9]+)*$)
description: 1-1024 chars, include "Use when..." (discovery budget: ~100 tokens)

### Optional

license: SPDX identifier (Apache-2.0, MIT) | compatibility: Environment reqs (<500 chars)
metadata: Key-value pairs (author, version, tags) | allowed-tools: Space-delimited tool list

### Validation

# Install permanently (vs ephemeral uvx)
uv tool install git+https://github.com/agentskills/agentskills#subdirectory=skills-ref
# Or use uvx for one-shot validation
uvx --from git+https://github.com/agentskills/agentskills#subdirectory=skills-ref skills-ref validate ./skill

CommandDescriptionskills-ref validate <path>Check structure, frontmatter, token budgetsskills-ref read-properties <path>Extract metadataskills-ref to-prompt <path>Generate prompt format

### Writing Rules

Imperative language: "Check: command" not "You might want to..."
Concrete examples with expected output; handle common errors with solutions
Progressive disclosure: core in SKILL.md (<5000 tokens), details in references/

### Common Errors

ErrorFixInvalid nameLowercase alphanumeric-hyphens onlyMissing descriptionAdd description: field with "Use when..."Description too long<1024 chars, move details to bodyInvalid YAMLCheck indentation, quote special charsMissing SKILL.mdFilename must be exactly SKILL.mdDir name mismatchDirectory name must match name: field

### Quick Workflow

Create: mkdir skill-name && touch skill-name/SKILL.md
Add frontmatter (name, description with "Use when...")
Write instructions (bullets, not prose); validate: skills-ref validate ./skill-name
Test with AI agent, iterate; add LICENSE, push to repository

### Plugin Structure (Claude Code)

plugin-name/
├── .claude-plugin/plugin.json
├── README.md, LICENSE, CHANGELOG.md  # CHANGELOG.md tracks versions
├── skills/skill-name/SKILL.md
├── agents/     # Optional: subagents (.md files)
└── examples/   # Optional: full demo projects

Distinctions: Plugin examples/ = runnable projects. Skill assets/ = static resources only.

### Batch Validation & Versioning

bash scripts/validate-skills-repo.sh     # Validate all skills in repo
bash scripts/bump-changed-plugins.sh     # Auto-bump only changed plugins (semver)

### Minimal Example

---
name: example-skill
description: Brief description. Use when doing X.
---
# Example Skill
## Prerequisites
- Required tools
## Instructions
1. First step: \`command\`
2. Second step with example
## Troubleshooting
**Error**: Message → **Fix**: Solution

### Symlink Sharing

Share skills across Claude Code, Cursor, VS Code: ln -s /path/to/skills ~/.cursor/skills

### References

specification.md - Full YAML schema, token budgets
examples.md - Complete examples across platforms
validation.md - Error troubleshooting
best-practices.md - Advanced patterns, symlink setup
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: killerapp
- Version: 2.5.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-11T15:19:18.085Z
- Expires at: 2026-05-18T15:19:18.085Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agentskills-io)
- [Send to Agent page](https://openagent3.xyz/skills/agentskills-io/agent)
- [JSON manifest](https://openagent3.xyz/skills/agentskills-io/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agentskills-io/agent.md)
- [Download page](https://openagent3.xyz/downloads/agentskills-io)