clawhub

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

Updated Feb 16, 2026
One-click install
npx skills add https://github.com/travis-burmaster/agentbox --skill clawhub-travis-burmaster
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: clawhub
Source: https://github.com/travis-burmaster/agentbox/tree/main/agentfork/skills/clawhub
Command: npx skills add https://github.com/travis-burmaster/agentbox --skill clawhub-travis-burmaster

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires clawhub.

What problem does it solve? Managing agent skills manually is tedious: finding new skills, keeping installed ones up to date, and sharing your own skills all require repetitive command-line work. This Skill wraps the ClawHub CLI so an agent can search the clawhub.com registry, install or pin specific skill versions, sync updates, and publish new skill folders on demand. ## Core Features & Use Cases - Registry Search & Install: Query clawhub.com for skills and install them into the local ./skills directory, optionally pinned to an exact version. - Hash-Based Updates: Detect locally installed skills by hashing files, resolve the matching version, and upgrade to the latest release or a specified version, including bulk updates with --all. - Skill Publishing: Authenticate with clawhub login and publish new or updated skill folders with a slug, display name, version, and changelog. - Use Case: While building an agent workflow, you realize you need a Postgres backup skill. Ask the agent to search ClawHub, install the best match, and later run clawhub update --all to sync every installed skill to its latest release. ## Quick Start Ask the agent to search ClawHub for a skill you need, such as "find and install a postgres backups skill from ClawHub", and it will run the appropriate clawhub CLI commands.

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 <skill-name> after installing the CLI with npm i -g clawhub. You can pin an exact release with --version, and skills are placed in the ./skills directory unless overridden with --dir or CLAWHUB_WORKDIR.

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

Use clawhub update <skill-name> for a single skill or clawhub update --all for everything. The CLI hashes local files to match the installed version, then upgrades to the latest release unless you pass --version.

How do I publish my own skill to clawhub.com?

Authenticate first 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, the default registry https://clawhub.com can be overridden. Set the CLAWHUB_REGISTRY environment variable or pass the --registry flag to point the CLI at a different registry endpoint.

What are the prerequisites for using the ClawHub CLI?

You need Node.js with npm to install the CLI globally via npm i -g clawhub. Publishing additionally requires an authenticated session created through clawhub login.