clawhub

Search, install, update, and publish agent skills using the ClawHub CLI.

Updated Mar 30, 2026
One-click install
npx skills add https://github.com/srgaba/open-claw --skill clawhub-srgaba
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: clawhub
Source: https://github.com/srgaba/open-claw/tree/main/project/skills/clawhub
Command: npx skills add https://github.com/srgaba/open-claw --skill clawhub-srgaba

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires clawhub.

What problem does it solve? Managing agent skills manually is tedious: finding the right skill, keeping installed skills up to date, and publishing your own skills all require repetitive command-line work. This Skill wraps the ClawHub CLI so you can search, install, sync, and publish skills from clawhub.com directly through your agent. ## Core Features & Use Cases - Skill Discovery & Installation: Search the clawhub.com registry and install skills by name, optionally pinning a specific version. - Version Management: Update installed skills to the latest release or a target version, with hash-based matching to detect local changes and force-update options. - Publishing Workflow: Authenticate with clawhub login and publish new or updated skill folders with slug, name, version, and changelog metadata. - Use Case: You need a Postgres backup skill for your agent. Ask the agent to search ClawHub, install the best match, and later run clawhub update --all to sync every installed skill to its latest version. ## Quick Start Ask the agent to search ClawHub for a skill you need and install it into your local skills directory.

Frequently Asked Questions about clawhub

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I install an agent skill from ClawHub?

Run clawhub install followed by the skill name, such as clawhub install my-skill. You can pin a specific version with --version 1.2.3. Skills are installed into the ./skills directory by default, overridable with --dir or CLAWHUB_WORKDIR.

How do I update installed ClawHub skills to the latest version?

Run clawhub update my-skill for a single skill or clawhub update --all for everything. The CLI hashes local files, resolves the matching version, and upgrades to latest unless you pass --version. Use --force to override local modifications.

How do I publish a skill to clawhub.com?

First authenticate with clawhub login, then run clawhub publish ./my-skill with --slug, --name, --version, and --changelog flags. You can verify your session anytime with clawhub whoami.

Can I use a private registry instead of clawhub.com?

Yes. Set the CLAWHUB_REGISTRY environment variable or pass the --registry flag to point the CLI at an alternative registry. The default registry is https://clawhub.com.

What are the requirements for using the ClawHub CLI?

You need Node.js with npm to install the CLI globally via npm i -g clawhub. The clawhub binary must be available on your PATH. Publishing additionally requires an authenticated session created with clawhub login.