clawhub

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

Updated Jun 19, 2026
One-click install
npx skills add https://github.com/AmirulAndalib/Vilvona-AI --skill clawhub-amirulandalib
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: clawhub
Source: https://github.com/AmirulAndalib/Vilvona-AI/tree/main/skills/clawhub
Command: npx skills add https://github.com/AmirulAndalib/Vilvona-AI --skill clawhub-amirulandalib

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 sharing your own—requires repetitive command-line work and version tracking that this Skill automates through the ClawHub CLI. ## Core Features & Use Cases - Skill Discovery and Installation: Search the ClawHub registry and install skills at specific versions into your local skills directory. - Hash-Based Updates: Update installed skills by hashing local files, matching versions, and upgrading to the latest release or a pinned version. - Publishing Workflow: Authenticate with clawhub login and publish your own skills with slug, name, version, and changelog metadata. - Use Case: You want to add a Postgres backup skill to your agent. Search the registry, install it at version 1.2.3, 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 requesting to find and install a Postgres backup skill.

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

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

First authenticate with clawhub login, then run clawhub publish with your skill directory, a slug, display name, version, and changelog. You can verify your authentication status at any time with clawhub whoami.

How does clawhub update detect which version I have installed?

The update command hashes your local skill files, resolves the matching registry version, and upgrades to the latest release unless you pin one with --version. Use --force to override conflicts and --all to update every installed skill.

Can I use a private or self-hosted ClawHub registry?

Yes, the default registry is https://clawhub.com but you can override it with the CLAWHUB_REGISTRY environment variable or the --registry flag on individual commands.

What do I need installed before using the ClawHub CLI?

You need Node.js with npm to install the clawhub package globally via npm i -g clawhub. The clawhub binary must be available on your PATH for the Skill to execute registry commands.