--- summary: "ClawdHub guide: public skills registry + CLI workflows" read_when: - Introducing ClawdHub to new users - Installing, searching, or publishing skills - Explaining ClawdHub CLI flags and sync behavior --- # ClawdHub ClawdHub is the **public skill registry for Clawdbot**. It is a free service: all skills are public, open, and visible to everyone for sharing and reuse. A skill is just a folder with a `SKILL.md` file (plus supporting text files). You can browse skills in the web app or use the CLI to search, install, update, and publish skills. Site: [clawdhub.com](https://clawdhub.com) ## Who this is for (beginner-friendly) If you want to add new capabilities to your Clawdbot agent, ClawdHub is the easiest way to find and install skills. You do not need to know how the backend works. You can: - Search for skills by plain language. - Install a skill into your workspace. - Update skills later with one command. - Back up your own skills by publishing them. ## Quick start (non-technical) 1) Install the CLI (see next section). 2) Search for something you need: - `clawdhub search "calendar"` 3) Install a skill: - `clawdhub install ` 4) Start a new Clawdbot session so it picks up the new skill. ## Install the CLI Pick one: ```bash npm i -g clawdhub ``` ```bash pnpm add -g clawdhub ``` ## How it fits into Clawdbot By default, the CLI installs skills into `./skills` under your current working directory. If a Clawdbot workspace is configured, `clawdhub` falls back to that workspace unless you override `--workdir` (or `CLAWDHUB_WORKDIR`). Clawdbot loads workspace skills from `/skills` and will pick them up in the **next** session. If you already use `~/.clawdbot/skills` or bundled skills, workspace skills take precedence. For more detail on how skills are loaded, shared, and gated, see [Skills](/tools/skills). ## What the service provides (features) - **Public browsing** of skills and their `SKILL.md` content. - **Search** powered by embeddings (vector search), not just keywords. - **Versioning** with semver, changelogs, and tags (including `latest`). - **Downloads** as a zip per version. - **Stars and comments** for community feedback. - **Moderation** hooks for approvals and audits. - **CLI-friendly API** for automation and scripting. ## CLI commands and parameters Global options (apply to all commands): - `--workdir `: Working directory (default: current dir; falls back to Clawdbot workspace). - `--dir `: Skills directory, relative to workdir (default: `skills`). - `--site `: Site base URL (browser login). - `--registry `: Registry API base URL. - `--no-input`: Disable prompts (non-interactive). - `-V, --cli-version`: Print CLI version. Auth: - `clawdhub login` (browser flow) or `clawdhub login --token ` - `clawdhub logout` - `clawdhub whoami` Options: - `--token `: Paste an API token. - `--label