A CLI for browsing, searching, and installing skills from anthropics/skills.
Skills are folders of instructions and resources that teach Claude how to complete specific tasks. This CLI makes it easy to discover and use them.
pip install askillOr install from source:
git clone https://github.com/akshayaggarwal99/agentskills.git
cd agentskills
pip install -e .# Browse all available skills
skill browse
# Search for specific skills
skill search mcp
skill search "frontend design"
# View skill details
skill get mcp-builder
# Install a skill to your project
skill use mcp-builder
# Create ZIP for Claude.ai upload
skill zip mcp-builder
# Remove an installed skill
skill remove mcp-builder| Command | Description |
|---|---|
skill browse |
📚 Browse all skills (paginated) |
skill search <query> |
🔍 Search by name, description, or tags |
skill get <name> |
📄 View skill details and SKILL.md preview |
skill use <name> |
⬇️ Install skill to .skills/ directory |
skill zip <name> |
📦 Create ZIP for Claude.ai upload |
skill remove <name> |
🗑️ Remove an installed skill |
skill stats |
📊 Show registry statistics |
Skills installed to .skills/ are automatically available. Just mention the skill:
"Use the mcp-builder skill to create a GitHub API server"
- Install and zip the skill:
skill use frontend-design skill zip frontend-design
- Go to claude.ai/settings/capabilities
- Upload the ZIP file
Reference the SKILL.md file directly in your prompts or use the Skills API.
This CLI fetches skills from the official anthropics/skills repository and caches them locally at ~/.agentskills/cache/.
Skills follow the Agent Skills Spec:
- Each skill is a folder with a
SKILL.mdfile - YAML frontmatter defines
nameanddescription - Markdown body contains instructions for Claude
| Skill | Description |
|---|---|
mcp-builder |
Guide for creating MCP servers |
frontend-design |
Create production-grade UIs |
webapp-testing |
Test web apps with Playwright |
pdf |
PDF manipulation toolkit |
docx |
Word document creation |
pptx |
PowerPoint generation |
xlsx |
Excel spreadsheet creation |
| ... | Browse all 16+ skills |
agentskills/
├── models.py # Skill dataclass
├── providers.py # SkillProvider abstraction (Anthropic, Local)
├── registry.py # Multi-provider registry with search/pagination
└── cli.py # Typer CLI commands
Extensible design: Add new skill sources by implementing SkillProvider:
from agentskills.providers import SkillProvider, LocalSkillProvider
from agentskills.registry import SkillRegistry
registry = SkillRegistry()
registry.add_provider(AnthropicSkillProvider())
registry.add_provider(LocalSkillProvider(Path("./my-skills")))MIT License - see LICENSE for details.
- Skills sourced from anthropics/skills (Apache 2.0)
- Built with Typer and Rich
Contributions welcome! Please open an issue or PR.