Search, install, update, and publish agent skills from clawhub.com using the ClawHub CLI — your package manager for AI agent capabilities.
npx clawhub@latest install clawhubRequirements
ClawHub is the official CLI skill manager for the OpenClaw ecosystem, letting agents and developers search, install, update, and publish skills from clawhub.com. Think of it as npm for AI agent capabilities — fetch new skills on the fly, pin them to specific versions, or push your own skill packages to the registry. It integrates directly into the agent runtime so skills can be acquired and kept in sync without manual intervention.
npx clawhub@latest install clawhubClick the Install button at the top of this page for one-click setup
1.2.3) to avoid unexpected breaking changes.update --all command.npm install step may be simpler than invoking the full ClawHub CLI.CLAWHUB_REGISTRY) and will not function in fully air-gapped environments without a self-hosted registry.Query the clawhub.com registry with natural-language or keyword searches (e.g. clawhub search "postgres backups") to discover available skills without leaving your terminal or agent session.
Install any skill by slug with clawhub install my-skill, or pin to a specific release with --version 1.2.3. Skills land in ./skills by default, configurable via --dir or CLAWHUB_WORKDIR.
The update command hashes local skill files, resolves the matching upstream version, and upgrades to the latest release (or a pinned version). Use --all to upgrade every installed skill at once, with --force and --no-input flags for automated pipelines.
Publish a local skill folder to the registry with a single command, supplying a slug, display name, version, and changelog string. Requires a clawhub login session.
Override the default https://clawhub.com registry via the CLAWHUB_REGISTRY env var or --registry flag. Working directory defaults to the current directory (falling back to the OpenClaw workspace) and can be overridden with --workdir or CLAWHUB_WORKDIR.
An agent discovers mid-task that it needs a skill not yet installed. It calls clawhub install <slug> to pull the latest version from the registry and immediately gains the capability — no human intervention required.
A deployment pipeline runs clawhub update --all --no-input --force to ensure every skill in the workspace is at its latest release before the agent environment starts, eliminating version drift across deployments.
A developer finishes a skill update, runs clawhub publish ./my-skill --slug my-skill --version 1.3.0 --changelog "Bug fixes + new actions" and the skill is immediately available on clawhub.com for other users and agents to install.
A team pins critical skills to tested versions using clawhub install my-skill --version 1.2.3, ensuring production agents never auto-upgrade to an untested release without an explicit version bump in their configuration.
npx clawhub@latest install clawhubRequirements
Log in to write a review
No reviews yet. Be the first to share your experience!