plugins

plugins

3.6 plugins - 插件系统 plugins 模块管理插件的加载和启用。这里是你的"扩展商店":

{ “plugins”: { “entries”: { “feishu”: {“enabled”: true} }, “load”: { “paths”: [ “C:\Users\xxx\AppData\Roaming\npm\node_modules\openclaw-cn\extensions\feishu” ] } } } 插件管理命令:

列出已安装插件

openclaw plugins list

安装新插件

openclaw plugins install @clawdbot/voice-call

启用/禁用插件

openclaw plugins enable voice-call openclaw plugins disable voice-call 💡 插件安装后需要重启 Gateway 才能生效,修改 entries 配置同样需要重启。别问为什么没反应,问就是没重启!

4.4 启用/禁用插件 临时禁用某个插件而不删除配置:

“plugins”: { “entries”: { “voice-call”: {“enabled”: false}, “feishu”: {“enabled”: true} } } 或者使用 CLI 命令快速切换,无需手动编辑文件。懒人必备!