> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crewship.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# TUI

> Real-time Bubble Tea dashboard — Mission Control for running missions, approvals, and the live journal.

# TUI

`cmd/crewship/cmd_tui.go` opens a full-screen real-time dashboard built on Bubble Tea. Lightweight wiring file — all model/view code lives under `internal/cli/tui`. The dashboard shows running missions/runs, pending approvals, and a live journal stream side-by-side.

## `crewship tui`

No flags. Resolves the server URL via the same `cli.ResolveServer` helper every other command uses (`--server`, env, then config).

```bash theme={null}
crewship tui
```

### Keys

| Key           | Action             |
| ------------- | ------------------ |
| `q`, `Ctrl-C` | Quit.              |
| `r`           | Force refresh.     |
| `Tab`         | Cycle panel focus. |

## See also

* [`crewship watch`](/cli/watch) — narrower: just the live journal stream.
* [`crewship inbox`](/cli/inbox) — paginated, terminal-native (no full-screen UI).
* [`crewship approvals`](/cli/approvals) — what the approvals panel surfaces.
