Search and recommend Agent Skills from 7 verified GitHub repositories. Use this skill whenever users ask to find, discover, search for, browse, or recommend skills or plugins for specific tasks, domains, or workflows. Also trigger when users say things like "is there a skill for...", "find me a skill", "what skills exist for...", "I need a plugin for...", "are there any skills that...", "search for skills", "browse available skills", or any mention of searching skill repositories, importing skills, or browsing available agent capabilities. Even if the user just describes a task and you suspect a community skill might exist, consider using this to check.
How this skill is triggered — by the user, by Claude, or both
Slash command
/internet-skill-finder:internet-skill-finderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search 7 verified GitHub repositories for Agent Skills, including the official Anthropic skills repo and top community collections.
Search 7 verified GitHub repositories for Agent Skills, including the official Anthropic skills repo and top community collections.
Run the fetch script via Bash to search for skills matching the user's query:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/fetch_skills.py" --search "keyword"
Replace "keyword" with terms relevant to what the user is looking for. Use multiple words for broader matches (e.g., --search "react testing").
| Command | Purpose |
|---|---|
--search "query" | Search by keyword (most common) |
--list | List all skills across all repos |
--deep-dive "owner/repo" "skill-name" | Fetch full details for a specific skill |
--online | Force real-time fetch from GitHub |
--json | Output structured JSON |
--limit N | Limit search results (default: 20) |
--rate-limit | Check GitHub API rate limits |
--refresh-cache | Update the offline cache from GitHub |
--search with the user's keywords.--deep-dive to get full details.--list.Format each matching skill as:
### [Skill Name]
**Source**: [owner/repo] | Stars: [count]
**Description**: [description]
**Tags**: [tags]
**URL**: [github_url]
The script automatically selects the best available data source:
--online flagCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub mattwag05/mw-plugins --plugin internet-skill-finder