惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
月光博客
月光博客
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
U
Unit 42
云风的 BLOG
云风的 BLOG
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
宝玉的分享
宝玉的分享
B
Blog
C
Check Point Blog
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
量子位
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat: support git and local skill installs (#84793) · ope...
Patrick-Eric · 2026-05-21 · via Recent Commits to openclaw:main

@@ -2,14 +2,15 @@

22

summary: "CLI reference for `openclaw skills` (search/install/update/list/info/check)"

33

read_when:

44

- You want to see which skills are available and ready to run

5-

- You want to search, install, or update skills from ClawHub

5+

- You want to search ClawHub or install skills from ClawHub, Git, or local directories

66

- You want to debug missing binaries/env/config for skills

77

title: "Skills"

88

---

991010

# `openclaw skills`

111112-

Inspect local skills and install/update skills from ClawHub.

12+

Inspect local skills, search ClawHub, install skills from ClawHub/Git/local directories, and update

13+

ClawHub-tracked installs.

13141415

Related:

1516

@@ -24,6 +25,9 @@ openclaw skills search "calendar"

2425

openclaw skills search --limit 20 --json

2526

openclaw skills install <slug>

2627

openclaw skills install <slug> --version <version>

28+

openclaw skills install git:owner/repo

29+

openclaw skills install git:owner/repo@main

30+

openclaw skills install ./path/to/skill --as custom-name

2731

openclaw skills install <slug> --force

2832

openclaw skills install <slug> --agent <id>

2933

openclaw skills install <slug> --global

@@ -45,23 +49,36 @@ openclaw skills check --agent <id>

4549

openclaw skills check --json

4650

```

475148-

`search`/`install`/`update` use ClawHub directly. By default, `install` and

49-

`update` target the active workspace `skills/` directory; with `--global`, they

50-

target the shared managed skills directory. `list`/`info`/`check` still inspect

51-

the local skills visible to the current workspace and config. Workspace-backed

52-

commands resolve the target workspace from `--agent <id>`, then the current

53-

working directory when it is inside a configured agent workspace, then the

54-

default agent.

52+

`search` and `update` use ClawHub directly. `install <slug>` installs a ClawHub

53+

skill, `install git:owner/repo[@ref]` clones a Git skill, and `install ./path`

54+

copies a local skill directory. By default, `install` and `update` target the

55+

active workspace `skills/` directory; with `--global`, they target the shared

56+

managed skills directory. `list`/`info`/`check` still inspect the local skills

57+

visible to the current workspace and config. Workspace-backed commands resolve

58+

the target workspace from `--agent <id>`, then the current working directory

59+

when it is inside a configured agent workspace, then the default agent.

556056-

This CLI `install` command downloads skill folders from ClawHub. Gateway-backed

57-

skill dependency installs triggered from onboarding or Skills settings use the

58-

separate `skills.install` request path instead.

61+

Git and local directory installs expect `SKILL.md` at the source root. The

62+

install slug comes from `SKILL.md` frontmatter `name` when it is valid, then the

63+

source directory or repository name; use `--as <slug>` to override it. `--version`

64+

is ClawHub-only. Skill installs do not support npm package specs or zip/archive

65+

paths, and `openclaw skills update` updates ClawHub-tracked installs only.

66+67+

Gateway-backed skill dependency installs triggered from onboarding or Skills

68+

settings use the separate `skills.install` request path instead.

59696070

Notes:

61716272

- `search [query...]` accepts an optional query; omit it to browse the default

6373

ClawHub search feed.

6474

- `search --limit <n>` caps returned results.

75+

- `install git:owner/repo[@ref]` installs a Git skill. Branch refs may contain

76+

slashes, such as `git:owner/repo@feature/foo`.

77+

- `install ./path/to/skill` installs a local directory whose root contains

78+

`SKILL.md`.

79+

- `install --as <slug>` overrides the inferred slug for Git and local directory

80+

installs.

81+

- `install --version <version>` applies only to ClawHub skill slugs.

6582

- `install --force` overwrites an existing workspace skill folder for the same

6683

slug.

6784

- `--global` targets the shared managed skills directory and cannot be combined