find-skills

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

Updated Jul 12, 2025
One-click install
npx skills add https://github.com/kpayakv2/check-products --skill find-skills-kpayakv2
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: find-skills
Source: https://github.com/kpayakv2/check-products/tree/main/.agents/skills/find-skills
Command: npx skills add https://github.com/kpayakv2/check-products --skill find-skills-kpayakv2

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you need a capability your agent does not currently have, this Skill helps you discover, evaluate, and install existing skills from the open agent skills ecosystem instead of building everything from scratch. ## Core Features & Use Cases - Skill Discovery: Searches the skills registry with npx skills find [query] and checks the skills.sh leaderboard for popular, well-maintained options. - Quality Verification: Evaluates install counts, source reputation, and GitHub stars before recommending any skill. - Guided Installation: Installs chosen skills with npx skills add <owner/repo@skill> -g -y and suggests creating a custom skill with npx skills init when nothing matches. - Use Case: You ask "is there a skill for PR reviews?" and the agent searches the registry, verifies a reputable option, and installs it for you. ## Quick Start Ask the agent to find a skill for the task you need, 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 a 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 category before searching.

How do I 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. Adding the -g flag installs globally at user level and -y skips confirmation prompts.

How do I know if a skill is trustworthy before installing?▼

Check the install count, preferring skills with over 1K installs, and verify the source reputation. Skills from official sources like vercel-labs or anthropics and repositories with strong GitHub star counts are more reliable.

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

If the search returns no relevant results, the agent can handle the task directly with its general capabilities. You can also create your own reusable skill by running npx skills init with a name for your new skill.

Can I update all my installed skills at once?▼

Yes, run npx skills update to update all installed skills to their latest versions. This keeps your skill library current without reinstalling each package individually.