Plugins
Plugins
Plugins
OpenClaw supports a plugin system that allows extending core functionality without modifying the main codebase.
Available plugins
- Plugin Manifest - Plugin manifest and JSON schema requirements
- Voice Call Plugin - Outbound and inbound voice calls via Twilio/Telnyx/Plivo
- Zalo Personal Plugin - QR login and messaging via native zca-js
- Plugin Agent Tools - Write agent tools in a plugin
- Community Plugins - High-quality community-maintained plugins
Installing plugins
# Install from npm
openclaw plugins install @openclaw/plugin-name
# Install from local folder
openclaw plugins install ./path/to/plugin
# List installed plugins
openclaw plugins list
# Remove a plugin
openclaw plugins remove plugin-namePlugin configuration
Plugins are configured under plugins.entries in your OpenClaw config:
{
plugins: {
entries: {
"plugin-name": {
enabled: true,
config: {
// Plugin-specific config
},
},
},
},
}