ClawHub

ClawHub is OpenClaw's public Skills registry. It's a free service: all Skills are public and open, everyone can view, share, and reuse them. Skills are just folders containing a SKILL.md file (and supporting text files). You can browse Skills in the web app, or use the CLI to search, install, update, and publish Skills. Website: clawhub.com

Target Audience (Beginner Friendly)

If you want to add new features to OpenClaw agents, ClawHub is the easiest way to find and install Skills. You don't need to understand how the backend works. You can:

Quick Start (Non-Technical)

  1. Install CLI (see next section).

  2. Search for what you need: (requires internet access in China)

    image-20260312190825699

  3. Install a Skill:

    Syntax: clawhub install <skill-slug>

  4. Start a new OpenClaw session to load new Skills.

Install CLI

Choose one:

Position in OpenClaw

By default, CLI installs Skills to ./skills in the current working directory. If OpenClaw workspace is configured, clawhub falls back to that workspace unless you override via --workdir (or CLAWHUB_WORKDIR). OpenClaw loads workspace Skills from <workspace>/skills and takes effect in the next session. If you're already using ~/.openclaw/skills or built-in Skills, workspace Skills have higher priority. For more details on Skills loading, sharing, and permission control, see Skills.

Service Features

CLI Commands and Parameters

Global options (apply to all commands):

Authentication:

Options:

Search:

Install:

Update:

List:

Publish:

Delete/Restore (owner/admin only):

Sync (scan local Skills + publish new/updated Skills):

Common Agent Workflows

Search Skills

Download New Skills

Update Installed Skills

Back Up Your Skills (Publish or Sync)

For a single Skills folder:

Scan and back up multiple Skills at once:

Advanced Details (Technical)

Version Management and Tags

Local Changes vs Registry Versions

During updates, content hashes are used to compare local Skills content with registry versions. If local files don't match any published version, CLI asks for confirmation before overwriting (or requires --force in non-interactive mode).

Sync Scanning and Fallback Roots

clawhub sync first scans the current working directory. If no Skills are found, it falls back to known legacy locations (e.g., ~/openclaw/skills and ~/.openclaw/skills). This design is to find legacy Skills installations without extra flags.

Storage and Lock Files

Telemetry (Install Counts)

When you run clawhub sync while logged in, CLI sends a minimal snapshot for counting installations. You can disable this completely:

Environment Variables

For more ClawHub content, refer to: ClawHub - OpenClaw