@davidyangcool/agent-skill
v0.1.0
Published
CLI tool for managing AI agent skills from SkillMaster
Maintainers
Readme
Agent Skill CLI (Node.js)
🎯 A command-line tool for managing AI agent skills from SkillMaster.
Installation
npm install -g agent-skillQuick Start
# Search for skills
skill search "document processing"
skill -s "python"
# View skill details
skill show pdf
# Open skill source in browser
skill open notebooklm
# Install a skill (local project)
skill install pdf
# Install a skill (global)
skill install notebooklm -g
# List installed skills
skill list
# Uninstall a skill
skill uninstall pdfCommands
Search (search, -s)
Search for skills by keywords:
skill search "pdf processor"
skill -s "markdown"
skill search python --limit 10Show (show, info)
View detailed information about a skill:
skill show pdf
skill show notebooklm
skill info ui-ux-pro-maxOpen
Open skill's source URL in browser:
skill open notebooklm
skill open pdfInstall
Download and install a skill:
# Install to local project (./.claude/skills/)
skill install pdf
# Install to global directory (~/.claude/skills/)
skill install notebooklm -g
# Install to custom path
skill install my-skill --path ./custom-dir/
# Force reinstall
skill install pdf --force| Flag | Description |
|------|-------------|
| -g, --global | Install to ~/.claude/skills/ |
| -p, --path PATH | Custom installation path |
| -f, --force | Overwrite if already installed |
Uninstall
Remove an installed skill:
skill uninstall pdf
skill uninstall notebooklm -y # skip confirmationList (list, ls)
List all installed skills:
skill list
skill lsConfig
Show current configuration:
skill configDirectory Structure
~/.claude/
├── skill-cli/
│ ├── config.json # User configuration
│ └── installed.json # Installed skills registry
└── skills/ # Global skills (with -g flag)
├── notebooklm/
└── pdf/
./.claude/skills/ # Local project skills (default)
├── docx/
└── xlsx/Development
# Install dependencies
npm install
# Build
npm run build
# Link for local testing
npm link
# Run directly with ts-node
npx ts-node src/cli.ts search pdfLicense
MIT
