vtrix-skills
v1.2.0
Published
CLI tool for discovering and installing agent skills from Vtrix SkillHub
Maintainers
Readme
vtrix-skills
CLI tool for discovering and installing agent skills from Vtrix SkillHub.
Installation
npm install -g vtrix-skillsOr use directly with npx:
npx vtrix-skills find imageQuick Start
Search for skills
# Search by keyword
vtrix-skills find image
# Search within a category
vtrix-skills find image --category ai-ml
# Interactive mode (browse by category)
vtrix-skills find -iInstall a skill
# Install to current project (./.agents/skills)
vtrix-skills add gpt-image-1
# Install globally (~/.claude/skills)
vtrix-skills add gpt-image-1 -g
# Install specific version
vtrix-skills add gpt-image-1 --version 1.0.0List skills
# List all skills (sorted by stars)
vtrix-skills list
# List by category
vtrix-skills list --category development
# Sort by downloads
vtrix-skills list --sort downloadsConfiguration
# View current configuration
vtrix-skills config --show
# Set custom API URL
vtrix-skills config --set-url https://your-domain.com/api/v1Commands
| Command | Description |
|---------|-------------|
| find [query] | Search for skills by keyword |
| find -i | Browse skills by category (interactive) |
| find <query> -c <category> | Search within a specific category |
| add <slug> | Install a skill |
| list | List all skills |
| config --show | Show current configuration |
| config --set-url <url> | Set API base URL |
Environment Variables
You can override the default API URL using environment variables:
export SKILLHUB_API_URL=https://your-custom-domain.com/api/v1
vtrix-skills find reactExamples
# Search for image generation skills
vtrix-skills find image
# Search for React skills in development category
vtrix-skills find react --category development
# Browse skills by category
vtrix-skills find -i
# Install a skill globally
vtrix-skills add gpt-image-1 -g
# List top skills by stars
vtrix-skills list --sort starsLicense
MIT
Support
For issues and feature requests, please visit: https://github.com/vtrix/vtrix-skills/issues
