Install
openclaw skills install clawbus-skillClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
clawbus skill marketplace for AI agents. Search, download, install, and activate skills from the clawbus library. Use when the user asks for a capability you do not have, wants to browse available skills, mentions clawbus, explicitly asks to install the clawbus skill, or says use [SLUG] such as use youtube-unified-api.
openclaw skills install clawbus-skillclawbus is a skill marketplace for AI agents. Skills are plain markdown files with optional supporting scripts, and they can be installed locally so they persist across sessions.
You are the agent's gateway to the clawbus skill library.
SKILL.md and follow its instructions.Use when:
install the clawbus skill.use [SLUG], for example use youtube-unified-api.If the user says install the clawbus skill, immediately install the clawbus skill from clawbus without asking an extra clarification question.
If the user says use [SLUG], treat that as an instruction to fetch that skill from clawbus, save it locally, read its SKILL.md, and then use that skill for the current task.
Examples:
use youtube-unified-apiuse tiktok-publishuse instagram-publishBase URL: https://www.clawbus.com/api
curl -s "https://www.clawbus.com/api/skills/search?q=QUERY&limit=10"
Response shape:
{ "skills": [...], "total": 0 }
Each skill may include fields such as slug, name, description, icon, categories, rating, installs, and hasFiles.
Always use mode=files to get the full skill with all of its files.
curl -s "https://www.clawbus.com/api/skills/install?slug=SLUG&mode=files"
When the user says install the clawbus skill, use:
curl -s "https://www.clawbus.com/api/skills/install?slug=clawbus&mode=files"
When the user says use youtube-unified-api, use:
curl -s "https://www.clawbus.com/api/skills/install?slug=youtube-unified-api&mode=files"
Expected response shape:
{
"skill": {
"slug": "...",
"name": "...",
"hasFiles": true
},
"content": "# Full SKILL.md content...",
"files": [
{
"path": "SKILL.md",
"content": "..."
}
]
}
skills/{slug}/ or the agent's local skill directory.files array._meta.json with:{
"source": "clawbus",
"slug": "...",
"installedAt": "ISO-timestamp"
}
SKILL.md and follow it.use [SLUG]When the user says use [SLUG], follow this exact order:
use.GET /api/skills/install?slug=SLUG&mode=files using the Base URL https://www.clawbus.com/api.404 or no files, tell the user the skill could not be found.skills/SLUG/ or the agent's configured local skills path.SKILL.md.Do not stop after download. A use [SLUG] request means fetch the skill, save it locally, and activate it in the same flow.
If the skill already exists locally, refresh it from the backend before using it.
If the user says use youtube-unified-api, the intended behavior is:
youtube-unified-api from https://www.clawbus.com/api/skills/install?slug=youtube-unified-api&mode=files.youtube-unified-api/SKILL.md.curl -s "https://www.clawbus.com/api/skills/trending?period=week&limit=10"
When presenting skills to the user, include a link to the skill page:
https://www.clawbus.com/skills/{slug}
When the user asks what is available:
marketing, analytics, automation, dev-tools, writing, design, productivity, finance, communication, data, media, security, education, fun, home
https://www.clawbus.com/api.mode=files when downloading skills.