find-skills

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

Updated Aug 19, 2026
One-click install
npx skills add https://github.com/Base-Analitica/mouse-hub --skill find-skills-base-analitica
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: find-skills
Source: https://github.com/Base-Analitica/mouse-hub/tree/main/.jcode/skills/find-skills
Command: npx skills add https://github.com/Base-Analitica/mouse-hub --skill find-skills-base-analitica

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you ask "how do I do X" or "is there a skill for X", you often don't know whether a ready-made agent skill already exists. This Skill discovers, evaluates, and installs skills from the open agent skills ecosystem so you can extend your agent's capabilities without building everything from scratch. ## Core Features & Use Cases - Skill Discovery: Searches the skills ecosystem via npx skills find [query] and checks the skills.sh leaderboard for popular, well-maintained options. - Quality Verification: Evaluates install counts, source reputation (e.g., vercel-labs, anthropics), and GitHub stars before recommending any skill. - Guided Installation: Installs skills with npx skills add <owner/repo@skill> -g -y, or copies a SKILL.md into .jcode/skills/<name>/ for Jcode projects. - Use Case: You ask "can you help me with PR reviews?" The Skill runs npx skills find pr review, verifies the top result has strong install numbers, and presents the install command. ## Quick Start Ask the agent to find a skill for your task, for example: "Find a skill that helps me write better React tests."

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 testing. You can also browse the skills.sh leaderboard to see the most-installed skills by domain before searching.

How do I install a skill from the skills ecosystem?▼

Use npx skills add <owner/repo@skill> -g -y to install globally without confirmation prompts. For Jcode projects, copy the skill's SKILL.md into .jcode/skills/<name>/SKILL.md to keep the repository self-contained.

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

Check three signals: install count (prefer 1K+, be cautious under 100), source reputation (official sources like vercel-labs or anthropics are more trustworthy), and GitHub stars on the source repository.

What should I do if 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 with npx skills init my-skill-name.

Can I search skills from a specific GitHub owner?▼

Yes, add the --owner flag to scope the search, for example npx skills find changelog --owner vercel-labs. This limits results to skills published by that GitHub account.