ClawHub CLI
ClawHub CLI
Section titled “ClawHub CLI”OpenClaw has two command-line entry points for ClawHub:
openclaw skillsandopenclaw pluginsinstall and manage ClawHub packages inside OpenClaw.- The standalone
clawhubCLI handles publisher workflows such as login, publish, transfer, and sync.
Discover and install
Section titled “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 install @owner/<slug> --acknowledge-clawhub-riskopenclaw skills update @owner/<slug>openclaw skills update @owner/<slug> --acknowledge-clawhub-riskopenclaw skills verify @owner/<slug>
openclaw plugins search "calendar"openclaw plugins install clawhub:<package>openclaw plugins install clawhub:<package> --acknowledge-clawhub-riskopenclaw 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.
OpenClaw checks the selected community ClawHub skill or plugin trust state
before downloading it. Versioned community skill and plugin releases use
exact-release trust metadata; resolver-backed GitHub skills rely on ClawHub’s
install resolver to enforce scan and force-install policy before it returns a
pinned commit. Malicious or blocked community releases are refused. Risky
community releases require review and --acknowledge-clawhub-risk when a
non-interactive command should continue after that review.
Official ClawHub publishers/packages and bundled OpenClaw sources bypass this release-trust prompt and security-verdict fetch during install and update.
Plugin installs use the clawhub: prefix when you want ClawHub resolution
instead of npm or another install source.
Publish and maintain
Section titled “Publish and maintain”Install the standalone ClawHub CLI for publisher workflows:
npm i -g clawhubclawhub loginPublish plugin packages with clawhub package publish:
clawhub package publish your-org/your-plugin --dry-runclawhub package publish your-org/your-pluginPublish skill folders with clawhub skill publish:
clawhub skill publish ./skills/review-helperclawhub skill publish ./skills/review-helper --version 1.0.0When local skill scan state or package ownership needs maintenance, use the relevant standalone command:
clawhub sync --allclawhub package transfer @old-owner/package --to new-ownerRelated
Section titled “Related”openclaw skills- local skill search, install, update, and verificationopenclaw plugins- plugin search, install, update, and inspection- ClawHub publishing - owner scope, release validation, and review flow
- Creating skills - skill authoring and publish flow
- Building plugins - plugin package authoring