From 192a6ee8700615da107fcd4c52e22a1fdbe1c117 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 30 Jan 2026 21:02:06 +0100 Subject: [PATCH] chore: remove legacy clawdhub files --- docs/tools/clawdhub.md | 201 --------------------------------------- skills/clawdhub/SKILL.md | 53 ----------- 2 files changed, 254 deletions(-) delete mode 100644 docs/tools/clawdhub.md delete mode 100644 skills/clawdhub/SKILL.md diff --git a/docs/tools/clawdhub.md b/docs/tools/clawdhub.md deleted file mode 100644 index 9be5b04105..0000000000 --- a/docs/tools/clawdhub.md +++ /dev/null @@ -1,201 +0,0 @@ ---- -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 OpenClaw**. 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 OpenClaw 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 OpenClaw 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 OpenClaw - -By default, the CLI installs skills into `./skills` under your current working directory. If a OpenClaw workspace is configured, `clawdhub` falls back to that workspace unless you override `--workdir` (or `CLAWDHUB_WORKDIR`). OpenClaw loads workspace skills from `/skills` and will pick them up in the **next** session. If you already use `~/.openclaw/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 OpenClaw 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