From ede2ffee84fe6b68bc16ce3e98ef347ac91c668a Mon Sep 17 00:00:00 2001 From: enyst Date: Wed, 11 Feb 2026 01:22:35 +0000 Subject: [PATCH 1/5] docs(cli): replace TUI with CLI terminology Co-authored-by: openhands --- openhands/usage/cli/gui-server.mdx | 2 +- openhands/usage/cli/quick-start.mdx | 4 ++-- openhands/usage/cli/terminal.mdx | 6 +++--- openhands/usage/cli/web-interface.mdx | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/openhands/usage/cli/gui-server.mdx b/openhands/usage/cli/gui-server.mdx index 5c896c65..7abeaa4e 100644 --- a/openhands/usage/cli/gui-server.mdx +++ b/openhands/usage/cli/gui-server.mdx @@ -98,7 +98,7 @@ Press `Ctrl+C` in the terminal where you started the server to stop it gracefull | Feature | `openhands serve` | `openhands web` | |---------|-------------------|-----------------| -| Interface | Full web GUI | TUI in browser | +| Interface | Full web GUI | CLI in browser | | Dependencies | Docker required | None | | Resources | Full container (~2GB) | Lightweight | | Features | All GUI features | CLI features only | diff --git a/openhands/usage/cli/quick-start.mdx b/openhands/usage/cli/quick-start.mdx index d0fe1dde..36d4abad 100644 --- a/openhands/usage/cli/quick-start.mdx +++ b/openhands/usage/cli/quick-start.mdx @@ -9,9 +9,9 @@ The OpenHands CLI provides multiple ways to interact with the OpenHands AI agent | Mode | Command | Best For | |------|---------|----------| -| [Terminal (TUI)](/openhands/usage/cli/terminal) | `openhands` | Interactive development | +| [Terminal (CLI)](/openhands/usage/cli/terminal) | `openhands` | Interactive development | | [Headless](/openhands/usage/cli/headless) | `openhands --headless` | Scripts & automation | -| [Web Interface](/openhands/usage/cli/web-interface) | `openhands web` | Browser-based TUI | +| [Web Interface](/openhands/usage/cli/web-interface) | `openhands web` | Browser-based CLI | | [GUI Server](/openhands/usage/cli/gui-server) | `openhands serve` | Full web GUI | | [IDE Integration](/openhands/usage/cli/ide/overview) | `openhands acp` | Zed, VS Code, JetBrains | diff --git a/openhands/usage/cli/terminal.mdx b/openhands/usage/cli/terminal.mdx index ad97f641..5a0ff86a 100644 --- a/openhands/usage/cli/terminal.mdx +++ b/openhands/usage/cli/terminal.mdx @@ -1,11 +1,11 @@ --- -title: Terminal (TUI) -description: Use OpenHands interactively in your terminal with the text-based user interface +title: Terminal (CLI) +description: Use OpenHands interactively in your terminal with the command-line interface --- ## Overview -The Terminal User Interface (TUI) is the default mode when you run `openhands`. It provides a rich, interactive experience directly in your terminal. +The Command Line Interface (CLI) is the default mode when you run `openhands`. It provides a rich, interactive experience directly in your terminal. ```bash openhands diff --git a/openhands/usage/cli/web-interface.mdx b/openhands/usage/cli/web-interface.mdx index 9d3e0fdc..b4a0b340 100644 --- a/openhands/usage/cli/web-interface.mdx +++ b/openhands/usage/cli/web-interface.mdx @@ -15,7 +15,7 @@ openhands web ``` -This is different from `openhands serve`, which launches the full GUI web application. The web interface runs the same TUI you see in the terminal, just in a browser. +This is different from `openhands serve`, which launches the full GUI web application. The web interface runs the same CLI experience you see in the terminal, just in a browser. ## Basic Usage @@ -97,7 +97,7 @@ openhands web --host 0.0.0.0 --port 8080 | Feature | `openhands web` | `openhands serve` | |---------|-----------------|-------------------| -| Interface | TUI in browser | Full web GUI | +| Interface | CLI in browser | Full web GUI | | Dependencies | None | Docker required | | Resources | Lightweight | Full container | | Best for | Quick access | Rich GUI experience | From 5f09978299cd96e62b41262668f8d65ce72f5f2a Mon Sep 17 00:00:00 2001 From: Engel Nyst Date: Wed, 11 Feb 2026 02:44:46 +0100 Subject: [PATCH 2/5] Apply suggestion from @enyst --- openhands/usage/cli/gui-server.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/usage/cli/gui-server.mdx b/openhands/usage/cli/gui-server.mdx index 7abeaa4e..5c896c65 100644 --- a/openhands/usage/cli/gui-server.mdx +++ b/openhands/usage/cli/gui-server.mdx @@ -98,7 +98,7 @@ Press `Ctrl+C` in the terminal where you started the server to stop it gracefull | Feature | `openhands serve` | `openhands web` | |---------|-------------------|-----------------| -| Interface | Full web GUI | CLI in browser | +| Interface | Full web GUI | TUI in browser | | Dependencies | Docker required | None | | Resources | Full container (~2GB) | Lightweight | | Features | All GUI features | CLI features only | From 962fdc4f19e2ae943ac01fba3b4e130d068a5dce Mon Sep 17 00:00:00 2001 From: Engel Nyst Date: Wed, 11 Feb 2026 02:45:36 +0100 Subject: [PATCH 3/5] Apply suggestion from @enyst --- openhands/usage/cli/quick-start.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/usage/cli/quick-start.mdx b/openhands/usage/cli/quick-start.mdx index 36d4abad..7845ec1e 100644 --- a/openhands/usage/cli/quick-start.mdx +++ b/openhands/usage/cli/quick-start.mdx @@ -11,7 +11,7 @@ The OpenHands CLI provides multiple ways to interact with the OpenHands AI agent |------|---------|----------| | [Terminal (CLI)](/openhands/usage/cli/terminal) | `openhands` | Interactive development | | [Headless](/openhands/usage/cli/headless) | `openhands --headless` | Scripts & automation | -| [Web Interface](/openhands/usage/cli/web-interface) | `openhands web` | Browser-based CLI | +| [Web Interface](/openhands/usage/cli/web-interface) | `openhands web` | Browser-based TUI | | [GUI Server](/openhands/usage/cli/gui-server) | `openhands serve` | Full web GUI | | [IDE Integration](/openhands/usage/cli/ide/overview) | `openhands acp` | Zed, VS Code, JetBrains | From 940ecad0cc8684aac8b9224f0913719b16fc8c49 Mon Sep 17 00:00:00 2001 From: Engel Nyst Date: Wed, 11 Feb 2026 02:46:07 +0100 Subject: [PATCH 4/5] Apply suggestion from @enyst --- openhands/usage/cli/web-interface.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/usage/cli/web-interface.mdx b/openhands/usage/cli/web-interface.mdx index b4a0b340..992783ce 100644 --- a/openhands/usage/cli/web-interface.mdx +++ b/openhands/usage/cli/web-interface.mdx @@ -97,7 +97,7 @@ openhands web --host 0.0.0.0 --port 8080 | Feature | `openhands web` | `openhands serve` | |---------|-----------------|-------------------| -| Interface | CLI in browser | Full web GUI | +| Interface | TUI in browser | Full web GUI | | Dependencies | None | Docker required | | Resources | Lightweight | Full container | | Best for | Quick access | Rich GUI experience | From df2ba31e668e0dcdbc4489d828d803cae0cc4fc4 Mon Sep 17 00:00:00 2001 From: enyst Date: Wed, 11 Feb 2026 01:49:15 +0000 Subject: [PATCH 5/5] docs(cli): use terminal UI wording Co-authored-by: openhands --- openhands/usage/cli/gui-server.mdx | 2 +- openhands/usage/cli/quick-start.mdx | 2 +- openhands/usage/cli/web-interface.mdx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/openhands/usage/cli/gui-server.mdx b/openhands/usage/cli/gui-server.mdx index 5c896c65..adaaebdf 100644 --- a/openhands/usage/cli/gui-server.mdx +++ b/openhands/usage/cli/gui-server.mdx @@ -98,7 +98,7 @@ Press `Ctrl+C` in the terminal where you started the server to stop it gracefull | Feature | `openhands serve` | `openhands web` | |---------|-------------------|-----------------| -| Interface | Full web GUI | TUI in browser | +| Interface | Full web GUI | Terminal UI in browser | | Dependencies | Docker required | None | | Resources | Full container (~2GB) | Lightweight | | Features | All GUI features | CLI features only | diff --git a/openhands/usage/cli/quick-start.mdx b/openhands/usage/cli/quick-start.mdx index 7845ec1e..c86211d9 100644 --- a/openhands/usage/cli/quick-start.mdx +++ b/openhands/usage/cli/quick-start.mdx @@ -11,7 +11,7 @@ The OpenHands CLI provides multiple ways to interact with the OpenHands AI agent |------|---------|----------| | [Terminal (CLI)](/openhands/usage/cli/terminal) | `openhands` | Interactive development | | [Headless](/openhands/usage/cli/headless) | `openhands --headless` | Scripts & automation | -| [Web Interface](/openhands/usage/cli/web-interface) | `openhands web` | Browser-based TUI | +| [Web Interface](/openhands/usage/cli/web-interface) | `openhands web` | Browser-based terminal UI | | [GUI Server](/openhands/usage/cli/gui-server) | `openhands serve` | Full web GUI | | [IDE Integration](/openhands/usage/cli/ide/overview) | `openhands acp` | Zed, VS Code, JetBrains | diff --git a/openhands/usage/cli/web-interface.mdx b/openhands/usage/cli/web-interface.mdx index 992783ce..ed87d11a 100644 --- a/openhands/usage/cli/web-interface.mdx +++ b/openhands/usage/cli/web-interface.mdx @@ -15,7 +15,7 @@ openhands web ``` -This is different from `openhands serve`, which launches the full GUI web application. The web interface runs the same CLI experience you see in the terminal, just in a browser. +This is different from `openhands serve`, which launches the full GUI web application. The web interface runs the same terminal UI experience you see in the terminal, just in a browser. ## Basic Usage @@ -97,7 +97,7 @@ openhands web --host 0.0.0.0 --port 8080 | Feature | `openhands web` | `openhands serve` | |---------|-----------------|-------------------| -| Interface | TUI in browser | Full web GUI | +| Interface | Terminal UI in browser | Full web GUI | | Dependencies | None | Docker required | | Resources | Lightweight | Full container | | Best for | Quick access | Rich GUI experience |