find-skills

Searches the open agent skills ecosystem and installs matching skills via the npx skills CLI.

1|1|Updated Jul 6, 2026
One-click install
npx skills add https://github.com/muhammaddadu/ai-skill-collection --skill find-skills-muhammaddadu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: find-skills
Source: https://github.com/muhammaddadu/ai-skill-collection/tree/main/meta/find-skills
Command: npx skills add https://github.com/muhammaddadu/ai-skill-collection --skill find-skills-muhammaddadu

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you ask your agent "how do I do X" or "is there a skill for X", you often don't know whether a ready-made skill exists. This Skill searches the open agent skills ecosystem and gives you an installable recommendation instead of leaving you to build everything from scratch. ## Core Features & Use Cases - Skill Discovery: Runs npx skills find [query] to search the skills registry by domain and task keywords. - Guided Installation: Presents matching skills with the exact npx skills add <owner/repo@skill> command and a skills.sh link, and can install globally with -g -y flags. - Fallback Guidance: When no skill matches, offers direct help with the task and suggests authoring a custom skill via npx skills init. - Use Case: You ask "can you help me with PR reviews?" — the agent runs npx skills find pr review, presents matching skills, and installs your choice. ## Quick Start Ask the agent to find a skill for a 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 and install an agent skill for a specific task?

Run npx skills find followed by keywords describing your task, such as npx skills find react performance. The results show installable packages, and you install one with npx skills add owner/repo@skill.

What is the npx skills CLI used for?

The npx skills CLI is the package manager for the open agent skills ecosystem. It supports find for searching, add for installing from GitHub or other sources, check for update detection, and update for refreshing installed skills.

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

If the search returns no matches, the agent can handle the task directly with its general capabilities. For recurring needs, you can author your own skill by running npx skills init my-skill-name.

Can I install skills globally without confirmation prompts?

Yes, run npx skills add owner/repo@skill with the -g flag for global user-level installation and -y to skip confirmation prompts. Installed skills land in the agent's skills directory.

How do I write better search queries for finding skills?

Use specific keywords like react testing instead of just testing, and try alternative terms such as deployment or ci-cd if deploy returns nothing. Browsing categories at skills.sh also reveals common skill sources.