clawhub

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

Updated Mar 7, 2026
One-click install
npx skills add https://github.com/shalevamin/Tau_agent --skill clawhub-shalevamin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: clawhub
Source: https://github.com/shalevamin/Tau_agent/tree/main/tau-agent-main/skills/clawhub
Command: npx skills add https://github.com/shalevamin/Tau_agent --skill clawhub-shalevamin

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 publishing your own all require separate workflows. This Skill wraps the ClawHub CLI so you can search the clawhub.com registry, install or pin specific skill versions, sync updates, and publish your own skill folders from one place. ## Core Features & Use Cases - Skill Discovery & Installation: Search the ClawHub registry and install skills by name, optionally pinning an exact version. - Version Management: Update individual skills or all installed skills at once, with hash-based matching to resolve the correct version and a force flag for overrides. - Publishing Workflow: Authenticate with clawhub login and publish new or updated skill folders with a slug, name, version, and changelog. - Use Case: You need a Postgres backup skill for your agent. Run a search, install the best match, and later run an update to pull the latest published version without manual downloads. ## Quick Start Ask the agent to search ClawHub for a skill you need and install it into your 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, for example clawhub install my-skill. You can pin an exact release with the --version flag, and the skill is installed into the ./skills directory by default.

How do I update all installed ClawHub skills at once?

Run clawhub update --all to upgrade every installed skill to its latest version. Add --no-input --force for unattended updates, or target a single skill with clawhub update my-skill.

How do I publish my own skill to ClawHub?

First authenticate with clawhub login, then run clawhub publish with your skill folder, slug, name, version, and changelog. For example: clawhub publish ./my-skill --slug my-skill --name "My Skill" --version 1.2.0.

Can I use a different registry or install directory with ClawHub?

Yes. Override the default clawhub.com registry with the CLAWHUB_REGISTRY environment variable or --registry flag, and change the install directory with --workdir, --dir, or CLAWHUB_WORKDIR.

What are the prerequisites for using the ClawHub CLI?

The clawhub binary must be installed globally via npm with npm i -g clawhub, which requires Node.js. Publishing additionally requires authentication through clawhub login.