agents/skills/find-skills/SKILL.md
Discover and load agent skills from the SkillsMP marketplace. Use when the user asks "how do I do X", "find a skill for X", "is there a skill for X", "can you do X" where X is a specialized capability, or expresses interest in extending agent capabilities.
npx skillsauth add juanibiapina/dotfiles find-skillsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search the SkillsMP marketplace (~900K skills indexed from GitHub) and load any candidate into the current session via the load_skill_from_url tool.
Hit the public REST API. Anonymous works (50 req/day, 10 req/min, keyword search).
curl -fsSL "https://skillsmp.com/api/v1/skills/search?q=<query>&sortBy=stars&limit=10" | jq
Useful parameters:
q (required) — keywords, max 200 charssortBy — stars or recent (default: recent)limit — up to 50category — slug from https://skillsmp.com/categoriesoccupation — SOC slug from https://skillsmp.com/occupationsEach result has: id, name, author, description, githubUrl, skillUrl, stars, updatedAt.
On HTTP 429, back off and tell the user (rate limit hit).
SkillsMP indexes the GitHub long tail; many useful skills sit at 0 stars. Don't hard-floor by stars.
In order of weight:
description matches the user's intentanthropics, vercel-labs, microsoft, obra, ComposioHQBefore recommending, read the actual SKILL.md. Convert the API's githubUrl to raw:
githubUrl: https://github.com/<owner>/<repo>/tree/<ref>/<subpath>https://raw.githubusercontent.com/<owner>/<repo>/<ref>/<subpath>/SKILL.mdOne-liner (replaces /tree/ with / so neighbouring slashes survive):
RAW=$(echo "$githubUrl" | sed 's|github.com|raw.githubusercontent.com|; s|/tree/|/|')/SKILL.md
curl -fsSL "$RAW"
Skim the frontmatter and body to confirm fit and surface anything important (required tools, env vars, caveats).
Show the user 1–3 options. For each:
descriptionskillUrl for the marketplace pagegithubUrl for the sourceExample:
Found a couple of options:
1. playwright by A-Kuo (0 stars)
Browser automation from the terminal via playwright-cli.
https://skillsmp.com/skills/a-kuo-cipher-cursor-skills-playwright-skill-md
Source: https://github.com/A-Kuo/CIPHER/tree/main/.cursor/skills/playwright
2. ...
Want me to load one?
Pass the API's githubUrl straight to the tool — it already has the right shape:
load_skill_from_url(url="<githubUrl>")
Then Read SKILL.md from the returned dir and follow it for the rest of the task.
Say so, offer to do the task with general capabilities. Optionally suggest the user create their own skill (see the managing-skills skill).
development
Use before starting work on any coding task: implementing a feature, fixing a bug, refactoring, or changing code. Drives the complete implementation.
development
Use when writing code plans, architecture, or generally discussing code
testing
Use when writing, reviewing, or improving tests, deciding what to mock, or designing interfaces for testability.
development
Test-driven development with red-green-refactor loop. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.