name: skills
description: The open agent skills ecosystem. This skill provides a CLI tool to find, add, list, and manage "skills" for AI agents. Use this when you need to discover new modular capabilities or integrate them into a project's .agent/skills directory.
Skills CLI
The skills CLI is a tool for managing the agent skills ecosystem. It allows agents and developers to build, share, and use specialized procedural knowledge.
Capabilities
- Find: Search the registry or GitHub for skills.
- Add: Install a skill into your current project.
- List: See what skills are currently available in the project.
- Remove: Uninstall a skill.
- Init: Prepare a project for using skills.
How to execute
Run the CLI using Node.js:
node bin/cli.mjs <command> [options]
Examples
Search for skills:
node bin/cli.mjs find "image processing"Add a skill from GitHub:
node bin/cli.mjs add vercel-labs/agent-skillsList installed skills:
node bin/cli.mjs list
Directory Structure
bin/cli.mjs: The entry point for the CLI.src/: Source code for the CLI logic.skills/: A collection of pre-defined skills included in this package.
Integration
When you add a skill, it is typically placed in the .agent/skills folder of your current working directory.