OpenShell TUI Development Guide

SkillDev tools

Guides your agent through building and fixing the OpenShell terminal UI, covering its architecture, navigation, theming, and workflow.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the OpenShell TUI Development Guide skill

About this capability

Guide for developing the OpenShell TUI, a ratatui-based terminal UI for the OpenShell platform. Covers architecture, navigation, data fetching, theming, UX conventions, and development workflow. Trigger keywords - term, TUI, terminal UI, ratatui, openshell-tui, tui development, tui feature, tui bug

What this skill tells your AI

The instructions your AI receives, as published by nvidia/openshell in .agents/skills/tui-development/SKILL.md and read by ahel’s review.

Comprehensive reference for any agent working on the OpenShell TUI.

1. Overview

The OpenShell TUI is a ratatui-based terminal UI for the OpenShell platform. It provides a keyboard-driven interface for managing gateways, sandboxes, and logs — the same operations available via the openshell CLI, but with a live, interactive dashboard.

  • Launched via: openshell term or mise run term
  • Crate: crates/openshell-tui/
  • Key dependencies:
    • ratatui (workspace version) — uses frame.size() (not frame.area())
    • crossterm (workspace version) — terminal backend and event polling
    • tonic with TLS — gRPC client for the OpenShell gateway
    • tokio — async runtime for event loop, spawned tasks, and mpsc channels
    • openshell-core — proto-generated types (OpenShellClient, request/response structs)
    • openshell-bootstrap — gateway discovery (list_gateways())
  • Theme: Adaptive dark/light via Theme struct — NVIDIA-branded green accents. Controlled by --theme flag, OPENSHELL_THEME env var, or auto-detection.

2. Domain Object Hierarchy

The data model follows a strict hierarchy: Gateway > Workspace > Sandboxes/Providers/Settings > Logs.

Gateway (discovered via openshell_bootstrap::list_gateways())
  ├── Global Settings (fetched via GetGatewayConfig)
  ├── Global Policy indicator (fetched via ListSandboxPolicies global=true)
  ├── Workspaces (fetched via ListWorkspaces)
  ├── Provider Profiles (fetched via ListProviderProfiles, workspace-scoped)
  ├── Providers (fetched via ListProviders, workspace-scoped)
  │     └── cached ProviderProfile (matched by type + workspace)
  └── Sandboxes (fetched via ListSandboxes, workspace-scoped)
        ├── Policy (fetched via GetSandboxConfig)
        ├── Settings (effective settings with scope, from GetSandboxConfig)
        ├── Draft recommendations (fetched via GetDraftPolicy)
        └── Logs (fetched via GetSandboxLogs + streamed via WatchSandbox)
  • Gateways are discovered from on-disk config via openshell_bootstrap::list_gateways(). Each gateway has a name, endpoint, local/remote flag, and source label.
  • Workspaces are fetched via ListWorkspaces. The user cycles through workspaces with [w], or views all workspaces at once. The current workspace scopes provider and sandbox lists.
  • Provider Profiles are fetched per-workspace via ListProviderProfiles. Profiles are cached in a ProviderProfileCache keyed by (workspace, profile_id) and matched to providers by type. They provide category, credential metadata, endpoint/binary counts, and inference capability.
  • Providers are fetched via ListProviders scoped to the current workspace. Each ProviderListEntry pairs a provider with its optional cached profile. The TUI supports profile-backed create, update, and delete operations.
  • Global Settings are fetched via GetGatewayConfig and displayed in a tabbed pane alongside providers on the dashboard. Each setting is a registered key with a typed value (bool/int/string). Platform-admin access is required; PermissionDenied disables the pane.
  • Sandboxes belong to the active gateway and workspace. Fetched via ListSandboxes with a periodic tick refresh.
  • Sandbox Settings are effective settings returned by GetSandboxConfig, each with a scope (sandbox, global, or unset). Globally-managed settings are blocked from sandbox-level edits.
  • Logs belong to a single sandbox. Initial batch fetched via GetSandboxLogs (500 lines), then live-tailed via WatchSandbox with follow_logs: true.

The title bar always reflects this hierarchy, reading left-to-right from general to specific:

 OpenShell v<version> │ Current Gateway: <name> [source] (<status>) │ Workspace: <name|all> │ <screen/context>

3. Navigation & Screen Architecture

Screens (Screen enum)

Top-level layouts that own the full content area. Each has its own nav bar hints.

ScreenDescriptionModule
SplashBoot screen shown on startup, auto-dismissed after 3 secondsui/splash.rs
DashboardGateway list (top) + providers/settings (middle) + sandbox table (bottom)ui/dashboard.rs
SandboxSingle-sandbox view — metadata (top) + policy/settings/logs/drafts (bottom)ui/sandbox_detail.rs, ui/sandbox_policy.rs, ui/sandbox_settings.rs, ui/sandbox_logs.rs, ui/sandbox_draft.rs

Focus (Focus enum)

Tracks which panel currently receives keyboard input.

FocusScreenDescription
GatewaysDashboardGateway list panel has input focus
ProvidersDashboardProvider list or global settings pane (depends on MiddlePaneTab)
SandboxesDashboardSandbox table panel has input focus
SandboxPolicySandboxPolicy viewer or settings table (depends on SandboxPolicyTab)
SandboxLogsSandboxLog viewer with structured rendering
SandboxDraftSandboxDraft policy recommendations list

Tab enums

Two tab enums control which sub-view renders within a focus area:

  • MiddlePaneTab (Providers | GlobalSettings): toggles the middle dashboard pane between the provider list and the global settings table. Switched with [h/l].
  • SandboxPolicyTab (Policy | Settings): toggles the sandbox bottom pane between the policy viewer and the sandbox settings table. Switched with [h].

Screen dispatch

The top-level ui::draw() function (ui/mod.rs) handles the chrome (title bar, nav bar, command bar) and dispatches to the correct screen module:

match app.screen {
    Screen::Splash => unreachable!(),
    Screen::Dashboard => dashboard::draw(frame, app, chunks[1]),
    Screen::Sandbox => draw_sandbox_screen(frame, app, chunks[1]),
}

Within the Sandbox screen, the top 20% renders sandbox metadata (sandbox_detail), and the bottom 80% dispatches based on focus and tab state:

match app.focus {
    Focus::SandboxLogs => sandbox_logs::draw(frame, app, chunks[1]),
    Focus::SandboxDraft => sandbox_draft::draw(frame, app, chunks[1]),
    _ => match app.sandbox_policy_tab {
        SandboxPolicyTab::Settings => sandbox_settings::draw(frame, app, chunks[1]),
        SandboxPolicyTab::Policy => sandbox_policy::draw(frame, app, chunks[1]),
    },
}

On the dashboard, the middle pane dispatches by MiddlePaneTab:

match app.middle_pane_tab {
    MiddlePaneTab::Providers => providers::draw(frame, app, chunks[1], mid_focused),
    MiddlePaneTab::GlobalSettings => global_settings::draw(frame, app, chunks[1], mid_focused),
}

Layout structure

Every frame renders four vertical regions:

┌─────────────────────────────────────────────┐
│ Title bar (1 row) — brand + gateway + context│
├─────────────────────────────────────────────┤
│                                             │
│ Main content (flexible)                     │
│                                             │
├─────────────────────────────────────────────┤
│ Nav bar (1 row) — context-sensitive key hints│
├─────────────────────────────────────────────┤
│ Command bar (1 row) — `:` command input      │
└─────────────────────────────────────────────┘

Title bar examples

  • Dashboard: >_ OpenShell v<version> | Current Gateway: openshell [local] (Healthy) | Workspace: default | Dashboard
  • Sandbox detail: >_ OpenShell v<version> | Current Gateway: openshell [local] (Healthy) | Workspace: team-a | Sandbox: my-sandbox

Adding a new screen

  1. Add a variant to Screen in app.rs.
  2. Create a new module under src/ui/ with a pub fn draw(frame, app, area).
  3. Add the module declaration in ui/mod.rs.
  4. Add a match arm in ui::draw() to dispatch to the new module.
  5. Add relevant Focus variants if the screen has multiple panels.
  6. Add key handling methods in App for the new focus states.
  7. Add nav bar hints in draw_nav_bar() for the new screen/focus combinations.

4. Data Fetching Pattern

Initial fetch first, then stream

Always grab a batch of initial data so the UI has content immediately, then attach streaming for live updates.

Logs example (spawn_log_stream in lib.rs):

Phase 1: GetSandboxLogs  →  500 initial lines  →  send via Event::LogLines
Phase 2: WatchSandbox(follow_logs: true)  →  live tail  →  send via Event::LogLines

Sandboxes: Fetched via ListSandboxes in a background collection-refresh task scheduled from the 2-second tick, scoped to the current workspace (or all workspaces). Follow next_page_token until empty so the dashboard reflects the complete collection. The NOTES column summarizes active ConfigurationInvalid readiness conditions as Invalid config before port forwards and clears the note on refresh after repair. Full diagnostics remain available through openshell sandbox get <name> -o json. Timed-out provisioning attempts show Provisioning timed out with cleanup pending or compute reclaimed, preserving port forwards. The sandbox detail pane wraps the full configuration error in its Notes field.

Providers: Fetched via ListProviders in the background collection-refresh task. Provider profiles are fetched per-workspace via ListProviderProfiles and cached in a ProviderProfileCache keyed by (workspace, profile_id). Follow each list RPC's next_page_token until empty.

Settings: Global settings are fetched via GetGatewayConfig on each tick. Sandbox settings are fetched alongside the sandbox policy via GetSandboxConfig and refreshed on each tick when viewing a sandbox.

Workspaces: The workspace list is fetched via ListWorkspaces in the background collection-refresh task, following next_page_token until empty.

Only one collection-refresh task may run at a time. Workspace and gateway changes abort the active task, and refresh results carry their gateway/workspace context so stale results are discarded.

Never block the event loop

All network calls must be spawned as async tasks via tokio::spawn. The event loop in lib.rs must remain responsive to keyboard input and rendering at all times.

Pattern:

// Background task sends data back via mpsc channel
let handle = tokio::spawn(async move {
    let result = client.some_rpc(request).await;
    let _ = tx.send(Event::SomeData(result));
});

Loading states

Show "Loading..." while async data is in flight (see sandbox_logs.rs — renders a loading message when filtered is empty and sandbox_log_lines is also empty).

Event channel

Background tasks communicate with the event loop via mpsc::UnboundedSender<Event>. The EventHandler provides a sender() method to clone the transmit handle. There are many Event variants for different async results (log lines, create results, provider CRUD results, setting CRUD results, draft action results, forward warnings):

// In lib.rs
spawn_log_stream(&mut app, events.sender());

// In the spawned task
let _ = tx.send(Event::LogLines(lines));

Access denial handling

Global settings and global policy queries may return PermissionDenied when the user lacks platform-admin access. The TUI sets global_settings_access_denied / global_policy_access_denied flags to stop retrying these calls on subsequent ticks, and clears the corresponding UI state.

gRPC timeouts

All gRPC calls use a 5-second timeout via tokio::time::timeout:

tokio::time::timeout(Duration::from_secs(5), client.health(req)).await

5. Style Guide & Colors

Theme System (theme.rs)

Colors and styles are defined in crates/openshell-tui/src/theme.rs via the Theme struct. The TUI supports dark and light terminal backgrounds.

Theme selection

Theme mode is controlled by three mechanisms (highest priority first):

  1. --theme dark|light|auto CLI flag on openshell term
  2. OPENSHELL_THEME environment variable
  3. Auto-detection via COLORFGBG env var (falls back to dark)

The ThemeMode enum (Auto, Dark, Light) is resolved at startup via theme::detect() before entering raw mode.

Brand colors (theme::brand)
ConstantValueUsage
NVIDIA_GREENColor::Rgb(118, 185, 0)Primary accent (dark theme)
NVIDIA_GREEN_DARKColor::Rgb(80, 140, 0)Primary accent (light theme — darker for contrast)
EVERGLADEColor::Rgb(18, 49, 35)Dark green — borders, title bar bg (dark theme)
MAROONColor::Rgb(128, 0, 0)Pacman chase animation
Theme struct fields

The Theme struct has 16 Style fields, accessed at runtime via app.theme:

FieldDark valueLight valueUsage
textWhite fgNear-black fgDefault body text
mutedWhite + DIMGray fgSecondary info, separators
headingWhite + BOLDNear-black + BOLDPanel titles, names
accentNVIDIA_GREEN fgNVIDIA_GREEN_DARK fgSelected row marker, source labels
accent_boldNVIDIA_GREEN + BOLDNVIDIA_GREEN_DARK + BOLDBrand text, command prompt
selectedBOLD onlyBOLD onlySelected row emphasis
borderEVERGLADE fgLight sage fgUnfocused panel borders
border_focusedNVIDIA_GREEN fgNVIDIA_GREEN_DARK fgFocused panel borders
status_okNVIDIA_GREEN fgNVIDIA_GREEN_DARK fgHealthy, INFO, Ready
status_warnYellow fgDark yellow fgDegraded, WARN, Provisioning
status_errRed fgDark red fgUnhealthy, ERROR
key_hintNVIDIA_GREEN fgNVIDIA_GREEN_DARK fgKeyboard shortcut labels
log_cursorEVERGLADE bgLight green bgSelected log line highlight
clawMAROON + BOLDMAROON + BOLDPacman animation
title_barWhite on EVERGLADE + BOLDNear-black on light green + BOLDTitle bar strip
badgeBlack on NVIDIA_GREEN + BOLDWhite on NVIDIA_GREEN_DARK + BOLDNotification badges
Accessing the theme in draw functions

The Theme is stored on App and accessed via a local alias:

fn draw_my_widget(frame: &mut Frame<'_>, app: &App, area: Rect) {
    let t = &app.theme;
    frame.render_widget(
        Paragraph::new(Span::styled("Hello", t.text)),
        area,
    );
}

For functions that don't take &App (e.g., detail popups, helpers), pass &Theme as a parameter:

fn draw_detail_popup(frame: &mut Frame<'_>, data: &MyData, area: Rect, theme: &Theme) {
    let t = theme;
    // ...
}
Visual conventions
  • Selected row: Green left-border marker on the selected row. Active gateway also gets a green dot.
  • Focused panel: Border changes from border to border_focused style.
  • Status indicators: Green for healthy/ready/info, yellow for degraded/provisioning/warn, red for unhealthy/error.
  • Separators: Muted characters between title bar segments and nav bar sections.
  • Log source labels: "sandbox" source renders in accent (green), "gateway" in muted.

6. UX Conventions

Destructive actions require confirmation

Always show a y/n confirm dialog before delete, stop, or other irreversible operations.

Delete sandbox 'my-sandbox'? [y] Confirm  [Esc] Cancel

The confirm_delete flag in App gates destructive key handling — while true, only y, n, and Esc are processed.

CLI parity

TUI actions should parallel openshell CLI commands so users have familiar mental models:

CLI CommandTUI Equivalent
openshell sandbox listSandbox table on Dashboard
openshell sandbox delete <name>[d] on sandbox detail, then [y] to confirm
openshell sandbox create[c] on sandbox panel to open create form
openshell sandbox connect[s] on sandbox policy view to launch SSH shell
openshell logs <name>[l] on sandbox detail to open log viewer
openshell provider listProvider table on Dashboard (middle pane)
openshell provider create[c] on provider panel
openshell statusStatus in title bar + gateway list

When adding new TUI features, check what the CLI offers and maintain consistency.

Scrollable views follow k9s conventions

Any scrollable content (logs, future long lists) should follow the k9s autoscroll pattern:

  • Autoscroll on by default — when entering a scrollable view, it auto-follows new content
  • Scrolling up pauses — any upward scroll (keyboard or mouse) disables autoscroll
  • f or G re-enables — jump to bottom and resume following
  • Visual indicator — show ● FOLLOWING (green) or ○ PAUSED (yellow) in the panel footer
  • Mouse scroll supportedScrollUp/ScrollDown events move by 3 lines and respect autoscroll state
  • Scroll position shown[current/total] in the panel footer

State is tracked via log_autoscroll: bool on App. The scroll_logs(delta) method handles both keyboard and mouse input uniformly.

Long content: truncate + detail popup

When content can exceed the viewport width (log lines, field lists, etc.):

  • Truncate in the list view — hard-cut at the viewport's inner width and append . This keeps density high and avoids wrapping that breaks the 1-line-per-entry model.
  • Enter opens a detail popup — a centered overlay showing the full untruncated content with word-wrap. Esc or Enter closes it. Track the open state via Option<usize> index.
  • Drop noise in the list view — omit empty fields, remove developer-internal info (like module paths / tracing targets) that the user doesn't need at a glance.
  • Smart field ordering — for known message types (e.g. CONNECT, L7_REQUEST), put the most important fields first and trail with process ancestry / noise. Unknown types sort alphabetically.
  • Show everything in the popup — the detail popup is where target, all fields (including empty ones if useful), and the full message are visible.

This pattern should be reused for any future view with potentially long entries.

Vim-style navigation

KeyAction
j / DownMove selection down
k / UpMove selection up
gJump to top (logs), disables autoscroll
GJump to bottom (logs), re-enables autoscroll
fFollow / re-enable autoscroll (logs)
Tab / BackTabSwitch between panels on Dashboard
EnterSelect / drill into item; open detail popup in logs
EscGo back one level
qQuit (from any screen)
Ctrl+CForce quit

Keyboard-first, mouse-augmented

All actions are accessible via keyboard shortcuts displayed in the nav bar. The nav bar is context-sensitive — it shows different hints depending on the current screen and focus state. Mouse scrolling is supported as a convenience but never required — every action must have a keyboard equivalent.

Command mode

: enters command mode (like vim). The command bar renders at the bottom with a green : prompt and a block cursor. Currently supports:

  • :q / :quit — exit the application

Esc returns to normal mode. Enter executes the command.

Screen-specific key hints

Dashboard (Gateways focus): [Tab] Switch Panel [Enter] Select [j/k] Navigate │ [:] Command [q] Quit

Dashboard (Providers focus): [Tab] Switch Panel [h/l] Switch Tab [j/k] Navigate [Enter] Detail [c] Create [u] Update [d] Delete [w] Workspace │ [:] Command [q] Quit

Dashboard (Global Settings focus): [Tab] Switch Panel [h/l] Switch Tab [j/k] Navigate [Enter] Edit [d] Delete │ [:] Command [q] Quit

Dashboard (Sandboxes focus): [Tab] Switch Panel [j/k] Navigate [Enter] Select [c] Create Sandbox [w] Workspace │ [:] Command [q] Quit

Sandbox (Policy focus): [h] Switch Tab [j/k] Scroll [g/G] Top/Bottom [s] Shell [l] Logs [r] Rules [d] Delete │ [Esc] Back [q] Quit

Sandbox (Settings focus): [h/l] Switch Tab [j/k] Navigate [Enter] Edit [d] Delete │ [Esc] Back [q] Quit

Sandbox (Logs focus): [j/k] Navigate [Enter] Detail [g/G] Top/Bottom [f] Follow [s] Source: <filter> [y] Copy [Y] Copy All [v] Select [r] Rules │ [Esc] Policy [q] Quit

Sandbox (Draft focus): [j/k] Navigate [Enter] Detail [a] Approve [x] Reject [A] Approve All [p] Policy [l] Logs │ [Esc] Back [q] Quit

7. Architecture & Key Files

FilePurpose
crates/openshell-tui/Cargo.tomlCrate manifest — dependencies on openshell-core, openshell-bootstrap, ratatui, crossterm, tonic, tokio
crates/openshell-tui/src/lib.rsEntry point. Event loop, background collection refresh (spawn_list_refresh), gRPC calls (refresh_global_settings, spawn_log_stream, handle_sandbox_delete), gateway switching, mTLS channel building, provider CRUD spawners, settings CRUD spawners, draft approval spawners
crates/openshell-tui/src/app.rsApp state struct, Screen/Focus/InputMode/LogSourceFilter/MiddlePaneTab/SandboxPolicyTab enums, LogLine/GatewayEntry/GlobalSettingEntry/SandboxSettingEntry/ProviderListEntry/ProviderDetailView structs, create sandbox/provider form state, all key handling logic
crates/openshell-tui/src/event.rsEvent enum (Key, Mouse, Tick, Redraw, Resize, LogLines, ListRefreshCompleted, CreateResult, ProviderCreateResult, ProviderDetailFetched, ProviderUpdateResult, ProviderDeleteResult, DraftActionResult, GlobalSettingsFetched, GlobalSettingSetResult, GlobalSettingDeleteResult, SandboxSettingSetResult, SandboxSettingDeleteResult, ForwardWarnings), EventHandler with mpsc channels and crossterm polling
crates/openshell-tui/src/theme.rscolors module (NVIDIA_GREEN, EVERGLADE, BG, FG) and styles module (all Style constants)
crates/openshell-tui/src/clipboard.rsClipboard copy support for log lines
crates/openshell-tui/src/ui/mod.rsTop-level draw() dispatcher, draw_title_bar (with workspace display), draw_nav_bar, draw_command_bar, screen routing, shared setting-edit overlay, modal helpers
crates/openshell-tui/src/ui/dashboard.rsDashboard screen — 3-pane vertical layout: gateway list (25%) + provider/settings middle pane (25%) + sandbox table (50%)
crates/openshell-tui/src/ui/providers.rsProvider list table with profile-aware columns: Name, Category, Type, Credentials, Workspace
crates/openshell-tui/src/ui/global_settings.rsGlobal settings table: Key, Type, Value. Includes edit overlay, confirm-set, and confirm-delete popups
crates/openshell-tui/src/ui/sandboxes.rsReusable sandbox table widget with columns: Name, Status, Created, Age, Image, Workspace, Notes
crates/openshell-tui/src/ui/sandbox_detail.rsSandbox metadata view — name, status, image, created, age, providers, policy version
crates/openshell-tui/src/ui/sandbox_policy.rsPolicy viewer — rendered policy lines with scroll support, tab title
crates/openshell-tui/src/ui/sandbox_settings.rsSandbox settings table: Key, Type, Value, Scope. Includes edit overlay and confirm popups
crates/openshell-tui/src/ui/sandbox_logs.rsStructured log viewer — timestamp, source, level, target, message, key=value fields, scroll position, source filter, visual selection mode, clipboard copy
crates/openshell-tui/src/ui/sandbox_draft.rsDraft policy recommendations — chunk list, detail popup, approve/reject/approve-all flows
crates/openshell-tui/src/ui/create_sandbox.rsCreate sandbox modal form with name, image, command, providers, ports
crates/openshell-tui/src/ui/create_provider.rsCreate provider modal, provider detail popup, update provider form
crates/openshell-tui/src/ui/splash.rsSplash/boot screen

Module dependency flow

Shortened here. Read the whole file on GitHub.

Signals

GitHub stars
9k
Forks
1k
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
tui-development
Source
github.com/nvidia/openshell