CLI 命令
终端 UI
openclaw tui
打开连接到 Gateway 网关的终端 UI,或以本地嵌入 模式运行它。
相关内容:
- 终端 UI 指南:终端 UI
说明:
chat和terminal是openclaw tui --local的别名。--local不能与--url、--token或--password组合使用。tui会在可能的情况下解析已配置的 Gateway 网关认证 SecretRefs,用于 token/password 认证(env/file/exec提供商)。- 当从已配置的智能体工作区目录内部启动时,终端 UI 会自动为会话键默认值选择该智能体(除非
--session被显式设置为agent:<id>:...)。 - 本地模式直接使用嵌入式智能体运行时。大多数本地工具都可用,但仅限 Gateway 网关的功能不可用。
- 本地模式会在终端 UI 的命令界面中添加
/auth [provider]。 - 插件审批关卡在本地模式下仍然适用。需要审批的工具会在终端中提示你作出决定;不会因为未涉及 Gateway 网关而被静默自动批准。
示例
openclaw chat
openclaw tui --local
openclaw tui
openclaw tui --url ws://127.0.0.1:18789 --token <token>
openclaw tui --session main --deliver
openclaw chat --message "Compare my config to the docs and tell me what to fix"
# when run inside an agent workspace, infers that agent automatically
openclaw tui --session bugfix
配置修复循环
当当前配置已经通过校验,并且你希望嵌入式 智能体检查它、将其与文档对照,并帮助你在同一个终端中完成修复时,请使用本地模式:
如果 openclaw config validate 已经失败,请先使用 openclaw configure 或
openclaw doctor --fix。openclaw chat 不会绕过无效配置保护。
openclaw chat
然后在终端 UI 内部运行:
!openclaw config file
!openclaw docs gateway auth token secretref
!openclaw config validate
!openclaw doctor
使用 openclaw config set 或 openclaw configure 应用有针对性的修复,然后
重新运行 openclaw config validate。参见 终端 UI 和 配置。