Skip to main content

flowlayer-client-tui

flowlayer-client-tui is the official terminal client for a running server session.

Usage

flowlayer-client-tui
flowlayer-client-tui -addr <host:port>
flowlayer-client-tui -addr <host:port> -token <value>
flowlayer-client-tui -config <path>

Options

FlagMeaning
-addr <host:port>Server address
-token <value>Bearer token
-config <path>Read session.addr and session.token from config
-h, --helpPrint help
--versionPrint version

-v is not supported.

Resolution behavior

Default runtime options without flags:

  • addr: 127.0.0.1:6999
  • token: empty

If -config is provided:

  • read session.addr when present
  • read session.token when present

If CLI flags are explicitly provided, they override config values.

Resolved address must be a valid host:port.

Common invocations

flowlayer-client-tui -addr 127.0.0.1:6999 -token dev-token
flowlayer-client-tui -config ./flowlayer.tui.jsonc

Exit code semantics

  • 0: success, help, or version
  • 2: CLI usage/config resolution error
  • 1: runtime launcher error

Notes

  • positional arguments are rejected
  • unknown flags are rejected with usage help
  • config parsing is strict and fails on unsupported fields

Related docs: Official TUI, Server and TUI Modes, Session Token.