Output Modes¶
Default (Rich Markdown)¶
Full interactive experience:
- ASCII banner
- Query panel
- Live status lines as the agent works
- Rendered markdown answer with clickable OSC8 links
- Thread tree showing what was explored
- Summary panel (threads, tool calls, tokens, time)
Requires a terminal that supports ANSI escape codes.
--quiet¶
Plain text answer only — no banner, no progress, no tree. Useful for reading in a pager:
--json¶
Single JSON object on stdout, schema:
{
"answer": "...",
"threads_explored": 7,
"tool_calls_made": 12,
"token_usage": {
"prompt_tokens": 14200,
"completion_tokens": 4220,
"total_tokens": 18420
},
"elapsed_seconds": 14.2,
"incomplete": false,
"permalinks": ["https://mm.company.com/team/pl/abc123", "..."]
}
Ideal for scripts and automation:
--no-color¶
Strips all ANSI codes. Useful when piping to a file or a tool that doesn't handle colour.