Skills are reusable capabilities for AI agents. Install them with a single command to enhance your agents with access to procedural knowledge. Distributed via skills.sh.
| Skill | Description | Install |
|---|---|---|
| vercel-sandbox | Work with Vercel Sandbox ephemeral Linux microVMs | npx skills add https://github.com/cesarecaoduro/agent-skills --skill vercel-sandbox |
<skill-name>/
SKILL.md # Skill definition (frontmatter + instructions)
README.md # Installation & usage guide
references/ # Reference documentation
scripts/ # Automation (e.g., doc updaters)
npx skills add https://github.com/cesarecaoduro/agent-skills --skill <skill-name>- Create a directory for the skill
- Add a
SKILL.mdwith YAML frontmatter (name,description) and markdown instructions - Add a
README.mdwith installation instructions - Add reference docs in
references/and optional scripts inscripts/ - Update this README to list the new skill
Each skill may include an update script to refresh reference files from upstream sources:
python3 <skill-name>/scripts/update_docs.py <skill-name>/referencesMIT