ClawHub is the public Skills registry for OpenClaw. It is a free service: all Skills are public, open, and can be viewed, shared, and reused by everyone. A Skill is simply a folder containing a SKILL.md file (and supporting text files). You can browse Skills in the web application, and use the CLI to search, install, update, and publish Skills. Website: clawhub.com

By default, the CLI installs Skills to ./skills in the current working directory. If an OpenClaw workspace is configured, clawhub will fall back to that workspace unless you override it with --workdir (or CLAWHUB_WORKDIR). OpenClaw loads workspace Skills from <workspace>/skills and they will take 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.

If you want to add new functionality 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:
Choose one of the following:
npm i -g clawhubpnpm add -g clawhub

SkillHub is the Chinese mirror site of ClawHub, optimized for Chinese users, providing high-speed download experience. Visit the website: skillhub.tencent.com
Installation method:
xxxxxxxxxxnpm i -g skillhub

Advantages of SkillHub:

SkillHub is the Chinese mirror site of ClawHub. The data source is completely consistent with ClawHub, but it provides a service experience more suitable for Chinese users.
SkillHub CLI usage is completely consistent with the original clawhub:
skillhub search "keyword"skillhub install <skill-slug>skillhub update --allskillhub list./skills directory, automatically recognized by OpenClawAlthough ClawHub allows non-logged-in users to search and install Skills, logging into an account has the following important benefits:
This is the simplest and most secure login method.
Open in browser: https://clawhub.com

Click the "Login" button in the top right corner of the page:

On the login page, click "Sign in with GitHub".
After successful authorization, you will be automatically redirected back to ClawHub and show logged-in status.
If you cannot use GitHub login, you can use Token login.
First follow the steps in Method 1 to log in to ClawHub official website via GitHub.
After logging in, click your user avatar in the top right corner of the page, select "Settings":

In the settings page, find the "API Tokens" section, click "Create token":

The system will generate a new API Token, click the copy button to copy this Token:

⚠️ Important Notes:
Open terminal, run the following command (replace YourToken with the Token you just copied):
xxxxxxxxxxclawhub login --token YourToken
Note: There is a space after --token, then paste your Token.
Error message:
xxxxxxxxxxError: Invalid token
Possible causes:
Solutions:
Possible causes:
Solutions:
Possible causes:
Solutions:
clawhub whoami to confirm login statusInstall CLI (see previous section).
Search for what you need: (VPN required in China)
xxxxxxxxxxclawhub search "find"

Install a Skills:
Syntax: clawhub install <skill-slug>
xxxxxxxxxxclawhub install find
Start a new OpenClaw session to load new Skills.
Install SkillHub CLI:
xxxxxxxxxxnpm i -g skillhub
Search for what you need:
xxxxxxxxxxskillhub search "find"
Install a Skills:
Syntax: skillhub install <skill-slug>
xxxxxxxxxxskillhub install find
Start a new OpenClaw session to load new Skills.
xxxxxxxxxxclawhub search "postgres backups"
Or use SkillHub:
xxxxxxxxxxskillhub search "postgres backups"
xxxxxxxxxxclawhub install my-skill-pack
Or use SkillHub:
xxxxxxxxxxskillhub install my-skill-pack
xxxxxxxxxxclawhub update --all
Or use SkillHub:
xxxxxxxxxxskillhub update --all
For a single Skills folder:
xxxxxxxxxxclawhub publish ./my-skill --slug my-skill --name "My Skill" --version 1.0.0 --tags latest
Scan and backup multiple Skills at once:
xxxxxxxxxxclawhub sync --all
Global options (apply to all commands):
--workdir <dir>: Working directory (default: current directory; fallback to OpenClaw workspace).--dir <dir>: Skills directory, relative to working directory (default: skills).--site <url>: Website base URL (browser login).--registry <url>: Registry API base URL.--no-input: Disable prompts (non-interactive mode).-V, --cli-version: Print CLI version.Authentication:
clawhub login (browser flow) or clawhub login --token <token>clawhub logoutclawhub whoamiOptions:
--token <token>: Paste API token.--label <label>: Label for browser login token storage (default: CLI token).--no-browser: Do not open browser (requires --token).Search:
clawhub search "query"--limit <n>: Maximum number of results.Install:
clawhub install <slug>--version <version>: Install specified version.--force: Overwrite if folder already exists.Update:
clawhub update <slug>clawhub update --all--version <version>: Update to specified version (single slug only).--force: Force overwrite when local files don't match any published version.List:
clawhub list (reads .clawhub/lock.json)
Publish:
clawhub publish <path>--slug <slug>: Skills identifier.--name <name>: Display name.--version <version>: Semantic version number.--changelog <text>: Changelog text (can be empty).--tags <tags>: Comma-separated tags (default: latest).Delete/Undelete (owners/admins only):
clawhub delete <slug> --yesclawhub undelete <slug> --yesSync (scan local Skills + publish new/updated Skills):
clawhub sync--root <dir...>: Additional scan root directories.--all: Upload everything without prompts.--dry-run: Show what will be uploaded.--bump <type>: Version increment type for updates patch|minor|major (default: patch).--changelog <text>: Changelog for non-interactive updates.--tags <tags>: Comma-separated tags (default: latest).--concurrency <n>: Registry check concurrency (default: 4).
CLAWHUB_SITE: Override website URL.CLAWHUB_REGISTRY: Override registry API URL.CLAWHUB_CONFIG_PATH: Override location where CLI stores tokens/config.CLAWHUB_WORKDIR: Override default working directory.CLAWHUB_DISABLE_TELEMETRY=1: Disable telemetry for sync.
For more content about ClawHub, refer to: ClawHub - OpenClaw