Discover/install NEW agent skills from external sources (skills.sh). Use for capabilities you lack, e.g. "find a skill for X". Do NOT use to list skills you already have; see `<available_skills>`.
65
78%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
Fix and improve this skill with Tessl
tessl review fix ./core/python/long-horizon-harness/horizon/builtin_skills/find-skills/SKILL.mdBefore searching externally, check the <available_skills> block in your
context — the user may already have a relevant skill installed.
Before running any CLI command, check skills.sh to see whether a well-known skill already covers the domain. The leaderboard ranks by total installs, surfacing the most popular and battle-tested options.
If the leaderboard doesn't cover the user's need, search via the Skills CLI:
bash(command="npx --yes skills find <query>")Examples:
| User says | Search |
|---|---|
| "make my React app faster" | npx --yes skills find react performance |
| "help with PR reviews" | npx --yes skills find pr review |
| "create a changelog" | npx --yes skills find changelog |
If npx is unavailable the command will fail — fall back to browsing
skills.sh manually and pasting the SKILL.md content.
Never recommend a skill based solely on search results.
vercel-labs, anthropics,
microsoft) are more trustworthy than unknown authorsI found a skill that might help: "react-best-practices" from Vercel Engineering
provides React and Next.js performance guidelines (185K installs).
Shall I install it?Only proceed to installation after the user confirms.
If you have the skill content (pasted by the user, retrieved from skills.sh, or constructed from the search result):
write(".agents/skills/<name>/SKILL.md", content)
load_skill(action="reload")write creates the directory if it does not exist. load_skill(action="reload")
refreshes the <available_skills> catalog (plus extensions and manifest) on
the next turn.
First check whether npx is available:
bash(command="which npx")If it is, install the skill. Select a single skill from a multi-skill repo with
the @<skill> suffix (omit it to take the whole repo):
bash(command="npx --yes skills add <owner/repo>@<skill-name> -y")The Skills CLI stages the skill (with its references/, assets/, and
scripts/ subdirs) under .agents/skills/<skill-name>/ — exactly where Horizon
loads skills from — so no move is needed. Just refresh:
load_skill(action="reload")The staged directory name MUST match the name: field in the SKILL.md
frontmatter — _load_skill_from_dir validates that and skips mismatched
skills.
After load_skill(action="reload") returns (look for the new skill in
loaded), tell the user:
The "<name>" skill is now installed. It will appear in your
<available_skills> catalog on the next turn.bash(command="npx --yes skills init my-skill-name")Or skip the CLI and author one manually — write a SKILL.md following the
policy or workspace skills as examples.
| Category | Search terms |
|---|---|
| Web development | react, nextjs, typescript, css, tailwind |
| Testing | testing, jest, playwright, e2e |
| DevOps | deploy, docker, kubernetes, ci-cd |
| Documentation | docs, readme, changelog, api-docs |
| Code quality | review, lint, refactor, best-practices |
| Design | ui, ux, design-system, accessibility |
17f314a
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.