🦀 ClawHub
Skill Manager
by @xu-fengxie
Install and manage OpenClaw agent skills. Learn how to find, install, and configure new capabilities from ClawHub and GitHub.
TERMINAL
clawhub install skill-manager-2📖 About This Skill
name: skill-manager description: Install and manage OpenClaw agent skills. Learn how to find, install, and configure new capabilities from ClawHub and GitHub.
OpenClaw Skills 安装指南
本技能基于视频教程:https://www.bilibili.com/video/BV1PbFUzZEvN
概述
OpenClaw 是目前最流行的 AI 智能体。要让它变强,需要安装更多的技能包(Agent Skills)。
安装方法
方法1:使用 Vercel CLI
# 安装 Vercel Skills 工具
npm install -g @vercel/skills查看可用技能
skills安装技能
skills install 例如安装天气技能
skills install weather
方法2:使用 ClawHub
# 安装 clawdhub 工具
npm install -g clawdhub搜索技能
clawdhub search 安装技能
clawdhub install 例如
clawdhub install steipete/weather
方法3:从 GitHub 直接安装
# 克隆技能仓库
git clone https://github.com//.git ~/.openclaw/workspace/skills/或者使用 npx
npx clawdhub install /
常用技能推荐
必备
开发
生产力
进阶
技能存放位置
~/.openclaw/workspace/skills/
├── weather/
│ ├── SKILL.md
│ ├── install.sh
│ └── ...
├── brave-search/
│ └── ...
└── ...
验证安装
# 列出已安装技能
ls ~/.openclaw/workspace/skills/查看技能详情
cat ~/.openclaw/workspace/skills//SKILL.md
注意事项
1. 部分技能需要配置 API Key(如 Tavily、Brave、OpenAI 等) 2. 有些技能需要安装额外的 npm 包 3. 建议阅读每个技能的 SKILL.md 了解具体用法