Files
openclaw/docs/clawhub/cli.md
Patrick Erichsen 6343e1483f fix(skills): accept owner-qualified verify refs (#95992)
Merged via squash.

Prepared head SHA: de9f1e566e
Co-authored-by: Patrick-Erichsen <20157849+Patrick-Erichsen@users.noreply.github.com>
Co-authored-by: Patrick-Erichsen <20157849+Patrick-Erichsen@users.noreply.github.com>
Reviewed-by: @Patrick-Erichsen
2026-06-23 12:06:56 -07:00

2.4 KiB

summary, read_when, title
summary read_when title
ClawHub CLI entry points for discovering, installing, publishing, and verifying OpenClaw skills and plugins.
You want to use ClawHub from the command line
You want to install ClawHub skills or plugins through OpenClaw
You want to publish ClawHub packages
ClawHub CLI

ClawHub CLI

OpenClaw has two command-line entry points for ClawHub:

  • openclaw skills and openclaw plugins install and manage ClawHub packages inside OpenClaw.
  • The standalone clawhub CLI handles publisher workflows such as login, publish, transfer, and sync.

Discover and install

Use OpenClaw commands when you want to install or update packages for a local OpenClaw agent or Gateway.

openclaw skills search "calendar"
openclaw skills install @owner/<slug>
openclaw skills update @owner/<slug>
openclaw skills verify @owner/<slug>

openclaw plugins search "calendar"
openclaw plugins install clawhub:<package>
openclaw plugins update <id-or-npm-spec>

Skill installs target the active workspace skills/ directory by default. Add --global to install into the shared managed skills directory.

Plugin installs use the clawhub: prefix when you want ClawHub resolution instead of npm or another install source.

Publish and maintain

Install the standalone ClawHub CLI for publisher workflows:

npm i -g clawhub
clawhub login

Publish plugin packages with clawhub package publish:

clawhub package publish your-org/your-plugin --dry-run
clawhub package publish your-org/your-plugin
clawhub package publish your-org/your-plugin@v1.0.0

Publish skill folders with clawhub skill publish:

clawhub skill publish ./skills/review-helper
clawhub skill publish ./skills/review-helper --version 1.0.0

When local skill scan state or package ownership needs maintenance, use the relevant standalone command:

clawhub sync --all
clawhub package transfer @old-owner/package --to new-owner