# Launch the TUI (default)altimate
# Run a prompt non-interactivelyaltimaterun"analyze my most expensive queries"# Start with a specific agentaltimate--agentanalyst
Note:altimate-code still works as a backward-compatible alias for all commands.
Enables all streaming optimizations: smooth rendering, line-at-a-time buffering, and 100-column width cap. Recommended for a Claude Code-like experience. Equivalent to setting ALTIMATE_SMOOTH_STREAMING=true ALTIMATE_LINE_STREAMING=true ALTIMATE_CONTENT_MAX_WIDTH=100.
ALTIMATE_SMOOTH_STREAMING
Uses lightweight <code> rendering during LLM streaming, then swaps to rich markdown after completion. Reduces text jumps and scroll jitter. Included in ALTIMATE_CALM_MODE.
ALTIMATE_LINE_STREAMING
Buffers LLM output and reveals one complete line at a time (on \n). Gives a calm, steady flow. Remaining text flushes on message completion or abort. Included in ALTIMATE_CALM_MODE.
ALTIMATE_CONTENT_MAX_WIDTH
Cap text content width in columns (e.g. 100). Improves readability on wide screens. Automatically disabled on small terminals. Set to 100 by ALTIMATE_CALM_MODE.
For a Claude Code-like streaming experience, add to your shell profile:
exportALTIMATE_CALM_MODE=true
Or use individual flags for fine-grained control:
# Smooth rendering only (no line buffering)exportALTIMATE_SMOOTH_STREAMING=true# Line buffering only (no rendering changes)exportALTIMATE_LINE_STREAMING=true# Custom width cap (e.g., 80 columns)exportALTIMATE_CONTENT_MAX_WIDTH=80
# Pipe inputecho"explain this SQL"|altimaterun
# With a specific modelaltimaterun--modelanthropic/claude-sonnet-4-6"optimize my warehouse"# Print logs for debuggingaltimate--print-logs--log-levelDEBUGrun"test query"# Disable tracing for a single runaltimaterun--no-trace"quick question"
For CI pipelines and headless automation, see CI & Automation.
Every run command automatically saves a trace file (a recording of the agent session) with the full session details, including generations, tool calls, tokens, cost, and timing. See Trace for configuration options.
# List recent tracesaltimatetracelist
# View a trace in the browseraltimatetraceview<session-id>