| name | skill-hub |
| description | Discover, search, and install shared skills from the Skill Hub registry. Use when the user wants to find available skills, share a skill with other bots, or install a skill from the hub. |
| user-invocable | true |
| context | fork |
| allowed-tools | Bash, Read, Grep, Glob |
| argument-hint | [list|search|publish|install] [args] |
Skill Hub โ Shared Skill Registry
Discover and install skills shared across MetaBot instances and bots.
Quick Commands (mb shortcut)
The mb CLI handles auth automatically. Always prefer mb over raw curl:
mb skills
mb skills search <query>
mb skills get <name>
mb skills install <skillName> <botName>
mb skills install <skillName> <botName> peer:<peerName>
mb skills publish <botName> <skillName>
mb skills remove <name>
When to Use
- User asks "what skills are available?"
- User wants to install a skill to a bot
- User wants to share/publish a skill for others to use
- User asks to find skills for a specific purpose (e.g., "is there a skill for spreadsheets?")
- Cross-bot skill sharing: one bot has a useful skill that another bot needs
Workflow Examples
Finding and installing a skill
mb skills search "calendar"
mb skills get lark-calendar
mb skills install lark-calendar mybot
Publishing a bot's skill
mb skills publish whis data-analysis
mb skills
Installing from a peer instance
mb skills
mb skills install data-viz mybot peer:alice
Guidelines
- Before publishing, ensure the skill is well-documented with clear SKILL.md
- Use descriptive names and tags for discoverability
- Search before creating to avoid duplicates
- Published skills are available to all bots on all connected instances