Plugins

Plugins

OpenClaw supports a plugin system that allows extending core functionality without modifying the main codebase.

Available 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-name

Plugin configuration

Plugins are configured under plugins.entries in your OpenClaw config:

{
  plugins: {
    entries: {
      "plugin-name": {
        enabled: true,
        config: {
          // Plugin-specific config
        },
      },
    },
  },
}

See also