Skip to content

CLI Usage

Running thndrs without a subcommand launches the TUI.

Terminal window
cargo run

Use --cwd to select the workspace used for context loading, display, and read-only tools.

Terminal window
cargo run -- --cwd /path/to/repo

The default model is umans-coder.

Terminal window
cargo run -- --model umans-glm-5.2

Supported model names are currently:

  • umans-coder
  • umans-glm-5.2

Use --websearch to choose the Umans web-search backend.

Terminal window
cargo run -- --websearch native
cargo run -- --websearch exa
cargo run -- --websearch none

native is the default. none disables Umans server-side search.

Use --print-prompt to print the assembled prompt bundle and lowered provider messages without calling the provider.

Terminal window
cargo run -- --print-prompt

The output redacts secrets.

Use --tick-rate-ms to tune UI tick timing. The TUI always renders inline without entering the alternate screen; --no-alt-screen is kept as a compatibility no-op. Use --no-mouse to leave terminal mouse selection and native scrollback uncaptured.