惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
爱范儿
爱范儿
美团技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
博客园_首页
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园 - Franky
量子位
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
docs(tui): document local config repair flow (#69995) (th...
fuller-stack · 2026-04-22 · via Recent Commits to openclaw:main

@@ -1,5 +1,5 @@

11

---

2-

summary: "Terminal UI (TUI): connect to the Gateway from any machine"

2+

summary: "Terminal UI (TUI): connect to the Gateway or run locally in embedded mode"

33

read_when:

44

- You want a beginner-friendly walkthrough of the TUI

55

- You need the complete list of TUI features, commands, and shortcuts

@@ -10,6 +10,8 @@ title: "TUI"

10101111

## Quick start

121213+

### Gateway mode

14+1315

1. Start the Gateway.

14161517

```bash

@@ -32,6 +34,22 @@ openclaw tui --url ws://<host>:<port> --token <gateway-token>

32343335

Use `--password` if your Gateway uses password auth.

343637+

### Local mode

38+39+

Run the TUI without a Gateway:

40+41+

```bash

42+

openclaw chat

43+

# or

44+

openclaw tui --local

45+

```

46+47+

Notes:

48+49+

- `openclaw chat` and `openclaw terminal` are aliases for `openclaw tui --local`.

50+

- `--local` cannot be combined with `--url`, `--token`, or `--password`.

51+

- Local mode uses the embedded agent runtime directly. Most local tools work, but Gateway-only features are unavailable.

52+3553

## What you see

36543755

- Header: connection URL, current agent, current session.

@@ -108,6 +126,10 @@ Session lifecycle:

108126

- `/settings`

109127

- `/exit`

110128129+

Local mode only:

130+131+

- `/auth [provider]` opens the provider auth/login flow inside the TUI.

132+111133

Other Gateway slash commands (for example, `/context`) are forwarded to the Gateway and shown as system output. See [Slash commands](/tools/slash-commands).

112134113135

## Local shell commands

@@ -118,6 +140,48 @@ Other Gateway slash commands (for example, `/context`) are forwarded to the Gate

118140

- Local shell commands receive `OPENCLAW_SHELL=tui-local` in their environment.

119141

- A lone `!` is sent as a normal message; leading spaces do not trigger local exec.

120142143+

## Repair configs from the local TUI

144+145+

Use local mode when the current config already validates and you want the

146+

embedded agent to inspect it on the same machine, compare it against the docs,

147+

and help repair drift without depending on a running Gateway.

148+149+

If `openclaw config validate` is already failing, start with `openclaw configure`

150+

or `openclaw doctor --fix` first. `openclaw chat` does not bypass the invalid-

151+

config guard.

152+153+

Typical loop:

154+155+

1. Start local mode:

156+157+

```bash

158+

openclaw chat

159+

```

160+161+

2. Ask the agent what you want checked, for example:

162+163+

```text

164+

Compare my gateway auth config with the docs and suggest the smallest fix.

165+

```

166+167+

3. Use local shell commands for exact evidence and validation:

168+169+

```text

170+

!openclaw config file

171+

!openclaw docs gateway auth token secretref

172+

!openclaw config validate

173+

!openclaw doctor

174+

```

175+176+

4. Apply narrow changes with `openclaw config set` or `openclaw configure`, then rerun `!openclaw config validate`.

177+

5. If Doctor recommends an automatic migration or repair, review it and run `!openclaw doctor --fix`.

178+179+

Tips:

180+181+

- Prefer `openclaw config set` or `openclaw configure` over hand-editing `openclaw.json`.

182+

- `openclaw docs "<query>"` searches the live docs index from the same machine.

183+

- `openclaw config validate --json` is useful when you want structured schema and SecretRef/resolvability errors.

184+121185

## Tool output

122186123187

- Tool calls show as cards with args + results.

@@ -143,6 +207,7 @@ Other Gateway slash commands (for example, `/context`) are forwarded to the Gate

143207144208

## Options

145209210+

- `--local`: Run against the local embedded agent runtime

146211

- `--url <url>`: Gateway WebSocket URL (defaults to config or `ws://127.0.0.1:<port>`)

147212

- `--token <token>`: Gateway token (if required)

148213

- `--password <password>`: Gateway password (if required)

@@ -155,6 +220,7 @@ Other Gateway slash commands (for example, `/context`) are forwarded to the Gate

155220156221

Note: when you set `--url`, the TUI does not fall back to config or environment credentials.

157222

Pass `--token` or `--password` explicitly. Missing explicit credentials is an error.

223+

In local mode, do not pass `--url`, `--token`, or `--password`.

158224159225

## Troubleshooting

160226

@@ -174,4 +240,6 @@ No output after sending a message:

174240

## Related

175241176242

- [Control UI](/web/control-ui) — web-based control interface

243+

- [Config](/cli/config) — inspect, validate, and edit `openclaw.json`

244+

- [Doctor](/cli/doctor) — guided repair and migration checks

177245

- [CLI Reference](/cli) — full CLI command reference