Install
openclaw skills install unified-find-skillsHelps users discover and install agent skills from skills.sh, clawhub.com, and tessl.io. Use when the user asks to find a skill for a task, extend agent capa...
openclaw skills install unified-find-skillsThis skill helps you discover and install skills from three registries:
clawhub CLI)Use this skill when the user:
Search all available registries. If clawhub CLI is not installed, skip that registry.
When a user asks for help with something, identify:
Check which CLIs are available and search in parallel:
# skills.sh (always available via npx)
npx skills find [query] --limit 5
# clawhub (only if installed)
if command -v clawhub &> /dev/null; then
clawhub search "[query]" --limit 5
fi
# tessl.io (via web scraping)
curl -s "https://tessl.io/registry/discover?contentType=skills" | grep -o 'name:"[^"]*"' | head -10
For example:
Note on clawhub: Requires clawhub CLI installed. Install with npm install -g clawhub if not available.
Note on tessl.io: The tessl registry doesn't have a simple CLI search command. You can:
tessl skill search [query] (interactive mode only)When you find relevant skills, present them organized by registry with:
For skills.sh results:
For clawhub results:
For tessl.io results:
Example response:
I found some skills that might help!
**From skills.sh:**
- "vercel-react-best-practices" - React and Next.js performance optimization guidelines from Vercel Engineering
Install: npx skills add vercel-labs/agent-skills@vercel-react-best-practices
Learn more: https://skills.sh/vercel-labs/agent-skills/vercel-react-best-practices
**From clawhub:**
- "react-expert v0.1.0" - React Expert
Install: clawhub install react-expert
**From tessl.io:**
- "react-doctor" - Diagnose and fix React codebase health issues
Browse: https://tessl.io/registry/discover?contentType=skills
Install: tessl install <skill-name> (requires tessl CLI)
If the user wants to proceed with a skill:
For skills.sh skills:
npx skills add <owner/repo@skill> -g -y
The -g flag installs globally (user-level) and -y skips confirmation prompts.
For clawhub skills:
clawhub install <slug>
Optionally specify version:
clawhub install <slug> --version <version>
For tessl.io skills:
tessl install <skill-name>
Install from GitHub:
tessl install github:user/repo
| Feature | skills.sh | clawhub.com | tessl.io |
|---|---|---|---|
| Search format | npx skills find <query> | clawhub search "<query>" | Browse web or tessl skill search |
| Install format | npx skills add <owner/repo@skill> | clawhub install <slug> | tessl install <skill-name> |
| Versioning | Git-based (owner/repo@skill) | Semantic versioning (vX.Y.Z) | Semantic versioning |
| Browse at | https://skills.sh/ | https://clawhub.ai/ | https://tessl.io/registry/discover |
| CLI required? | No (npx) | Yes (clawhub) | Optional (tessl) |
| Updates | npx skills update | clawhub update <slug> or --all | tessl update |
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-skillsnpm install -g clawhub if not availableIf no relevant skills exist in any available registry:
Example:
I searched all available registries 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:
- With skills.sh: npx skills init my-xyz-skill
- With tessl.io: tessl skill new --name "My X Skill" --description "..."
If a user wants to use clawhub but doesn't have it installed:
npm install -g clawhub
For tessl.io:
npm install -g tessl