详细分析 ▾
运行时依赖
版本
- Initial release of openclaw-skills-setup-cn. - Provides step-by-step instructions for installing and configuring ClawHub, including mirror setup for Chinese users. - Details how to find, install, update, enable, and disable skills. - Offers recommendations for essential skills and bulk installation commands. - Includes guidance on searching and evaluating skills using ClawHub commands.
安装命令
点击复制技能文档
本技能覆盖:ClawHub 安装与镜像配置、找技能(发现/推荐)、以及技能的安装/更新/启用/禁用。
安装 ClawHub
# npm 安装 npm install -g clawhub
# 或 pnpm 安装 pnpm add -g clawhub
初始化:
clawhub init
配置阿里云镜像(推荐国内用户):
clawhub config set clawhub.mirror "https://mirror.aliyun.com/clawhub/"
安装核心技能
批量安装新手必备技能(等待 5–10 分钟):
clawhub install tavily-search find-skills proactive-agent-1-2-4 pdf-chat file-organizer
验证安装状态:
openclaw skills list
技能管理
找技能(发现与推荐)
当用户问「有什么技能可以…」「找一个技能」「搜索技能」时:
- 理解需求:从自然语言中提取关键词(例如:PDF、Excel、翻译、写代码)。
- 搜索:
clawhub search "<关键词>"。 - 查看详情:对感兴趣的结果执行
clawhub inspect <技能名称>。 - 推荐并安装:给出推荐列表,并提供安装命令
clawhub install <技能名称>。
# 搜索技能 clawhub search "<关键词>"# 查看技能详情 clawhub inspect <技能名称>
# 安装技能 clawhub install <技能名称>
# 安装指定版本 clawhub install <技能名称>@<版本号>
更新
# 更新单个技能 clawhub update <技能名称>
# 更新所有技能(推荐定期执行) clawhub update --all
启用与禁用
# 查看技能状态 openclaw skills list --status# 禁用技能 openclaw skills disable <技能名称>
# 启用技能 openclaw skills enable <技能名称>