The CLI in src/main.zig:283-347 accepts only --command, --send, --wait-for, and --screen. The MCP tui_start tool supports additional parameters (args, cols, rows) that the CLI cannot reach.
This means anyone using the binary as a one-shot test tool gets a strictly weaker interface than MCP clients. They can't pass program arguments, can't pick a non-default terminal size, and can't set a wait timeout.
Suggested fix
Add --args <a> <b> ..., --cols <n>, --rows <n>, --timeout-ms <n> flags. Document them in README's CLI section.
The CLI in
src/main.zig:283-347accepts only--command,--send,--wait-for, and--screen. The MCPtui_starttool supports additional parameters (args,cols,rows) that the CLI cannot reach.This means anyone using the binary as a one-shot test tool gets a strictly weaker interface than MCP clients. They can't pass program arguments, can't pick a non-default terminal size, and can't set a wait timeout.
Suggested fix
Add
--args <a> <b> ...,--cols <n>,--rows <n>,--timeout-ms <n>flags. Document them in README's CLI section.