
Find Skills
- 16 installs
- 22 repo stars
- Updated May 28, 2026
- acedergren/agentic-tools
find-skills is a Claude Code skill that discovers and installs skills from the open agent-skills ecosystem via the Skills CLI (npx skills).
About
find-skills is a Claude Code skill that discovers and installs skills from the open agent-skills ecosystem via the Skills CLI. It wraps commands like npx skills find, add, check, and update, lists known skill sources, and gives rules for when to install a skill versus answer directly. Developers use it when they want to find, install, or search for agent skills for a specialized capability.
- Discovers and installs agent skills from the open ecosystem via the Skills CLI (npx skills)
- Provides search strategy, known sources, and install-vs-answer-directly decision rules
Find Skills by the numbers
- 16 all-time installs (skills.sh)
- Ranked #11,068 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
find-skills capabilities & compatibility
- Capabilities
- skill discovery · skill installation · agent extension
- Use cases
- orchestration
- Pricing
- Free
What find-skills says it does
Discover and install skills from the open agent skills ecosystem via the Skills CLI.
Never install without `-g` unless user explicitly wants project-local
npx skills add https://github.com/acedergren/agentic-tools --skill find-skillsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 16 |
|---|---|
| repo stars | ★ 22 |
| Last updated | May 28, 2026 |
| Repository | acedergren/agentic-tools ↗ |
What it does
Discover and install agent skills from the open ecosystem via the Skills CLI when a specialized capability is needed.
Who is it for?
Finding and installing an agent skill for a specialized capability from the open ecosystem via npx skills.
Skip if: General programming questions that need no skill; the skill says to answer those directly.
When should I use this skill?
You ask to find, install, or search for an agent skill, or ask 'is there a skill for X'.
What you get
The right skill discovered and installed via the Skills CLI, or a clear signal that none exists.
- Discovered candidate skills
- Installed skill via the Skills CLI
By the numbers
- known-sources table lists 3 skill sources
- 6 Skills CLI commands referenced
Files
Find Skills
When to Use
Load this skill when the user request matches the frontmatter description for Find Skills.
Discover and install skills from the open agent skills ecosystem via the Skills CLI.
CLI Reference
npx skills find [query] # Search by keyword
npx skills add <owner/repo@skill> # Install a skill
npx skills add <owner/repo@skill> -g -y # Install globally, skip prompts
npx skills check # Check for updates
npx skills update # Update all installed skills
npx skills init my-skill-name # Scaffold a new skillBrowse: https://skills.sh/
Known Sources
| Source | Skills |
|---|---|
acedergren/agentic-tools | OCI (compute, IAM, networking, DBA, finops, landing-zones, genai), orchestrate, prd, implement, tdd, health-check, stitch-*, migrate, doc-sync, quality-commit, prod-readiness |
vercel-labs/agent-skills | React, Next.js, Vercel deployment, performance |
ComposioHQ/awesome-claude-skills | General-purpose catalogue |
Install from agentic-tools:
npx skills add acedergren/agentic-tools@orchestrate
npx skills add acedergren/agentic-tools@oracle-dba
npx skills add acedergren/agentic-tools@prdInstall vs Answer Directly
| Situation | Decision |
|---|---|
| User explicitly asks for a skill | Install |
| Specialized domain (OCI, Stitch, TDD workflow) | Install — domain skills have non-obvious knowledge |
| General programming question | Answer directly — no skill needed |
| User says "can you do X" | Check for skill first, answer directly if none found |
Default: check before assuming no skill exists.
Search Strategy
1. Run npx skills find [domain] [task] — specific beats generic ("react testing" > "testing") 2. If no results: try synonyms ("deploy" / "deployment" / "ci-cd") 3. Check acedergren/agentic-tools directly for OCI, auth, and workflow skills
If npx isn't available: npm i -g skills then retry.
When No Results Found
npx skills find [query] returned no matches.
Options:
- I can help directly with my general capabilities
- Create your own: npx skills init my-skill-nameNEVER
- Never install without `-g` unless user explicitly wants project-local — project-local install puts skills in
./node_modules/.claude/which most users don't want - Never skip showing the skills.sh link — users may want to inspect before installing
- Never assume `npx skills find` exhausts all options — check known sources table above for OCI/workflow skills that may not be indexed yet
Arguments
$ARGUMENTS: Optional user-provided target, path, environment, symptom, or constraint. When empty, infer the narrowest safe scope from the current repository context and ask only if multiple high-impact choices remain.
Related skills
FAQ
How does it install a skill?
It uses the Skills CLI: npx skills add <owner/repo@skill>, typically with -g to install globally, and shows the skills.sh link so you can inspect first.
When should it not install a skill?
For general programming questions it answers directly; it only installs when the user explicitly asks or the domain is specialized.