Developer Tools
Use CLI tool or MCP Server to quickly install and manage Skills
CLI Tool
Command Line Installer
Quickly install, manage, and uninstall Skills via command line. Supports multiple IDEs and global/project-level installation.
One-click install Skills to multiple IDEs
Supports Trae, Cursor, Claude, and more
Global or project-level installation
Easily list and uninstall installed Skills
Installation (Requires Node.js)
Using npx
Recommended
npx skill4agent <command>No installation required, use directly
Global Installation
npm install -g @skill4agent/cliUse skill4agent command directly after installation
Usage Examples
Search Online Skills
Search for Skills in the registry
npx skill4agent search <keyword> [options]Options:
-l, --limit- Number of results to return, default 10-j, --json- Output in JSON format (more friendly for AI parsing), default false
Examples:
# Search for Skills npx skill4agent search react # Specify limit npx skill4agent search react -l 5 # Search with Chinese keyword npx skill4agent search 前端设计
Read Skill Details
View detailed information and complete content of a Skill
npx skill4agent read <source> <skill> [options]Options:
--type- Content type: original or translated, default original-j, --json- Output in JSON format (more friendly for AI parsing), default false
Examples:
# Read original content npx skill4agent read anthropics/skills frontend-design # Read translated content npx skill4agent read anthropics/skills frontend-design --type translated # JSON format output npx skill4agent read anthropics/skills frontend-design -j
Interactive Installation
Recommended for beginners with guided prompts
npx skill4agent add <source> <skill>Non-interactive Installation
For scripts and AI automation
npx skill4agent install <source> <skill> [options]Options:
--type- Select version: original or translated, default original--global- Global installation: default project-level installation--dirs- Installation directories:example: ".cursor, .trae"--method- Installation method: symlink or copy, default symlink
Examples:
# Default npx skill4agent install anthropics/skills frontend-design # Global npx skill4agent install anthropics/skills frontend-design --global # Translated npx skill4agent install anthropics/skills frontend-design --type translated # Custom dirs npx skill4agent install anthropics/skills frontend-design --dirs '.cursor,.trae'
List Installed
npx skill4agent listUninstall Skill
npx skill4agent uninstall <skill> [options]Options:
--global- Uninstall global Skill only--project- Uninstall project-level Skill only- (Without params: uninstall both global and project-level)
Examples:
# Uninstall all (global + project) npx skill4agent uninstall frontend-design # Uninstall global only npx skill4agent uninstall frontend-design --global # Uninstall project only npx skill4agent uninstall frontend-design --project