find-skills

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Find Skills

查找技能

This skill helps users discover and install capabilities from the open agent skills ecosystem.
本技能可帮助用户发现并安装开放Agent技能生态中的功能。

When to Use

使用场景

Trigger this when users:
  • Ask "how do I do X" or "can you do X" for specialized tasks
  • Request "find a skill for X"
  • Want to extend agent capabilities
  • Need help with specific domains (testing, design, deployment, etc.)
在以下情况触发本技能:
  • 用户针对专业任务询问“我如何完成X”或“你能完成X吗”
  • 用户请求“寻找适用于X的技能”
  • 用户想要扩展Agent的能力
  • 用户需要特定领域(测试、设计、部署等)的帮助

Skills CLI Basics

Skills CLI 基础操作

The Skills CLI (
npx skills
) is a package manager for agent skills:
Key commands:
  • npx skills find [query]
    - Search for skills
  • npx skills add <package>
    - Install a skill
  • npx skills check
    - Check for updates
  • npx skills update
    - Update all skills
Skills CLI(
npx skills
)是一款Agent技能的包管理器:
核心命令:
  • npx skills find [query]
    - 搜索技能
  • npx skills add <package>
    - 安装技能
  • npx skills check
    - 检查更新
  • npx skills update
    - 更新所有技能
浏览地址:https://skills.sh/

Workflow

工作流程

  1. Understand the need - Identify domain and specific task
  2. Search - Run
    npx skills find [query]
    with relevant keywords
  3. Present options - Show skill name, purpose, install command, and skills.sh link
  4. Install if desired - Use
    npx skills add <owner/repo@skill> -g -y
  1. 理解需求 - 确定领域和具体任务
  2. 搜索 - 使用相关关键词运行
    npx skills find [query]
  3. 展示选项 - 显示技能名称、用途、安装命令及skills.sh链接
  4. 按需安装 - 使用
    npx skills add <owner/repo@skill> -g -y
    命令安装

Common Categories

常见分类

Web Development, Testing, DevOps, Documentation, Code Quality, Design, Productivity
Web开发、测试、DevOps、文档、代码质量、设计、生产力

Search Tips

搜索技巧

  • Use specific keywords ("react testing" vs "testing")
  • Try alternative terms
  • Check popular sources like
    vercel-labs/agent-skills
  • 使用具体关键词(如“react testing”而非“testing”)
  • 尝试替代术语
  • 查看热门资源,如
    vercel-labs/agent-skills

If Nothing Found

若无结果

Acknowledge the gap, offer direct help, and suggest creating a custom skill with
npx skills init
.
告知用户暂无相关技能,提供直接帮助,并建议使用
npx skills init
创建自定义技能。