
Clawhub
Search, install, pin, bulk-update, or publish agent skills from the ClawHub registry into your OpenClaw workspace without hand-copying SKILL.md folders.
Install
npx skills add https://github.com/steipete/clawdis --skill clawhubWhat is this skill?
- Global npm install: clawhub CLI with optional CLAWHUB_REGISTRY and CLAWHUB_WORKDIR overrides
- Search registry: clawhub search with quoted queries (e.g. postgres backups)
- Install or pin: clawhub install with optional --version for exact skill releases
- Update flows: per-skill or clawhub update --all with hash match, --force, --no-input, and version pins
- Publish path: clawhub login / whoami then clawhub publish with slug, name, version, and changelog
Adoption & trust: 2.2k installs on skills.sh; 378k GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Journey fit
Equipping coding agents with reusable skills is core Build-phase agent tooling—the canonical moment solo builders pull capabilities from a registry before implementation. ClawHub targets the ./skills install tree and OpenClaw workspace defaults, which is exactly how builders extend agent tooling rather than writing app features.
Common Questions / FAQ
Is Clawhub safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Clawhub
# ClawHub CLI Install ```bash npm i -g clawhub ``` Auth (publish) ```bash clawhub login clawhub whoami ``` Search ```bash clawhub search "postgres backups" ``` Install ```bash clawhub install my-skill clawhub install my-skill --version 1.2.3 ``` Update (hash-based match + upgrade) ```bash clawhub update my-skill clawhub update my-skill --version 1.2.3 clawhub update --all clawhub update my-skill --force clawhub update --all --no-input --force ``` List ```bash clawhub list ``` Publish ```bash clawhub publish ./my-skill --slug my-skill --name "My Skill" --version 1.2.0 --changelog "Fixes + docs" ``` Notes - Default registry: https://clawhub.com (override with CLAWHUB_REGISTRY or --registry) - Default workdir: cwd (falls back to OpenClaw workspace); install dir: ./skills (override with --workdir / --dir / CLAWHUB_WORKDIR) - Update command hashes local files, resolves matching version, and upgrades to latest unless --version is set