| Crates.io | skillset |
| lib.rs | skillset |
| version | 0.1.0 |
| created_at | 2026-01-18 13:21:20.098623+00 |
| updated_at | 2026-01-18 13:21:20.098623+00 |
| description | A package manager for coding agent skills |
| homepage | |
| repository | https://github.com/skillset/skillset |
| max_upload_size | |
| id | 2052329 |
| size | 179,605 |
A CLI package manager for AI agent skills. Install, manage, and organize skills across multiple agent frameworks with simple npm-like commands.
cargo install skillset
# Install React best practices skill
skillset add react-best-practices@1.0.0
# Install from a specific source
skillset add my-skill --source git:https://github.com/user/repo
# List installed skills
skillset list
# Remove a skill
skillset remove react-best-practices
Create skillset.json in your project:
{
"skills": {
"react-best-practices": "1.0.0",
"@user/web-scraper": "2.1.0",
"custom-skill": {
"version": "3.0.0",
"source": "git:https://github.com/vercel-labs/agent-skills",
"convention": "agent-skills"
}
},
"registry": "ghcr.io/skillset",
"conventions": ["autogpt", "langchain", "agent-skills"]
}
latest@user/skill format for community skillsskillset add <skill>[@<version>] [--source <source>] [--convention <convention>]
skillset remove <skill>
skillset list [--verbose]
skillset update [skill]
skillset info <skill>
skillset convention list
skillset convention enable <name>
skillset convention disable <name>
skillset publish <path> <reference>
git:https://github.com/user/repo or direct GitHub URLsoci:ghcr.io/user/skill:v1.0.0 (default for simple names)./local-skill or absolute pathsskills/autogpt/{name}/skills/langchain/{name}/skills/agent-skills/{name}/Simple skill names automatically resolve to OCI registries:
file-analyzer → oci:ghcr.io/skillset/file-analyzer:v1.0.0@user/skill → oci:ghcr.io/user/skill:v1.0.0Skills are organized by framework:
project/
├── skillset.json
├── skills/
│ ├── autogpt/
│ │ └── file-analyzer/
│ ├── langchain/
│ │ └── llm-tool/
│ └── agent-skills/
│ └── react-best-practices/
└── .skillset/
└── cache/
For architecture details and integration guidelines, see AGENTS.md.