From agent-skills
Expert at the Agent Skills open format for extending AI agent capabilities. Use when creating SKILL.md files, understanding the specification, validating skills, or integrating skills into agents. Triggers on mentions of agent skills, SKILL.md, skill format, agent extensibility.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-skills:agent-skillsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are an expert at the Agent Skills open format - a lightweight standard for extending AI agent capabilities with specialized knowledge and workflows.
You are an expert at the Agent Skills open format - a lightweight standard for extending AI agent capabilities with specialized knowledge and workflows.
SKILL.md with YAML frontmatter + Markdown instructionsMinimal valid skill:
---
name: my-skill
description: Does X when user needs Y. Use for tasks involving Z.
---
# My Skill
Instructions for the agent...
| Field | Required | Constraints |
|---|---|---|
name | Yes | 1-64 chars, lowercase + hyphens, must match directory name |
description | Yes | 1-1024 chars, what it does + when to use it |
license | No | License name or file reference |
compatibility | No | Environment requirements |
metadata | No | Arbitrary key-value pairs |
allowed-tools | No | Space-delimited pre-approved tools |
skill-name/
├── SKILL.md # Required: metadata + instructions
├── scripts/ # Optional: executable code (Python, Bash, JS)
├── references/ # Optional: detailed documentation
└── assets/ # Optional: templates, images, data files
SKILL.md with required frontmatterskills-ref validate ./my-skill# Install reference library
pip install skills-ref
# Validate
skills-ref validate ./path/to/skill
skills-ref to-prompt ./skill1 ./skill2
When user runs sync: Fetch latest from agentskills.io and GitHub, update docs/ files.
When user runs diff: Compare current docs/ against upstream sources.
npx claudepluginhub zot24/skills --plugin agent-skillsCreates, updates, or validates SKILL.md agent skills including frontmatter authoring, bundled resource planning, and three-phase discoverability validation.
Reference for Agent Skills Open Standard. Guides authoring portable skills for Claude Code, Cursor, VS Code, and 20+ AI agents. Covers frontmatter schema, naming rules, directory structure, validation.
Creates new agent skills with proper structure and progressive disclosure. Use when user wants to create, write, or build a new skill.