con un clic
skill-hub
// 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.
// 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.
Talk to other MetaBot bots (`mb talk` — send a message to another bot, including cross-instance peers). Use when you want to delegate to or message another bot, e.g. 'talk to bot X', '跟其他 bot 说话', 'send message to peer bot', 'ask the deploy-bot', 'delegate to bot'. Also covers bot/peer management, skill hub, voice calls.
MetaBot's persistent server-side scheduler (cron + one-shot). Optional skill — not installed by default. Use when the user wants tasks that survive Claude session restarts, are visible to other bots, or need to run in MetaBot's PM2 process rather than this Claude session.
The meta-skill: create AI agent teams, individual agents, or custom skills for any project. Use when the user wants to generate a complete agent team, create a single agent, or create a single skill for Claude Code, Kimi, or Codex.
Generate high-quality speech audio using Doubao (豆包/Volcengine) TTS API. Use this skill when the user asks to generate audio, podcasts, voiceovers, or text-to-speech output.
Convert text to speech audio using mb voice CLI. Use when the user asks you to speak, say something aloud, generate audio, or produce a voice recording.
Read and write shared memory documents. Use this when you need to save knowledge, notes, research findings, or project context for future reference across sessions. Also use it to look up previously stored information.
| 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] |
Discover and install skills shared across MetaBot instances and bots.
The mb CLI handles auth automatically. Always prefer mb over raw curl:
# Browse available skills
mb skills # List all skills (local + peer)
mb skills search <query> # Search by keyword
# Get skill details
mb skills get <name> # View full skill info and SKILL.md content
# Install a skill to a bot
mb skills install <skillName> <botName> # Install from local hub
mb skills install <skillName> <botName> peer:<peerName> # Install from peer
# Publish a skill (share with others)
mb skills publish <botName> <skillName> # Publish a bot's skill to the hub
# Remove a skill from the hub
mb skills remove <name> # Unpublish
mb skills search "calendar" # Find calendar-related skills
mb skills get lark-calendar # See details
mb skills install lark-calendar mybot # Install to mybot
mb skills publish whis data-analysis # Share whis's data-analysis skill
mb skills # Verify it's listed
mb skills # See all skills including peer skills
mb skills install data-viz mybot peer:alice # Install from peer "alice"