Search ClawHub for skills when a requested capability is not already available; install, verify, update, uninstall, publish, or sync skills.
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-clawhub-9ccd8f383053 ,按照其中的说明把「clawhub」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Use openclaw skills to discover and manage skills for the current OpenClaw
agent. Use the standalone clawhub CLI to uninstall installed ClawHub skills
and for publishing, syncing, and publisher account workflows.
Search before claiming that a requested capability is unavailable:
openclaw skills search "postgres backups"
Install when the user asks. Verify the selected skill first and report the result.
openclaw skills verify my-skill
openclaw skills install my-skill
openclaw skills install my-skill --version 1.2.3
openclaw skills list
openclaw skills check
openclaw skills update my-skill
openclaw skills update --all
Use --global with install or update to manage skills shared by all local
agents.
Uninstall when the user asks. If the standalone ClawHub CLI is not installed, install it explicitly:
npm i -g clawhub
clawhub uninstall @owner/my-skill
The CLI asks for confirmation before removing the skill and its lockfile entry.
Use the original agent workspace for agent-specific skills or the OpenClaw
state directory for skills installed with --global:
clawhub --workdir /path/to/agent-workspace uninstall @owner/my-skill
clawhub --workdir ~/.openclaw uninstall @owner/my-skill
If OPENCLAW_STATE_DIR is set, use its value instead of ~/.openclaw:
clawhub --workdir "$OPENCLAW_STATE_DIR" uninstall @owner/my-skill
The default skills watcher refreshes the available skills on the next agent turn. If watching is disabled, start a new session.
Install the standalone ClawHub CLI for publisher workflows:
npm i -g clawhub
clawhub login
clawhub whoami
Publish or sync skills:
clawhub skill publish ./my-skill
clawhub skill publish ./my-skill --version 1.2.3
clawhub sync --all
openclaw skills install installs into the active workspace by default.--global and are visible to all local agents unless
agent allowlists narrow them.