skills

star 0

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.

ethanranxu By ethanranxu schedule Updated 2/4/2026

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

  1. Search for skills:

    node bin/cli.mjs find "image processing"
    
  2. Add a skill from GitHub:

    node bin/cli.mjs add vercel-labs/agent-skills
    
  3. List 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.

Install via CLI
npx skills add https://github.com/ethanranxu/Skills --skill skills
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator