OpenClaw-安装OpenClaw Skills
OpenClaw 是一款开源的 AI Agent 框架,而 Skills(技能) 是它的核心能力——让 AI 不再只是聊天,而是真正能执行任务。每个 Skill 就是一个功能模块,让 AI 能够:操作浏览器、处理文档;执行系统命令、访问 API;自动化日常工作。
本篇文档将帮助你快速安装skill技能。
华为云控制台安装
1、登录华为云Flexus云服务 - 控制台,单击已购买的L实例名称/ID,进入实例概览,单击应用管理;


2、下拉选择3-技能配置,单击添加技能,输入需要安装的技能名称(可单击“获取更多Skills”,跳转页面搜索需要安装的技能名称),单击确认;

3、右上角提示“技能添加任务下发成功”,可单击下发任务处链接查看技能安装进度,已安装技能处查看技能是否安装成功;


机器人对话安装
你可以直接让配置的机器人协助你来安装技能,首先需要确保你和机器人是可以正常对话的:
以飞书对话为例,飞书对接OpenClaw参考:使用OpenClaw搭建个人AI助手(飞书)_AI智能体场景_搭建应用_最佳实践_Flexus云服务_Flexus应用服务器L实例-华为云。
1、帮我在浏览器上查询clawhub目前安装量最高的是Skills是哪个?

2、帮我查询我现在是否有agent-browser技能,没有的话请帮我安装该技能。


命令行安装
1.Skills 从三个位置加载:
- 内置 Skills:随安装包一起发布(npm 包或 OpenClaw.app)
- 托管/本地 Skills:
~/.openclaw/skills - 工作区 Skills:
<workspace>/skills
如果 Skills 名称冲突,优先级为:<workspace>/skills(最高)→ ~/.openclaw/skills → 内置 Skills(最低)此外,你可以通过 ~/.openclaw/openclaw.json 中的 skills.load.extraDirs 配置额外的 Skills 文件夹(最低优先级)。
2.对 Skills 或配置的更改在下一个新会话中生效,命令行安装skill之后,建议在输入框中输入”/new“(开启全新会话,分配新会话 ID,完全不保留之前对话的上下文),开启新一次的对话,进行技能查询。
skillhub 安装Skill
托管/本地 Skills 安装
# 远程登录实例,登录环境
#进入openclaw用户
root@hcss-ecs-d448:~# su - openclaw
#安装1:通用技能(以trello为例)
openclaw@hcss-ecs-d448:~/.openclaw$ skillhub --dir /home/openclaw/.openclaw/workspace/skills/ install Trello
info: "Trello" not in index, and remote search has no exact slug match; try direct download by slug
info: "Trello" not in index/remote search, try direct download by slug
Downloading: https://lightmake.site/api/v1/download?slug=Trello
Installed: Trello -> /home/openclaw/.openclaw/skills/Trello
#检查技能目录是否安装成功(其他为系统预制skills)
openclaw@hcss-ecs-8e21:~$ ls /home/openclaw/.openclaw/workspace/skills/
api-gateway feishu-wiki find-skills github gog nano-pdf notion obsidian skillhub-preference summarize tavily-search Trello weather
openclaw@hcss-ecs-d448:~/.openclaw$ openclaw skills list --eligible | grep trello
│ ✓ ready │ 📦 trello │ Manage Trello boards, lists, and cards via the Trello │ openclaw-managed │

工作区 Skills 安装
# 远程登录实例,登录环境
#进入openclaw用户
root@hcss-ecs-d448:~# su - openclaw
#进入.openclaw目录
openclaw@hcss-ecs-d448:/root$ cd /home/openclaw/.openclaw/
#安装2:工作区 技能(以trello为例)
openclaw@hcss-ecs-d448:~/.openclaw$ skillhub --dir /home/openclaw/.openclaw/workspace-fs/skills/ install Trello
info: "Trello" not in index, and remote search has no exact slug match; try direct download by slug
info: "Trello" not in index/remote search, try direct download by slug
Downloading: https://lightmake.site/api/v1/download?slug=Trello
Installed: Trello -> /home/openclaw/.openclaw/workspace-fs/skills/Trello
#查看安装技能
openclaw@hcss-ecs-d448:~$ ls /home/openclaw/.openclaw/workspace-fs/skills/
qqbot Trello
技能检查
对话查询专属技能:

源码安装Skill
托管/本地 Skills安装
root@hcss-ecs-d448:~# su - openclaw
#1、安装skill:下载skill源码至home/openclaw/.openclaw/skills/文件夹中
openclaw@hcss-ecs-d448:~$ git clone https://github.com/peterskoett/self-improving-agent.git ~/.openclaw/workspace/skills/self-improving-agent
Cloning into '/home/openclaw/.openclaw/skills/self-improving-agent'...
remote: Enumerating objects: 61, done.
remote: Counting objects: 100% (61/61), done.
remote: Compressing objects: 100% (47/47), done.
remote: Total 61 (delta 17), reused 53 (delta 10), pack-reused 0 (from 0)
Receiving objects: 100% (61/61), 35.75 KiB | 416.00 KiB/s, done.
Resolving deltas: 100% (17/17), done.
# 查询技能,技能是ready状态
openclaw@hcss-ecs-d448:~$ openclaw skills list --eligible | grep self-improvement
│ ✓ ready │ 📦 self-improvement │ Captures learnings, errors, and corrections to enable │ openclaw-managed │

工作区 Skills安装
root@hcss-ecs-d448:~# su - openclaw
#2、安装工作区的专属技能
openclaw@hcss-ecs-d448:~$ git clone https://github.com/peterskoett/self-improving-agent.git ~/.openclaw/workspace-fs/skills/self-improving-agent
Cloning into '/home/openclaw/.openclaw/workspace-fs/skills/self-improving-agent'...
remote: Enumerating objects: 61, done.
remote: Counting objects: 100% (61/61), done.
remote: Compressing objects: 100% (47/47), done.
remote: Total 61 (delta 17), reused 53 (delta 10), pack-reused 0 (from 0)
Receiving objects: 100% (61/61), 35.75 KiB | 430.00 KiB/s, done.
Resolving deltas: 100% (17/17), done.
#重启网关
openclaw@hcss-ecs-d448:~$openclaw gateway restart
.......
技能检查
对话查询专属技能:

clawhub安装Skill
# 远程登录实例,登录环境
#进入openclaw用户
root@hcss-ecs-d448:~# su - openclaw
#进入.openclaw目录
openclaw@hcss-ecs-d448:/root$ cd /home/openclaw/.openclaw/
#安装技能(以trello为例)
openclaw@hcss-ecs-d448:~/.openclaw$ clawhub install Trello
.....
#检查技能安装成功
openclaw@hcss-ecs-d448:~/.openclaw$ openclaw skills list --eligible | grep trello
│ ✓ ready │ 📦 trello │ Manage Trello boards, lists, and cards via the Trello │ openclaw-managed │
注意:ClawHub安装国内会出现接口限频导致安装Skill失败。
- 点赞
- 收藏
- 关注作者


评论(0)