Installation
Install via CLI
npx @vector-labs/skills add find-skills Or target a specific tool
npx @vector-labs/skills add find-skills --tool cursor Skill Files (2)
SKILL.md 2.8 KB
---
name: find-skills
description: >-
Descobre e instala skills de agentes do ecossistema skills.sh. Faz busca
local primeiro, depois em fontes curadas e no ecossistema. Use quando
precisar encontrar uma skill para uma tarefa especifica.
license: Apache-2.0
compatibility: Requires internet access and skills CLI
allowed-tools: Bash Read WebFetch WebSearch Glob
metadata:
author: vector-labs
version: "1.0"
tags: [discovery, tools]
complexity: beginner
---
# Find Skills
Discover skills from installed local skills and the open skills.sh ecosystem. Local-first: check what's already installed before searching externally.
## Workflow
### Step 1: Understand the Need
Identify from the user's request:
1. The domain (e.g., marketing, document processing, frontend, testing)
2. The specific task (e.g., writing copy, creating PDFs, optimizing conversions)
3. Whether this is common enough that a skill likely exists
### Step 2: Check Installed Skills
List what's already available locally:
```bash
npx skills ls -g
```
Also check project-level skills:
```bash
npx skills ls
```
If an installed skill matches, tell the user it's already available and how to use it. Done.
### Step 3: Search Curated Sources
If no local match, consult [references/curated-sources.md](references/curated-sources.md) for trusted repositories organized by domain. Recommend from curated sources first โ these have been vetted.
To list skills from a specific source:
```bash
npx skills add <source> -l
```
Example:
```bash
npx skills add anthropics/skills -l
npx skills add coreyhaines31/marketingskills -l
```
### Step 4: Search the Ecosystem
If curated sources don't have a match, search the broader ecosystem:
```bash
npx skills find <query>
```
Tips:
- Use specific keywords: "react testing" > "testing"
- Try alternative terms: "deploy", "deployment", "ci-cd"
- Browse at https://skills.sh/ for category discovery
### Step 5: Present Options
When presenting a skill to the user, include:
1. Skill name and what it does
2. Source repository
3. Install command
4. Link to skills.sh page
Example:
```
Found "seo-audit" from coreyhaines31/marketingskills โ audits SEO issues on pages.
Install: npx skills add coreyhaines31/marketingskills --skill seo-audit -g
More info: https://skills.sh/coreyhaines31/marketingskills/seo-audit
```
**Always ask the user before installing.** Never auto-install.
### Step 6: Install (After User Confirms)
```bash
npx skills add <source> --skill <skill-name> -g -y
```
- `-g` installs globally (user-level)
- `-y` skips confirmation (only use after user has already confirmed)
- Use `--skill <name>` to install a specific skill from a multi-skill repo
### When Nothing is Found
1. Acknowledge no skill was found
2. Offer to help directly with general capabilities
3. Suggest creating a custom skill: `npx skills init <name>` (reference the skill-creator skill)
references/
curated-sources.md 1.7 KB
# Curated Skill Sources
Trusted repositories to search first, in priority order.
## Tier 1: Official
| Source | Skills | Focus |
|--------|--------|-------|
| `anthropics/skills` | 17 | Document processing (docx, pdf, pptx, xlsx), frontend-design, MCP builder, skill-creator, algorithmic-art, webapp-testing |
| `anthropics/claude-code` | 10 | Claude Code plugins, hooks, frontend-design |
## Tier 2: Vetted
| Source | Skills | Focus |
|--------|--------|-------|
| `coreyhaines31/marketingskills` | 25 | Full marketing stack: copywriting, SEO, CRO, email, ads, pricing, analytics, content strategy, social, A/B testing |
| `vercel-labs/skills` | 1 | find-skills (meta) |
## Notable Skills by Domain
### Document Processing
- `anthropics/skills` โ docx, pdf, pptx, xlsx
### Frontend & Web
- `anthropics/skills` โ frontend-design, web-artifacts-builder, canvas-design
- `anthropics/claude-code` โ frontend-design
### Marketing & Growth
- `coreyhaines31/marketingskills` โ copywriting, copy-editing, seo-audit, page-cro, signup-flow-cro, email-sequence, pricing-strategy, launch-strategy, paid-ads, content-strategy, social-content, marketing-ideas, marketing-psychology, analytics-tracking, schema-markup, programmatic-seo, form-cro, onboarding-cro, referral-program, competitor-alternatives, free-tool-strategy, paywall-upgrade-cro, popup-cro, ab-test-setup, product-marketing-context
### Developer Tools
- `anthropics/skills` โ mcp-builder, skill-creator, webapp-testing
- `anthropics/claude-code` โ plugin structure, hook development
### Design & Creative
- `anthropics/skills` โ algorithmic-art, brand-guidelines, canvas-design, theme-factory, slack-gif-creator
### Documentation & Writing
- `anthropics/skills` โ doc-coauthoring, internal-comms
License (Apache-2.0)
Apache-2.0
Source: vlabsai/skills-hub
View full license text
Licensed under Apache-2.0