Installing Skills
Add new capabilities to OpenClaw by installing skills.
Installation Methods
Via Chat Command
The simplest way to install skills:
/skill install web-searchOpenClaw will:
- Download the skill
- Configure any required settings
- Enable the skill
Via Configuration
Add skills in your configuration:
# .env
ENABLED_SKILLS=web-search,calendar,code-analysisVia Admin Dashboard
If using managed hosting:
- Go to Settings > Skills
- Browse available skills
- Click Install
Configuring Skills
Some skills require additional configuration:
API Keys
# Web Search
GOOGLE_API_KEY=your-google-api-key
GOOGLE_CSE_ID=your-custom-search-engine-id
# Calendar
GOOGLE_CALENDAR_CREDENTIALS={"type":"service_account",...}
# Email
GMAIL_OAUTH_TOKEN=your-oauth-tokenPermissions
Control what skills can do:
# Allow skills to make external API calls
SKILL_ALLOW_EXTERNAL_REQUESTS=true
# Allow skills to write files
SKILL_ALLOW_FILE_WRITE=falseManaging Skills
List Installed Skills
/skills listCheck Skill Status
/skill status web-searchUpdate Skills
/skill update web-searchRemove Skills
/skill remove web-searchTroubleshooting
Skill not working
- Check the skill is installed:
/skills list - Verify configuration:
/skill status [name] - Check logs for errors
- Ensure required API keys are set
Permission denied
Some skills require elevated permissions. Check your plan includes the skill, or upgrade to access it.
API errors
- Verify API keys are correct
- Check rate limits haven’t been exceeded
- Ensure external services are accessible