Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Create, validate, and publish Agent Skills following the official open standard from agentskills.io. Use when (1) creating new skills for AI agents, (2) validating skill structure and metadata, (3) understanding the Agent Skills specification, (4) converting existing documentation into portable skills, or (5) ensuring cross-platform compatibility with Claude Code, Cursor, GitHub Copilot, and other tools.
Create, validate, and publish Agent Skills following the official open standard from agentskills.io. Use when (1) creating new skills for AI agents, (2) validating skill structure and metadata, (3) understanding the Agent Skills specification, (4) converting existing documentation into portable skills, or (5) ensuring cross-platform compatibility with Claude Code, Cursor, GitHub Copilot, and other tools.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
Create portable skills for AI agents. Works with Claude Code, Cursor, GitHub Copilot, OpenAI integrations, VS Code (symlinks enable sharing across tools).
Specification: https://agentskills.io/specification | Validator: https://github.com/agentskills/agentskills
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).
name: 1-64 chars, lowercase alphanumeric-hyphens (^[a-z0-9]+(-[a-z0-9]+)*$) description: 1-1024 chars, include "Use when..." (discovery budget: ~100 tokens)
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
# 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
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/
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
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-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.
bash scripts/validate-skills-repo.sh # Validate all skills in repo bash scripts/bump-changed-plugins.sh # Auto-bump only changed plugins (semver)
Share skills across Claude Code, Cursor, VS Code: ln -s /path/to/skills ~/.cursor/skills
specification.md - Full YAML schema, token budgets examples.md - Complete examples across platforms validation.md - Error troubleshooting best-practices.md - Advanced patterns, symlink setup
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.