Vercel Skills — Agent Skill Ecosystem & CLI
Open agent skills ecosystem from Vercel. Install packaged SKILL.md instruction sets into Claude Code, Cursor, Codex, and 30+ AI agents with one command. 13,000+ GitHub stars.
What it is
Vercel Skills is an open ecosystem for packaging and distributing AI agent instructions as SKILL.md files. Each skill is a self-contained instruction set that teaches an AI coding agent how to perform a specific task, from database migrations to deployment workflows. The CLI lets you install skills into Claude Code, Cursor, Codex, and over 30 other AI agents with a single command.
This tool serves developers who want to standardize how their AI agents behave across projects and teams. Instead of copy-pasting system prompts, you install versioned skills that update like packages.
How it saves time or tokens
Skills reduce token waste by providing focused, pre-tested instructions instead of verbose ad-hoc prompts. A well-written skill replaces paragraphs of context-setting with a single install command. The token_estimate for this workflow is approximately 3,000 tokens per session, primarily consumed loading the skill definition.
How to use
- Install the Vercel Skills CLI globally via npm
- Browse available skills or create your own SKILL.md files
- Run
skills add <skill-name>to install a skill into your current project
Example
# Install the CLI
npm install -g @vercel/skills
# Add a skill to your project
skills add vercel/next-deploy
# List installed skills
skills list
# Create your own skill
skills init my-custom-skill
Related on TokRepo
- AI tools for automation — Explore automation workflows compatible with agent skills
- Prompt library — Browse reusable prompt templates and instruction sets
Common pitfalls
- Skills are agent-specific in some cases; verify compatibility with your AI tool before installing
- Overly broad skills that try to cover too many tasks perform worse than focused, single-purpose skills
- Custom skills need clear, unambiguous instructions since different AI agents interpret vague language differently
Frequently Asked Questions
Vercel Skills supports over 30 AI agents including Claude Code, Cursor, Codex, Windsurf, Cline, and others. The SKILL.md format is designed to be agent-agnostic, though some skills include agent-specific optimizations.
Run 'skills init my-skill' to scaffold a new SKILL.md file. Write clear instructions describing what the agent should do, include examples, and publish it to the skills registry or keep it local to your project.
Yes. Skills are versioned like npm packages. You can pin a specific version in your project configuration to ensure consistent behavior across team members and CI environments.
Skills add their instruction text to the agent context, which consumes tokens. Well-written skills are concise and targeted, typically adding 500 to 3,000 tokens depending on complexity. This is usually less than manually explaining the same task.
Yes. The CLI can install skills in non-interactive mode, making it suitable for CI/CD environments where AI agents run automated tasks like code review or test generation.
Citations (3)
- Vercel Skills GitHub— Open agent skills ecosystem supporting 30+ AI agents
- Vercel Documentation— SKILL.md format for packaging agent instructions
- npm Registry— CLI for installing and managing agent skills
Related on TokRepo
Source & Thanks
Created by Vercel Labs. Licensed under MIT.
skills — ⭐ 13,000+
Thanks to Vercel for building the npm of AI agent skills.
Discussion
Related Assets
Claude-Flow — Multi-Agent Orchestration for Claude Code
Layers swarm and hive-mind multi-agent orchestration on top of Claude Code with 64 specialized agents, SQLite memory, and parallel execution.
ccusage — Real-Time Token Cost Tracker for Claude Code
CLI that reads ~/.claude logs and breaks down Claude Code token spend by day, session, and project — pluggable into your statusline.
SuperClaude — Workflow Framework for Claude Code
Adds 16+ slash commands, 9 cognitive personas, and a smart flag system to Claude Code in one pipx install.