The practical difference
Core tools already ship with OpenClaw. Plugins extend the platform and can introduce commands, agent tools, integrations, and background services. In the official docs, the first command worth using is:
openclaw plugins listThe cleanest path
- Check what is already loaded with
openclaw plugins list. - Install one official plugin only if it serves the first workflow.
- Restart the gateway and configure the plugin in its own entry.
openclaw plugins install @openclaw/voice-call
openclaw plugins enable voice-call
openclaw plugins doctorAn important security detail
The OpenClaw docs are very clear: native plugins run in-process with the gateway and should be treated as trusted code. That means a bad plugin can destabilize the entire system.
- install only plugins you understand or trust
- do not add plugins before you have one clear working flow
- use
plugins.allowor a minimal selection when the setup gets more serious
When plugins actually help
They help when the use case requires a capability that is not already in the core, such as a specific integration or optional channel. They do not help just because you want “more AI”. The right order stays the same: first OpenClaw, then models, then one agent, then only the plugins that really matter.