Managing OpenClaw Skills
Complete step-by-step tutorial for installing, updating, and managing OpenClaw skills from ClawHub
Complete step-by-step tutorial for installing, updating, and managing OpenClaw skills from ClawHub
Reference Documentation: For comprehensive skills information, see the Skills Reference Guide. This tutorial provides hands-on, step-by-step instructions for managing skills.
Skills are extensions that add functionality to OpenClaw. With 5,000+ community-built skills available on ClawHub, you can extend OpenClaw's capabilities without writing code.
Types of Skills:
For creating your own skills, see the Creating Your First Skill Tutorial.
Explore the ClawHub skills registry to find skills you need:
Visit the ClawHub skills registry:
https://www.clawhub.ai/skills
Browse skills by category, search by name, or filter by popularity.
You can also ask OpenClaw to find and install skills for you:
You: "Find a skill for controlling Spotify"
OpenClaw: [Searches ClawHub, finds relevant skills, offers to install]
You: "Install the Spotify skill"
OpenClaw: [Installs the skill automatically]
You: "Install this repo as a skill and use it to analyze this X thread" (with a GitHub link)
OpenClaw: [Can install the repo as a skill and run it]
You can give OpenClaw a GitHub repo URL and ask it to install that repo as a skill—useful for community skills that aren’t yet on ClawHub or for trying a specific version.
Install skills using the ClawHub CLI:
npx clawdhub@latest install <skill-name>
Example: Install the Sonos CLI skill:
npx clawdhub@latest install sonoscli
Install multiple skills at once:
npx clawdhub@latest install sonoscli spotify hue
After installation, verify the skill is installed:
openclaw skills list
You should see your newly installed skill in the list.
View all installed skills using the CLI:
openclaw skills list
Output Example:
Installed Skills:
- browser
- filesystem
- sonoscli
- spotify
- hue
- calendar
This shows all skills currently available to your OpenClaw agent.
Keep your skills up to date with the latest versions:
npx clawdhub@latest install <skill-name> --force
The --force flag reinstalls the skill, updating it to the latest version.
Currently, ClawHub doesn't have a built-in update checker. To check for updates:
To update all skills, you'll need to reinstall each one:
# List installed skills first
openclaw skills list
# Then reinstall each skill
npx clawdhub@latest install sonoscli --force
npx clawdhub@latest install spotify --force
# ... repeat for each skill
Remove skills you no longer need:
Skills are stored in your workspace directory. To remove a skill:
# Remove skill directory
rm -rf ~/clawd/skills/<skill-name>
# Verify removal
openclaw skills list
Example: Remove the sonoscli skill:
rm -rf ~/clawd/skills/sonoscli
openclaw skills list
⚠️ Security Warning: ClawHub is an open repository where anyone can upload skills. Malicious skills have been discovered that attempt to steal cryptocurrency, access sensitive data, or compromise your system.
Always review skills before installation:
For more security information, see our Security Guide.
Keep your skills organized for easier management:
Skills are stored in ~/clawd/skills/. You can organize them by:
Keep notes on your installed skills:
openclaw skills list~/clawd/skills/sudo if permission issues occurFor more troubleshooting help, see our Troubleshooting Guide.
Now that you can manage skills: