Awesome-omni-skill how-to-use-vercel-skills
How to create, structure, install, and publish agent skills compatible with the Vercel skills ecosystem and skills.sh. Use when the user wants to build a new skill, structure a SKILL.md file, add install commands to a website or README, or publish skills for distribution across 40+ AI agents.
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ai-agents/how-to-use-vercel-skills" ~/.claude/skills/diegosouzapw-awesome-omni-skill-how-to-use-vercel-skills && rm -rf "$T"
skills/ai-agents/how-to-use-vercel-skills/SKILL.mdHow to Use Vercel Skills
Agent skills are folders of instructions, scripts, and resources that AI agents can discover and use. The format is an open standard supported by 40+ agents including Claude Code, Cursor, GitHub Copilot, Windsurf, Cline, Gemini CLI, OpenAI Codex, Roo Code, and many others.
When to Use This Skill
- Creating a new agent skill from scratch
- Structuring a SKILL.md file with correct frontmatter and body
- Adding install commands to a website, README, or documentation
- Publishing skills so they appear on skills.sh
- Understanding how the skills CLI works (install, find, list, update, remove)
- Organizing a repository that contains multiple skills
Skill File Structure
A skill is a directory containing at minimum a
SKILL.md file. The directory name must exactly match the name field in the frontmatter.
Minimal structure
my-skill/ SKILL.md
Full structure with optional directories
my-skill/ SKILL.md # Required -- agent instructions scripts/ # Optional -- executable helpers (bash, python, js) references/ # Optional -- detailed docs loaded on demand assets/ # Optional -- templates, schemas, static files
SKILL.md Format
Every SKILL.md must start with YAML frontmatter followed by markdown content.
Frontmatter
--- name: my-skill-name description: What this skill does and when to use it. Include keywords that help agents match tasks to this skill. ---
Required fields
| Field | Rules |
|---|---|
| 1-64 characters. Lowercase letters, numbers, and hyphens only. Must not start or end with a hyphen. No consecutive hyphens (). Must match the parent directory name. |
| 1-1024 characters. Describe what the skill does AND when to use it. Include specific keywords that help agents identify relevant tasks. |
Optional fields
| Field | Purpose |
|---|---|
| License name or reference to a bundled LICENSE file. |
| Max 500 characters. Environment requirements (e.g., "Requires git, docker, jq"). Most skills do not need this. |
| Arbitrary key-value pairs. Common keys: , . |
| Space-delimited list of pre-approved tools. Experimental, support varies by agent. |
Full frontmatter example
--- name: pdf-processing description: Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF documents or when the user mentions PDFs, forms, or document extraction. license: MIT compatibility: Requires Python 3.10+ metadata: author: example-org version: "2.1" allowed-tools: Bash(python:*) Read ---
Name field rules
Valid:
pdf-processingdata-analysiscode-reviewmy-skill-v2
Invalid:
(uppercase not allowed)PDF-Processing
(cannot start with hyphen)-pdf
(cannot end with hyphen)pdf-
(consecutive hyphens not allowed)pdf--processing
(spaces not allowed)my skill
Writing a good description
The description is a routing rule, not a title. Agents see only the
name and description at startup to decide whether to load the full skill.
Bad:
description: Helps with PDFs.
Good:
description: Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF documents or when the user mentions PDFs, forms, or document extraction.
Body content
The markdown body after frontmatter contains the actual instructions. There are no format restrictions, but recommended sections include:
- What this skill does
- When to use it (and when not to)
- Step-by-step procedure
- Examples of inputs and outputs
- Common edge cases and failure modes
- Validation criteria ("how to know it worked")
Keep the main SKILL.md under 500 lines. Move detailed reference material to files in
references/.
Progressive Disclosure
Skills load in stages to minimize context usage:
- Metadata (~100 tokens):
andname
are loaded at startup for all installed skills.description - Instructions (< 5000 tokens recommended): The full SKILL.md body is loaded when the agent activates the skill.
- Resources (as needed): Files in
,scripts/
, andreferences/
are loaded only when required.assets/
Install Commands for Websites and READMEs
Install all skills from a repo
npx skills add owner/repo
Install a specific skill from a multi-skill repo
npx skills add owner/repo --skill skill-name
Install all skills from a repo non-interactively
npx skills add owner/repo --all -y
Install to a specific agent only
npx skills add owner/repo --agent claude-code npx skills add owner/repo --agent cursor
Install globally (user-wide, not just current project)
npx skills add owner/repo --global
Example website/README copy
For a repo at
github.com/myorg/my-agent-skills with a skill called my-workflow:
## Install Install all skills:
npx skills add myorg/my-agent-skills
Install just the workflow skill:
npx skills add myorg/my-agent-skills --skill my-workflow
CLI Reference
| Command | Purpose |
|---|---|
| Install skills from a GitHub repo, URL, or local path |
| Show installed skills (alias: ) |
| Search for skills interactively or by keyword |
| Check for available updates |
| Upgrade all installed skills |
| Generate a new SKILL.md template |
| Uninstall skills |
Source formats the CLI accepts
- GitHub shorthand:
owner/repo - Full GitHub URL:
https://github.com/owner/repo - Direct skill path:
https://github.com/owner/repo/tree/main/skills/skill-name - GitLab and other git hosts
- Local filesystem paths
Key flags
| Flag | Purpose |
|---|---|
| Install a specific skill by name, or for all |
| Target a specific agent (e.g., , ) |
| Install to user home directory instead of project |
| Copy files instead of creating symlinks |
| Skip confirmation prompts |
| Install all skills to all agents non-interactively |
| Preview available skills without installing |
Where Skills Get Installed
The CLI automatically places skills in the correct location for each agent:
| Agent | Project path | Global path |
|---|---|---|
| Claude Code | | |
| Cursor | | |
| GitHub Copilot | | varies |
| Windsurf | | varies |
40+ agents are supported. The CLI handles path resolution automatically.
Repository Organization
Single skill repo
my-repo/ SKILL.md
Multi-skill repo (recommended for collections)
my-repo/ skills/ skill-one/ SKILL.md skill-two/ SKILL.md scripts/ helper.sh references/ detailed-guide.md
The CLI searches these locations automatically:
- Repository root
directory and its subdirectoriesskills/
,skills/.curated/
,skills/.experimental/skills/.system/- Agent-specific directories (
,.claude/skills/
, etc.).agents/skills/ - Recursive fallback if nothing found in standard locations
Skills can be nested in subdirectories (e.g.,
skills/category/my-skill/SKILL.md) and the CLI will still discover them.
Publishing and Discovery
Skills appear on skills.sh automatically when people install them via the CLI. There is no separate publish step. To get your skill listed:
- Put your skill in a public GitHub repo with a valid SKILL.md
- Share the install command:
npx skills add owner/repo - As people install it, it appears and climbs the skills.sh leaderboard
Validation
Use the reference library to validate your skill before publishing:
npx skills-ref validate ./my-skill
This checks that frontmatter is valid and naming conventions are followed.
Quick Checklist for a New Skill
- Create a directory with a lowercase, hyphenated name
- Add a SKILL.md with
andname
in the frontmatterdescription - Ensure
exactly matches the directory namename - Write a description that works as a routing rule (what it does + when to use it)
- Write clear instructions in the markdown body
- Keep SKILL.md under 500 lines; use
for detailed docsreferences/ - Add
for any executable helpersscripts/ - Test by running
locallynpx skills add . - Push to a public GitHub repo
- Share the install command:
npx skills add owner/repo