Enable agents to use the Clawhub CLI (clawbub) to install, import, publish, and manage AgentSkills. Use when an agent needs to interact with Clawhub from the command line for skill development, publishing, or syncing.
Install
npx skillscat add wilsonle/hunter-skills/clawbub Install via the SkillsCat registry.
SKILL.md
Clawbub – Clawhub CLI Skill
This skill allows an agent to safely and correctly use the Clawhub CLI (clawbub, skills, bunx clawhub) to manage AgentSkills.
Mental Model
The agent acts as a release engineer for skills:
- GitHub repo = source of truth
- Clawhub = distribution registry
- Local install = consumer
Never skip the publish step.
Core Capabilities
Install a skill from Clawhub
bunx clawhub@latest install <skill-name> --forceUse when syncing local state with the registry.
Import (publish) a skill to Clawhub
npx skills import <skill-folder>Run from the repo root. This is required before others can install updates.
Install Clawhub tooling
npx skills add https://github.com/openclaw/openclaw/clawhub -yOne-time setup. Avoid interactive mode.
Safe Workflow (Recommended)
- Modify skill in GitHub repo
- Commit + push
- Import into Clawhub (
skills import) - Reinstall locally (
clawhub install --force) - Restart gateway
When NOT to Use This Skill
- Do not run destructive commands without confirmation
- Do not import from untrusted repos
- Do not overwrite skills you don’t own
Golden Rule
If the registry and the repo disagree, the registry is wrong until you import again.