Install
openclaw skills install find-skills-for-clawhubSearch for and discover OpenClaw skills from ClawHub (the official skill registry). Activate when user asks about finding skills, installing skills, or wants to know what skills are available for OpenClaw.
openclaw skills install find-skills-for-clawhubThis skill helps you discover and install OpenClaw skills from the ClawHub registry (https://clawhub.ai).
Use this skill when the user:
The ClawHub CLI is required to search and install skills. Install it globally:
npm i -g clawhub
Or use it via npx (slower but no installation):
npx clawhub search "query"
For searching and installing, login is not required. For publishing your own skills:
clawhub login
clawhub search "query"
Examples:
clawhub search "calendar" - Find calendar-related skillsclawhub search "weather" - Find weather forecasting skillsclawhub search "devops" - Find DevOps and deployment skillsclawhub search "query" --limit 10
Once you find a skill you want to install:
clawhub install <skill-slug>
Example:
clawhub install weather-forecast
Skills are installed into your OpenClaw workspace's skills directory. OpenClaw will automatically load them in the next session.
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, todo |
| APIs & Services | api, rest, graphql, database |
| AI & ML | machine-learning, openai, embeddings |
| Hardware | raspberry-pi, iot, sensors, camera |
As an AI assistant using this skill, follow these steps when a user asks about OpenClaw capabilities:
First, check if clawhub is installed by running:
clawhub --version
If not installed, inform the user and offer to install it:
npm i -g clawhub
Alternatively, you can use npx clawhub (slower but works without installation).
Run the search command with the user's query:
clawhub search "query" --limit 5
Or using npx:
npx clawhub search "query" --limit 5
Typical output format:
Search results for "weather":
1. weather-forecast v1.2.0 (1,234 installs)
- Provides weather forecasts using Open-Meteo API
- Tags: weather, api, forecast
2. weather-alerts v0.5.1 (845 installs)
- Sends weather alerts and notifications
- Tags: weather, alerts, notifications
Install with: clawhub install <skill-slug>
Present results to the user with:
If the user wants to install a skill:
clawhub install <skill-slug>
Or using npx:
npx clawhub install <skill-slug>
If no skills are found:
clawhub initSearch for skills:
clawhub search "weather forecast"
Present results:
Found 3 weather-related skills on ClawHub:
1. weather-forecast (1.2K installs)
- Provides weather forecasts using Open-Meteo API
- Install: `clawhub install weather-forecast`
2. weather-alerts (845 installs)
- Sends weather alerts and notifications
- Install: `clawhub install weather-alerts`
3. travel-weather (312 installs)
- Weather planning for travel itineraries
- Install: `clawhub install travel-weather`
Offer installation:
Would you like me to install any of these skills for you?
Check for updates to all installed skills:
clawhub update --all
See what skills you have installed:
clawhub list
If you create a skill you want to share:
clawhub publish ./my-skill-folder --slug my-skill --name "My Skill" --version 1.0.0
Back up your local skills to ClawHub:
clawhub sync --all
npm i -g clawhubnpx clawhub insteadclawhub init<workspace>/skills by defaultThis skill helps bridge the gap between users' needs and the growing ecosystem of OpenClaw skills on ClawHub.