skillshub-0.1.0 is not a library.
Skillshub
Skillshub is a package manager for AI coding agent skills. Install skills once and link them to every detected agent so all of your agents stay in sync.
Why Skillshub
- One install, many agents: a single skills registry in
~/.skillshub/skills - One command to sync:
skillshub linkwires skills into all detected agents - Clear skill format: each skill lives in its own folder with
SKILL.mdmetadata
Installation
From Cargo (recommended)
From Source
Quick Start
# Install all available skills
# Link installed skills to every detected agent
# See which agents were detected
Common Commands
# List all available skills
# Install a specific skill
# Show detailed info about a skill
# Uninstall a skill
Supported Agents
Skillshub automatically detects and links to these coding agents:
| Agent | Directory | Skills Path |
|---|---|---|
| Claude | ~/.claude |
~/.claude/skills |
| Codex | ~/.codex |
~/.codex/skills |
| OpenCode | ~/.opencode |
~/.opencode/skill |
| Aider | ~/.aider |
~/.aider/skills |
| Cursor | ~/.cursor |
~/.cursor/skills |
| Continue | ~/.continue |
~/.continue/skills |
How It Works
- Skills are installed to
~/.skillshub/skills/ - Running
skillshub linkcreates symlinks from each agent's skills directory to the installed skills - Re-run
skillshub linkany time to keep all agents synchronized
Skill Format
Create a new directory under skills/ with a SKILL.md file:
---
name: my-skill
description: What this skill does and when to use it
---
# My Skill
Instructions for the AI agent...
Optional subdirectories:
scripts/- Executable scripts the agent can runreferences/- Documentation to be loaded into context