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
| Flag | Meaning |
|---|---|
-addr <host:port> | Server address |
-token <value> | Bearer token |
-config <path> | Read session.addr and session.token from config |
-h, --help | Print help |
--version | Print version |
-v is not supported.
Resolution behavior
Default runtime options without flags:
addr:127.0.0.1:6999token: empty
If -config is provided:
- read
session.addrwhen present - read
session.tokenwhen 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 version2: CLI usage/config resolution error1: 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.