Model
查看龙虾的model列表
openclaw models list
更改models
openclaw models set qwen-api/qwen-max
查看日志
openclaw logs --follow
用命令行配置
openclaw onboard
配置聊天
openclaw channels add
重启龙虾
openclaw gateway restart
飞书配置
安装官方插件
npx -y @larksuite/openclaw-lark install
更新插件
npx -y @larksuite/openclaw-lark update
流式输出、开启耗时、状态展示
openclaw config set channels.feishu.streaming true
openclaw config set channels.feishu.footer.elapsed true
openclaw config set channels.feishu.footer.status true
在飞书中发布卡片任务
需要的权限
contact:contact.base:readonly #通讯录只读
application:application:self_manage #查询应用权限
im:chat:read #读取群信息
im:chat.members:read #读取群成员
task:tasklist:write #创建/管理任务清单
Docker 中安装飞书插件
使用图形化 进入到 Exec 中执行。使用命令:Docker exec -it * sh 会失败。
npx -y @larksuite/openclaw-lark install
执行这三个,流式输出、开启耗时、状态展示
openclaw config set channels.feishu.streaming true
openclaw config set channels.feishu.footer.elapsed true
openclaw config set channels.feishu.footer.status true
重启容器即可
bug
openclaw doctor --repair
LaunchAgent 服务绑定的是旧版 node v22.22.1 的路径,而那个版本下的 openclaw 被你卸载了,导致服务启动失败、版本显示异常。
openclaw doctor --repair 做的事情是:把 LaunchAgent 的 node 路径更新为当前默认的 v24.14.0,服务重启后就能正常读取到新版的 openclaw 了。
评论区