OpenClaw 的 Control UI 是一个基于浏览器的管理面板,提供聊天、配置、会话管理和节点控制等功能。
打开 Control UI
openclaw dashboard
这会在浏览器中打开 Control UI。默认地址是 http://localhost:18789。
主要功能
- 聊天:直接在浏览器中与 AI Agent 对话
- 配置管理:查看和修改 Gateway 配置
- 会话管理:查看活跃会话、历史记录
- 节点控制:查看和管理已连接的节点
- 状态监控:Gateway 运行状态、模型使用情况
自定义 Control UI
如果你维护一个本地化或自定义的仪表板构建,可以将 gateway.controlUi.root 指向包含构建好的静态资源和 index.html 的目录。
mkdir -p "$HOME/.openclaw/control-ui-custom"
# 将构建好的静态文件复制到该目录
然后在配置中设置:
{
"gateway": {
"controlUi": {
"enabled": true,
"root": "$HOME/.openclaw/control-ui-custom"
}
}
}