这篇不讲概念,只给可执行命令。
目标:让你 10 分钟内完成“可用、可查、可恢复”。
OpenClaw 常用命令(极简实战版)

0. 使用原则
先保活:网关先正常 再排障:状态与日志闭环 后扩展:模型技能最后加
1) 网关保活(最高频)

# 看网关状态
openclaw gateway status
# 启动网关
openclaw gateway start
# 停止网关
openclaw gateway stop
# 重启网关
openclaw gateway restart
用法:服务异常先
status,改配置后restart。
2) 诊断排障(四步)

# 看系统总览
openclaw status
# 看健康状态
openclaw health
# 自动诊断
openclaw doctor
# 查看日志
openclaw logs
顺序固定:
status → health → doctor → logs。
3) 初始化配置(新机必跑)

# 初始化环境
openclaw setup
# 交互式配置
openclaw configure
# 读取绑定值
openclaw config get gateway.bind
# 校验配置
openclaw config validate
上线前只看一条:
config validate必须通过。
4) 消息链路(验证)

# 发送测试消息
openclaw message send --target <id> --message "Hi"
# 查看会话
openclaw sessions
# 调用并投递
openclaw agent --to <target> --message "Run summary" --deliver
目标:确认“能发出、能执行、能回传”。
5) 能力扩展(最后做)
# 查看模型
openclaw models
# 查看技能
openclaw skills
# 查看插件
openclaw plugins
# 查看通道
openclaw channels
别一上来装一堆。先把前四块跑稳。
6) 每日开工清单(可复制)
# 网关状态
openclaw gateway status
# 系统总览
openclaw status
# 健康检查
openclaw health
异常时:
# 自动诊断
openclaw doctor
# 查看日志
openclaw logs
链路测试:
# 投递链路测试
openclaw message send --target <id> --message "ping"
结论
OpenClaw 的关键不是命令数量,而是执行顺序。
把这 10 条固化成 SOP,你的系统稳定性会明显提升。
关键词:OpenClaw、常用命令、网关、排障、自动化、龙虾
夜雨聆风