查找技能:发现并安装 AI 智能体功能 - Openclaw Skills
作者:互联网
2026-03-26
什么是 查找技能?
查找技能是开放智能体技能生态系统的重要发现层,充当用户需求与技术能力之间的桥梁。它利用 Skills CLI 允许智能体动态搜索、展示并安装专业知识包、工作流和工具。
该技能是创建自我扩展智能体环境的基础。通过将 Skills CLI 作为包管理器,用户可以无缝集成涵盖从 Web 开发最佳实践到复杂 DevOps 流水的 Openclaw 技能,确保智能体始终具备处理当前任务所需的正确工具。
下载入口:https://github.com/openclaw/skills/tree/main/skills/breckengan/find-skill
安装与下载
1. ClawHub CLI
从源直接安装技能的最快方式。
npx clawhub@latest install find-skill
2. 手动安装
将技能文件夹复制到以下位置之一
全局模式~/.openclaw/skills/
工作区
/skills/
优先级:工作区 > 本地 > 内置
3. 提示词安装
将此提示词复制到 OpenClaw 即可自动安装。
请帮我使用 Clawhub 安装 find-skill。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。
查找技能 应用场景
- 搜索 React 性能或测试框架等专业领域知识。
- 当智能体遇到其核心训练之外的任务时,自动安装新的 Openclaw 技能。
- 管理和更新现有的智能体功能库。
- 帮助开发者在 skills.sh 上发现社区贡献的工作流和模板。
- 分析用户查询以识别特定任务或领域需求。
- 通过 Skills CLI 执行搜索命令以查询 Openclaw 技能注册表。
- 获取并格式化最相关的技能匹配元数据。
- 向用户展示安装选项和文档链接。
- 执行安装命令以在智能体环境中持久化新功能。
查找技能 配置指南
要开始查找和安装 Openclaw 技能,请确保您可以访问 Skills CLI。使用以下命令管理您的环境:
# 搜索特定功能
npx skills find [查询内容]
# 安装新技能
npx skills add <所有者/仓库@技能>
# 检查现有技能的更新
npx skills check
查找技能 数据架构与分类体系
该技能按照以下结构管理信息,以确保在 Openclaw 技能生态系统内的兼容性:
| 属性 | 描述 |
|---|---|
| 技能标识符 | 用于安装的完整 所有者/仓库@包 路径 |
| 命令元数据 | 关键命令如 add、find、update 和 check |
| 注册表链接 | 指向 skills.sh 详细文档的直接 URL |
| 安装标志 | 支持 -g(全局)和 -y(自动确认)标志 |
name: find-skills
description: Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Find Skills
This skill helps you discover and install skills from the open agent skills ecosystem.
When to Use This Skill
Use this skill when the user:
- Asks "how do I do X" where X might be a common task with an existing skill
- Says "find a skill for X" or "is there a skill for X"
- Asks "can you do X" where X is a specialized capability
- Expresses interest in extending agent capabilities
- Wants to search for tools, templates, or workflows
- Mentions they wish they had help with a specific domain (design, testing, deployment, etc.)
What is the Skills CLI?
The Skills CLI (npx skills) is the package manager for the open agent skills ecosystem. Skills are modular packages that extend agent capabilities with specialized knowledge, workflows, and tools.
Key commands:
npx skills find [query]- Search for skills interactively or by keywordnpx skills add- Install a skill from GitHub or other sourcesnpx skills check- Check for skill updatesnpx skills update- Update all installed skills
Browse skills at: https://skills.sh/
How to Help Users Find Skills
Step 1: Understand What They Need
When a user asks for help with something, identify:
- The domain (e.g., React, testing, design, deployment)
- The specific task (e.g., writing tests, creating animations, reviewing PRs)
- Whether this is a common enough task that a skill likely exists
Step 2: Search for Skills
Run the find command with a relevant query:
npx skills find [query]
For example:
- User asks "how do I make my React app faster?" →
npx skills find react performance - User asks "can you help me with PR reviews?" →
npx skills find pr review - User asks "I need to create a changelog" →
npx skills find changelog
The command will return results like:
Install with npx skills add
vercel-labs/agent-skills@vercel-react-best-practices
└ https://skills.sh/vercel-labs/agent-skills/vercel-react-best-practices
Step 3: Present Options to the User
When you find relevant skills, present them to the user with:
- The skill name and what it does
- The install command they can run
- A link to learn more at skills.sh
Example response:
I found a skill that might help! The "vercel-react-best-practices" skill provides
React and Next.js performance optimization guidelines from Vercel Engineering.
To install it:
npx skills add vercel-labs/agent-skills@vercel-react-best-practices
Learn more: https://skills.sh/vercel-labs/agent-skills/vercel-react-best-practices
Step 4: Offer to Install
If the user wants to proceed, you can install the skill for them:
npx skills add -g -y
The -g flag installs globally (user-level) and -y skips confirmation prompts.
Common Skill Categories
When searching, consider these common categories:
| Category | Example Queries |
|---|---|
| Web Development | react, nextjs, typescript, css, tailwind |
| Testing | testing, jest, playwright, e2e |
| DevOps | deploy, docker, kubernetes, ci-cd |
| Documentation | docs, readme, changelog, api-docs |
| Code Quality | review, lint, refactor, best-practices |
| Design | ui, ux, design-system, accessibility |
| Productivity | workflow, automation, git |
Tips for Effective Searches
- Use specific keywords: "react testing" is better than just "testing"
- Try alternative terms: If "deploy" doesn't work, try "deployment" or "ci-cd"
- Check popular sources: Many skills come from
vercel-labs/agent-skillsorComposioHQ/awesome-claude-skills
When No Skills Are Found
If no relevant skills exist:
- Acknowledge that no existing skill was found
- Offer to help with the task directly using your general capabilities
- Suggest the user could create their own skill with
npx skills init
Example:
I searched for skills related to "xyz" but didn't find any matches.
I can still help you with this task directly! Would you like me to proceed?
If this is something you do often, you could create your own skill:
npx skills init my-xyz-skill
相关推荐
专题
+ 收藏
+ 收藏
+ 收藏
+ 收藏
+ 收藏
最新数据
相关文章
查找技能:探索并安装 Openclaw 技能生态系统工具
统一技能查找器:发现并安装 Openclaw 技能 - Openclaw Skills
pincer:安全的技能安装与恶意软件扫描 - Openclaw Skills
【每日一技】OpenClaw源码安装(Docker简洁实战版)
OpenClaw 安装:在 AWS 上部署您的个人 AI 助手 - Openclaw Skills
ClawHub:轻松管理和安装 Openclaw 技能
Mac 电脑本地部署安装 OpenClaw 小龙虾教程
openclaw小龙虾的安装
Claude Code 入门完全指南(一):安装与首次体验
安装向导:自动化配置与激活 - Openclaw Skills
AI精选
