find-skills

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

Updated Oct 15, 2019
One-click install
npx skills add https://github.com/kkkaoru/dotfiles --skill find-skills-kkkaoru
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: find-skills
Source: https://github.com/kkkaoru/dotfiles/tree/main/.agents/skills/find-skills
Command: npx skills add https://github.com/kkkaoru/dotfiles --skill find-skills-kkkaoru

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When you need a capability your agent does not currently have, this Skill finds, evaluates, and installs existing agent skills instead of building everything from scratch. ## Core Features & Use Cases - Skill Discovery: Searches the open agent skills ecosystem via the Skills CLI (npx skills find) and the skills.sh leaderboard ranked by install counts. - Quality Verification: Checks install counts, source reputation, and GitHub stars before recommending any skill. - Guided Installation: Installs reviewed skills into a local library (~/.agents/skills-stroage) and copies them into project .agents/skills directories. - Use Case: You ask "is there a skill for PR reviews?" and the agent searches the ecosystem, verifies a reputable option, and provides the exact install command. ## Quick Start Ask the agent to find a skill for a specific task, 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 [query]` with 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 <package>` with the skill's source, for example `npx skills add vercel-labs/agent-skills@react-best-practices`. Verify the skill's install count and source reputation before installing.

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

Check three signals: prefer skills with 1K+ installs, favor official sources like vercel-labs or anthropics, and review the source repository's GitHub stars. Treat skills from repos with under 100 stars with skepticism.

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

If searches return no relevant skills, proceed with the task using general capabilities instead. For recurring needs, you can create your own skill with `npx skills init my-skill-name`.

Should skills be installed globally or per project?

Domain-specific skills should go into a local library and be copied into the intended project's `.agents/skills` directory. Avoid blanket global installation; global startup skills are reserved for explicitly selected generic guidance.