OpenClaw Plugin Installation Guide
Browse Verified Plugins
Our Skill Registry lists 45+ verified, v2-compatible plugins with installation instructions.
Browse PluginsWhat Are Plugins (Skills)?
Plugins extend your agent's capabilities:
- browser-use - Web browsing and automation
- memory-core - Long-term memory storage
- crypto-tracker - Real-time crypto prices
- email-sender - Send emails via SMTP
Installation Methods
Method 1: Using Config Wizard (Recommended)
Our Config Wizard has a plugin selector with descriptions and auto-configuration.
- 1. Open Config Wizard
- 2. Scroll to "Skills" section
- 3. Select plugins from dropdown
- 4. Download generated config
Method 2: Manual Installation
Add plugin IDs to your clawhub.json:
{
"llm": {
"provider": "openai",
"apiKey": "sk-..."
},
"skills": [
"browser-use",
"memory-core",
"crypto-tracker"
]
}Popular Plugins
memory-core
Persistent memory across conversations. Remembers user preferences and context.
View Details āPlugin Configuration
Some plugins require additional config. Example for browser-use:
{
"skills": ["browser-use"],
"skillConfig": {
"browser-use": {
"browser": "chrome",
"headless": false,
"viewport": {
"width": 1920,
"height": 1080
}
}
}
}Verifying Installation
After adding plugins, restart your agent:
openclaw start --config clawhub.jsonYou should see:
ā Loaded skill: browser-use
ā Loaded skill: memory-core
ā Agent started on http://127.0.0.1:3000Troubleshooting
Plugin Not Found
Make sure you're using the exact plugin ID from our Skill Registry.
Version Compatibility
Only use plugins marked "v2 compatible". v1 plugins won't work with OpenClaw v2.
Configuration Errors
Run our Local Doctor to validate:
npx clawkit-doctor@latestBest Practices
Start with essential plugins only
Add more as needed to avoid complexity
Check plugin documentation
Each plugin may have specific requirements
Test in development first
Verify plugins work before deploying
Keep plugins updated
Check Skill Registry for updates
Next Steps
Last Updated: February 6, 2026 | Available Plugins: 45+ verified