OpenClaw升级后飞书发送消息没反应
OpenClaw升级很频繁,每次升级后都会遇到一些问题。这次升级为2026.3.7版本后飞书发送消息又没有反应了,终端报错信息如下:
feishu failed to load from /usr/lib/node_modules/openclaw/extensions/feishu/index.ts: Error: Cannot find module '@larksuiteoapi/node-sdk'
此时,如果执行频道配置命令,会提示下载安装飞书插件,不会出现飞书配置向导:
openclaw channels add
如果按照提示重新下载插件,新下载的飞书插件会保存在配置目录:
~/.openclaw/extensions/feishu
这会导致与内置的飞书插件重复冲突,因此需要删除:
rm -rf .openclaw/extensions/feishu
进入OpenClaw内置的飞书插件目录:
cd /usr/lib/node_modules/openclaw/extensions/feishu
执行安装命令:
npm install
重启OpenClaw网关:
openclaw gateway restart

