You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ Docs: https://docs.openclaw.ai
6
6
7
7
### Changes
8
8
9
+
- ClawHub/install: add native `openclaw skills search|install|update` flows plus `openclaw plugins install clawhub:<package>` with tracked update metadata, gateway skill-install/update support for ClawHub-backed requests, and regression coverage/docs for the new source path.
9
10
- Models/Anthropic Vertex: add core `anthropic-vertex` provider support for Claude via Google Vertex AI, including GCP auth/discovery and main run-path routing. (#43356) Thanks @sallyom and @yossiovadia.
10
11
- Commands/btw: add `/btw` side questions for quick tool-less answers about the current session without changing future session context, with dismissible in-session TUI answers and explicit BTW replies on external channels. (#45444) Thanks @ngutman.
11
12
- Gateway/docs: clarify that empty URL input allowlists are treated as unset, document `allowUrl: false` as the deny-all switch, and add regression coverage for the normalization path.
Copy file name to clipboardExpand all lines: docs/help/faq.md
+8-10Lines changed: 8 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -992,18 +992,16 @@ Quick answers plus deeper troubleshooting for real-world setups (local dev, VPS,
992
992
</Accordion>
993
993
994
994
<Accordiontitle="How do I install skills on Linux?">
995
-
Use **ClawHub** (CLI) or drop skills into your workspace. The macOS Skills UI isn't available on Linux.
995
+
Use native `openclaw skills` commands or drop skills into your workspace. The macOS Skills UI isn't available on Linux.
996
996
Browse skills at [https://clawhub.com](https://clawhub.com).
997
997
998
-
Install the ClawHub CLI (pick one package manager):
999
-
1000
998
```bash
1001
-
npm i -g clawhub
999
+
openclaw skills search "calendar"
1000
+
openclaw skills install <skill-slug>
1001
+
openclaw skills update --all
1002
1002
```
1003
1003
1004
-
```bash
1005
-
pnpm add -g clawhub
1006
-
```
1004
+
Install the separate `clawhub` CLI only if you want to publish or sync your own skills.
1007
1005
1008
1006
</Accordion>
1009
1007
@@ -1075,11 +1073,11 @@ Quick answers plus deeper troubleshooting for real-world setups (local dev, VPS,
1075
1073
Install skills:
1076
1074
1077
1075
```bash
1078
-
clawhub install <skill-slug>
1079
-
clawhub update --all
1076
+
openclaw skills install <skill-slug>
1077
+
openclaw skills update --all
1080
1078
```
1081
1079
1082
-
ClawHub installs into `./skills` under your current directory (or falls back to your configured OpenClaw workspace); OpenClaw treats that as `<workspace>/skills` on the next session. For shared skills across agents, place them in `~/.openclaw/skills/<name>/SKILL.md`. Some skills expect binaries installed via Homebrew; on Linux that means Linuxbrew (see the Homebrew Linux FAQ entry above). See [Skills](/tools/skills) and [ClawHub](/tools/clawhub).
1080
+
Native installs land in the active workspace `skills/` directory. For shared skills across agents, place them in `~/.openclaw/skills/<name>/SKILL.md`. Some skills expect binaries installed via Homebrew; on Linux that means Linuxbrew (see the Homebrew Linux FAQ entry above). See [Skills](/tools/skills) and [ClawHub](/tools/clawhub).
Copy file name to clipboardExpand all lines: docs/tools/clawhub.md
+46-11Lines changed: 46 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
summary: "ClawHub guide: public skills registry + CLI workflows"
2
+
summary: "ClawHub guide: public registry, native OpenClaw install flows, and ClawHub CLI workflows"
3
3
read_when:
4
4
- Introducing ClawHub to new users
5
5
- Installing, searching, or publishing skills
@@ -9,10 +9,35 @@ title: "ClawHub"
9
9
10
10
# ClawHub
11
11
12
-
ClawHub 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.
12
+
ClawHub is the public registry for **OpenClaw skills and plugins**.
13
+
14
+
- Use native `openclaw` commands to search/install/update skills and install
15
+
plugins from ClawHub.
16
+
- Use the separate `clawhub` CLI when you need registry auth, publish, delete,
17
+
undelete, or sync workflows.
13
18
14
19
Site: [clawhub.ai](https://clawhub.ai)
15
20
21
+
## Native OpenClaw flows
22
+
23
+
Skills:
24
+
25
+
```bash
26
+
openclaw skills search "calendar"
27
+
openclaw skills install <skill-slug>
28
+
openclaw skills update --all
29
+
```
30
+
31
+
Plugins:
32
+
33
+
```bash
34
+
openclaw plugins install clawhub:<package>
35
+
openclaw plugins update --all
36
+
```
37
+
38
+
Native `openclaw` commands install into your active workspace and persist source
39
+
metadata so later `update` calls can stay on ClawHub.
40
+
16
41
## What ClawHub is
17
42
18
43
- A public registry for OpenClaw skills.
@@ -45,16 +70,17 @@ If you want to add new capabilities to your OpenClaw agent, ClawHub is the easie
45
70
46
71
## Quick start (non-technical)
47
72
48
-
1. Install the CLI (see next section).
49
-
2. Search for something you need:
50
-
-`clawhub search "calendar"`
51
-
3. Install a skill:
52
-
-`clawhub install <skill-slug>`
53
-
4. Start a new OpenClaw session so it picks up the new skill.
73
+
1. Search for something you need:
74
+
-`openclaw skills search "calendar"`
75
+
2. Install a skill:
76
+
-`openclaw skills install <skill-slug>`
77
+
3. Start a new OpenClaw session so it picks up the new skill.
78
+
4. If you want to publish or manage registry auth, install the separate
79
+
`clawhub` CLI too.
54
80
55
-
## Install the CLI
81
+
## Install the ClawHub CLI
56
82
57
-
Pick one:
83
+
You only need this for registry-authenticated workflows such as publish/sync:
58
84
59
85
```bash
60
86
npm i -g clawhub
@@ -66,7 +92,16 @@ pnpm add -g clawhub
66
92
67
93
## How it fits into OpenClaw
68
94
69
-
By default, the CLI installs skills into `./skills` under your current working directory. If an OpenClaw workspace is configured, `clawhub` falls back to that workspace unless you override `--workdir` (or `CLAWHUB_WORKDIR`). OpenClaw loads workspace skills from `<workspace>/skills` and will pick them up in the **next** session. If you already use `~/.openclaw/skills` or bundled skills, workspace skills take precedence.
95
+
Native `openclaw skills install` installs into the active workspace `skills/`
96
+
directory. `openclaw plugins install clawhub:...` records a normal managed
97
+
plugin install plus ClawHub source metadata for updates.
98
+
99
+
The separate `clawhub` CLI also installs skills into `./skills` under your
100
+
current working directory. If an OpenClaw workspace is configured, `clawhub`
101
+
falls back to that workspace unless you override `--workdir` (or
102
+
`CLAWHUB_WORKDIR`). OpenClaw loads workspace skills from `<workspace>/skills`
103
+
and will pick them up in the **next** session. If you already use
104
+
`~/.openclaw/skills` or bundled skills, workspace skills take precedence.
70
105
71
106
For more detail on how skills are loaded, shared, and gated, see
0 commit comments