---
name: internet-skill-finder
description: Search and recommend Agent Skills from verified GitHub repositories. Use when users ask to find, discover, search for, or recommend skills/plugins for specific tasks, domains, or workflows.
---

# Internet Skill Finder

Search 9 verified GitHub repositories containing 1000+ official Agent Skills from Anthropic, Google, Vercel, Stripe, Cloudflare, and more.

**Triggers:** "find a skill for", "find a github repo for", "is there a skill for", "search skills for", "recommend a skill", "what skill handles", "find me a plugin for", "discover skills"

---

## Repositories Covered (9 total)

| Repository | Stars | Type |
|---|---|---|
| anthropics/skills | 123k | Official Anthropic skills |
| obra/superpowers | 167k | Agentic dev workflow skills |
| vercel-labs/agent-skills | 25k | Official Vercel skills |
| VoltAgent/awesome-agent-skills | 18k | 1000+ official company skills (Stripe, Cloudflare, Figma, OpenAI, etc.) |
| hesreallyhim/awesome-claude-code | 40k | Curated Claude Code skills list |
| ComposioHQ/awesome-claude-skills | 56k | Composio integration skills |
| travisvn/awesome-claude-skills | 11k | Community curated list |
| BehiSecc/awesome-claude-skills | 8k | Community curated list |
| K-Dense-AI/claude-scientific-skills | 19k | Scientific research skills |

---

## Workflow

### Step 1 — Search by keyword

```bash
python3 /home/ubuntu/skills/internet-skill-finder/scripts/fetch_skills.py --search "keyword"
```

Examples:
- `--search "stripe"` — finds Stripe payment skills
- `--search "security"` — finds OWASP, Trail of Bits, defense-in-depth skills
- `--search "react"` — finds React best practices skills
- `--search "database"` — finds PostgreSQL, MongoDB, ClickHouse skills
- `--search "deploy"` — finds Vercel, Cloudflare, Netlify deploy skills

Add `--online` to fetch real-time data from GitHub (refreshes cache).

### Step 2 — Deep dive on a specific skill (optional)

```bash
python3 /home/ubuntu/skills/internet-skill-finder/scripts/fetch_skills.py --deep-dive REPO SKILL
```

Example: `--deep-dive vercel-labs/agent-skills deploy-to-vercel`

This fetches the full SKILL.md content so you can read exactly what the skill does before recommending it.

### Step 3 — List all available skills

```bash
python3 /home/ubuntu/skills/internet-skill-finder/scripts/fetch_skills.py --list
```

---

## Presenting Results

Format each result clearly:

Skill Name: [name]
Source: [repository] (stars)
Description: [what it does]
Import URL: [direct import link]

If no matches found, say: "No existing skill found for [topic]. I can build a custom one — say 'create a skill for [topic]' to start."

If using cached data (not --online), note: "Using cached data — results may be a few days old."

---

## When to Use This Skill

Use this skill BEFORE building anything custom. The rule is: always check if an official skill already exists first.

Common scenarios:
- User is starting a new project with a specific tech stack → search for skills matching that stack
- User asks "is there a skill for X" → run the search immediately
- User wants to integrate a third-party service → search for the official skill from that company
- User asks to find or discover skills → run --list and group by category

---

## Sources

9 repositories: anthropics/skills, obra/superpowers, vercel-labs/agent-skills, VoltAgent/awesome-agent-skills, hesreallyhim/awesome-claude-code, ComposioHQ/awesome-claude-skills, travisvn/awesome-claude-skills, BehiSecc/awesome-claude-skills, K-Dense-AI/claude-scientific-skills
