find-skills

Searches and installs agent skills from the open skills ecosystem using the Skills CLI.

1|Updated Aug 11, 2026
One-click install
npx skills add https://github.com/Chia1104/agent-air --skill find-skills-chia1104
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: find-skills
Source: https://github.com/Chia1104/agent-air/tree/main/skills/shared/find-skills
Command: npx skills add https://github.com/Chia1104/agent-air --skill find-skills-chia1104

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you ask an agent "how do I do X" or "is there a skill for X", there is often an existing installable skill that solves the problem, but discovering and vetting it manually is slow. This Skill guides the agent to search the open agent skills ecosystem, verify quality, and install the right package. ## Core Features & Use Cases - Skill Discovery: Searches the skills.sh leaderboard and runs npx skills find [query] to locate relevant skills by domain or task. - Quality Verification: Checks install counts, source reputation (e.g., vercel-labs, anthropics), and GitHub stars before recommending any skill. - Guided Installation: Presents options with install commands and can install globally via npx skills add <owner/repo@skill> -g -y. - Use Case: You ask "can you help me with PR reviews?" The agent runs npx skills find pr review, verifies a reputable result, and offers to install it for you. ## Quick Start Ask the agent to find a skill for a task you need help with, such as "find a skill for React performance optimization".

Frequently Asked Questions about find-skills

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find an agent skill for a specific task?▼

Run npx skills find followed by keywords describing your task, such as npx skills find react performance. You can also browse the skills.sh leaderboard to see the most-installed skills by domain before searching.

How to install an agent skill from GitHub?▼

Use npx skills add with the owner/repo@skill identifier, for example npx skills add vercel-labs/agent-skills@react-best-practices. Add the -g flag for global user-level installation and -y to skip confirmation prompts.

How do I know if an agent skill is trustworthy?▼

Check the install count first, preferring skills with 1K+ installs and being cautious under 100. Verify the source reputation, favoring official authors like vercel-labs or anthropics, and check the GitHub repository's star count.

What should I do when no skill exists for my task?▼

If npx skills find returns no relevant matches, the agent can handle the task directly with its general capabilities. For recurring tasks, you can create your own skill using npx skills init.

Can I search skills from a specific GitHub owner?▼

Yes, the find command supports an --owner flag to scope results to a specific GitHub owner, for example npx skills find testing --owner vercel-labs. This helps filter results to trusted sources.