Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,15 @@ sandbox@my-assistant:~$ openclaw tui

Send a test message to the agent and verify you receive a response.

> [!NOTE]
> The TUI is best for interactive back-and-forth. If you need the full text of a long response (for example, large code generation output), use the CLI instead:
>
> ```console
> sandbox@my-assistant:~$ openclaw agent --agent main --local -m "<prompt>" --session-id <id>
> ```
>
> This prints the complete response directly in the terminal and avoids relying on the TUI view for long output.

#### OpenClaw CLI

Use the OpenClaw CLI to send a single message and print the response:
Expand Down
8 changes: 8 additions & 0 deletions docs/reference/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ Use this after launch to connect and chat with the agent through the TUI or CLI.
$ nemoclaw my-assistant connect
```

If the TUI view is not a good fit for very long responses, use the CLI form instead:

```console
$ openclaw agent --agent main --local -m "<prompt>" --session-id <id>
```

This is the recommended workaround when you need the full response printed directly in the terminal.

### `openclaw nemoclaw status`

Display sandbox health, blueprint run state, and inference configuration.
Expand Down
Loading