查找技能:探索并安装 Openclaw 技能生态系统工具

作者:互联网

2026-03-26

环境安装

什么是 查找技能?

查找技能功能是通往庞大 Openclaw 技能生态系统的入口,允许开发人员动态扩展其 AI 智能体。通过利用 Skills CLI,用户可以搜索未内置在核心智能体中的专业工具、最佳实践指南和自动化工作流,在确保工作区轻量化的同时保持无限的可扩展性。

无论您需要特定的 React 性能优化技巧还是复杂的 DevOps 部署脚本,此技能都能让您的智能体直接在开发环境中查找并集成合适的 Openclaw 技能。这种模块化方法允许提供量身定制的 AI 体验,随您的项目需求共同发展,并充分利用社区驱动的 Openclaw 技能库的全部力量。

下载入口:https://github.com/openclaw/skills/tree/main/skills/isainazar/openclaw-find-skills

安装与下载

1. ClawHub CLI

从源直接安装技能的最快方式。

npx clawhub@latest install openclaw-find-skills

2. 手动安装

将技能文件夹复制到以下位置之一

全局模式 ~/.openclaw/skills/ 工作区 /skills/

优先级:工作区 > 本地 > 内置

3. 提示词安装

将此提示词复制到 OpenClaw 即可自动安装。

请帮我使用 Clawhub 安装 openclaw-find-skills。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。

查找技能 应用场景

  • 在 Openclaw 技能注册表中搜索 React 性能优化或 PR 审查工具等专业功能。
  • 通过用于测试、设计或部署的领域特定 Openclaw 技能扩展 AI 智能体的知识库。
  • 通过浏览 Openclaw 技能识别现有工作流,避免重复开发常见的自动化脚本。
  • 保持本地 Openclaw 技能库与最新版本和安全补丁同步。
查找技能 工作原理
  1. 智能体识别用户需要额外专业知识的特定领域或任务。
  2. 它通过 CLI 执行搜索查询,使用 find 命令在开放生态系统中查找相关的 Openclaw 技能。
  3. 解析搜索结果并向用户展示技术说明和直接安装链接。
  4. 用户确认后,智能体使用 global 标志安装该包,将选定的 Openclaw 技能集成到当前环境中。

查找技能 配置指南

要开始使用此功能,请确保终端中可以使用 Skills CLI。您可以使用以下命令与 Openclaw 技能生态系统进行交互:

# 交互式搜索新的 Openclaw 技能
npx skills find [查询内容]

# 将特定技能添加到您的智能体环境
npx skills add <所有者/仓库@技能>

# 检查已安装 Openclaw 技能的更新
npx skills check

# 将所有现有技能更新到最新版本
npx skills update

查找技能 数据架构与分类体系

系统根据源仓库和特定技能标签组织 Openclaw 技能,方便查找和安装。

字段 描述
owner 托管 Openclaw 技能的 GitHub 用户或组织
repo 代码所在的特定仓库名称
@skill 仓库中特定功能的唯一标识符
registry 托管在 skills.sh 上的主要文档和可浏览索引
name: find-skills
description: Discover and install skills from the open agent skills ecosystem. Use when: (1) user asks "how do I do X" where X might have an existing skill, (2) user says "find a skill for X" or "is there a skill for X", (3) user asks "can you do X" where X is a specialized capability, (4) user wants to extend agent capabilities, (5) user wants to search for tools, templates, or workflows, (6) user mentions they wish they had help with a specific domain (design, testing, deployment, etc.).

Find Skills

Discover and install skills from the open agent skills ecosystem using the Skills CLI (npx skills).

Skills CLI Commands

npx skills find [query]    # Search for skills interactively or by keyword
npx skills add    # Install a skill from GitHub or other sources
npx skills check           # Check for skill updates
npx skills update          # Update all installed skills

Browse skills at: https://skills.sh/

How to Help Users Find Skills

Step 1: Understand What They Need

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

npx skills find [query]

Examples:

  • "how do I make my React app faster?" → npx skills find react performance
  • "can you help me with PR reviews?" → npx skills find pr review
  • "I need to create a changelog" → npx skills find changelog

Results format:

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

Include:

  • The skill name and what it does
  • The install command
  • A link to learn more at skills.sh

Example:

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

Install with global flag and auto-confirm:

npx skills add  -g -y

Common Skill 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: vercel-labs/agent-skills or ComposioHQ/awesome-claude-skills

When No Skills Are Found

If no relevant skills exist:

  1. Acknowledge that no existing skill was found
  2. Offer to help with the task directly using general capabilities
  3. Suggest creating a custom skill with npx skills init
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