Discover and install agent skills from the open ecosystem. Use when you encounter an unfamiliar domain, framework, or workflow that you lack specialized knowledge about, or when your coordinator suggests searching for skills before starting a task.
63
73%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Critical
Do not install without reviewing
Fix and improve this skill with Tessl
tessl review fix ./manager/agent/copaw-worker-agent/skills/find-skills/SKILL.mdThis skill helps you discover and install skills from the open agent skills ecosystem.
Worker is completely isolated and cannot access any admin's personal sensitive data. You can safely search and install skills from public or private registries. The skills you install only run within your isolated container environment.
Use this skill when the user:
The Skills CLI (skills) is the package manager for the open agent skills ecosystem. Skills are modular packages that extend agent capabilities with specialized knowledge, workflows, and tools.
If skills command is not found, install it: npm install -g skills
Resolve the script from local skill paths. Do not hardcode container absolute paths in chat or task outputs:
FIND_SKILLS_SCRIPT=""
for candidate in \
"./skills/find-skills/scripts/agentteams-find-skill.sh" \
"./active_skills/find-skills/scripts/agentteams-find-skill.sh" \
"./find-skills/scripts/agentteams-find-skill.sh"; do
if [ -x "$candidate" ]; then
FIND_SKILLS_SCRIPT="$candidate"
break
fi
done
test -n "$FIND_SKILLS_SCRIPT" || { echo "find-skills script not found" >&2; exit 1; }Key commands:
"${FIND_SKILLS_SCRIPT}" find [query] - Search for relevant skills"${FIND_SKILLS_SCRIPT}" install <skill> - Install a skillskills check - Check for skill updatesskills update - Update all installed skillsBrowse skills at: https://skills.sh/
SKILLS_API_URL # Skills registry API endpoint (default: nacos://market.agentteams.io:80/public)Can be configured by admin to point to an enterprise-private registry.
When a user asks for help with something, identify:
Run the find command with a relevant query:
"${FIND_SKILLS_SCRIPT}" find [query]For example:
"${FIND_SKILLS_SCRIPT}" find react performance"${FIND_SKILLS_SCRIPT}" find pr review"${FIND_SKILLS_SCRIPT}" find changelogThe command will return results like:
Install with ./skills/find-skills/scripts/agentteams-find-skill.sh install <skill>
vercel-react-best-practices
└ React and Next.js performance guidanceCritical: Always use the exact install command shown in search results. Never guess or shorten the package name or command, because that may fail.
If the user already gave you a concrete skill name and asked to import it from the market, you can install it directly with this skill instead of doing a separate search first:
"${FIND_SKILLS_SCRIPT}" install <skill>For example:
"${FIND_SKILLS_SCRIPT}" install remotion-best-practices"${FIND_SKILLS_SCRIPT}" install github-operationsIf the provided name looks ambiguous or you are not sure about the exact package name, search first and then copy the exact install command from the results.
When you find relevant skills, present them to the user with:
Example response:
I found a skill that might help! The "remotion-best-practices" skill provides
best practices for Remotion video creation in React.
To install it:
"${FIND_SKILLS_SCRIPT}" install remotion-best-practicesIf the user wants to proceed, you can install the skill for them:
"${FIND_SKILLS_SCRIPT}" install <skill>The default install location for skills add -g is runtime-managed. Prefer the install command printed by this skill and then use the file-sharing skill if your coordinator asks you to sync updates.
When searching, consider these common categories:
| Category | Example Queries |
|---|---|
| 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 |
| Productivity | workflow, automation, git |
vercel-labs/agent-skills or ComposioHQ/awesome-claude-skillsIf no relevant skills exist:
skills initExample:
I searched for skills related to "xyz" but didn't find any matches.
I can still help you with this task directly! Would you like me to proceed?
If this is something you do often, you could create your own skill:
skills init my-xyz-skillagentteams-find-skill.sh is the resource that belongs to this skill. Resolve it into FIND_SKILLS_SCRIPT first so your command does not depend on hidden runtime paths.
785c2db
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.