clawhub

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

1|Updated Jun 9, 2026
One-click install
npx skills add https://github.com/JEROME-PRAKASH-L/openclaw --skill clawhub-jerome-prakash-l
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: clawhub
Source: https://github.com/JEROME-PRAKASH-L/openclaw/tree/main/skills/clawhub
Command: npx skills add https://github.com/JEROME-PRAKASH-L/openclaw --skill clawhub-jerome-prakash-l

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires clawhub.

What problem does it solve? Managing agent skills manually—finding them, installing the right versions, keeping them updated, and publishing your own—requires repetitive command-line work against a registry. This Skill wraps the ClawHub CLI so the agent can perform those operations directly. ## Core Features & Use Cases - Registry Search & Install: Search the ClawHub registry for skills and install specific versions into the local skills directory. - Hash-Based Updates: Update installed skills by hashing local files, resolving the matching version, and upgrading to the latest release or a pinned version. - Skill Publishing: Authenticate with the registry and publish local skill directories with a slug, name, version, and changelog. - Use Case: You want to add a Postgres backup skill to your assistant. Ask the agent to search ClawHub for "postgres backups", install the best match, and later run clawhub update --all to keep every installed skill current. ## Quick Start Ask the agent to search ClawHub for a skill you need and install it into your workspace, for example by saying "search ClawHub for a postgres backup skill and install it".

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 slug, optionally pinning a version with --version. The CLI installs into ./skills by default, which you can override with --workdir, --dir, or the CLAWHUB_WORKDIR environment variable.

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

Run clawhub update with a skill name or --all for everything. The command hashes local files, resolves the matching registry version, and upgrades to the latest release unless you pin one with --version.

How do I publish my own skill to the ClawHub registry?

Authenticate first with clawhub login, then run clawhub publish with the skill directory, a slug, display name, version, and changelog. You can verify your session at any time with clawhub whoami.

Can I use a private or custom ClawHub registry?

Yes. The default registry is https://clawhub.com, but you can point the CLI elsewhere using the CLAWHUB_REGISTRY environment variable or the --registry flag on individual commands.

What are the prerequisites for using the ClawHub CLI?

The clawhub binary must be installed, typically via npm i -g clawhub. Publishing additionally requires an authenticated session created with clawhub login.