Audience: users exploring TUI/CLI flows; skim first.
Nav: Docs index · Quickstart · Tools Reference · Web UI
This guide highlights Maestro’s user-facing capabilities across the TUI, CLI, and Web UI. Keep the Tools Reference open for full slash command syntax.
Navigation: Interfaces · TUI essentials · CLI mode · Prompt queue · Background tasks · Telemetry & diagnostics
- TUI — launch
maestrowith no arguments (orbun run cli --from source). Rich editor, slash command palette, and footer telemetry. - CLI — pass one or more messages as arguments (
maestro "Read package.json" "Summarize dependencies"). Supports JSON/RPC output for automation. - Web UI — start with
maestro web; see Web UI Guide for parity notes and shortcuts. - Conductor (Chrome extension) — browser-automation surface that connects to the Maestro web server via the Conductor Bridge (
CONDUCTOR_BRIDGE.md). - Ambient Agent — always-on GitHub daemon that watches repos and ships PRs (see Ambient Agent Design).
The layout has four regions: chat timeline, status indicators, editor input, and footer. Key workflows:
Type / in the editor for completions. Highlights:
/plan— open or update the TODO/plan view (persists with the session)./run <script>— run workspace scripts with streamed output./sessions— list or load transcripts; format details live in Sessions./report— collect info for bug reports or feedback.- Prompt templates — drop markdown files into
.maestro/prompts/*.md(project) or~/.maestro/prompts/*.md(user), then run them via/prompts <name> …or directly as/<name> …(if the name doesn’t collide with a built-in command). Markdown files in.maestro/commands/*.mdare also treated as prompt templates.
See Tools Reference for every command and flag. Availability by surface (TUI vs Web) is summarized in Web UI Guide.
- Multi-line editor with autocomplete, slash hints, and keyboard shortcuts (Ctrl+K palette,
@file search, Shift+Enter newline). - Footer shows cwd, token usage, prompt queue depth, plan hints, and bash mode state.
- Use
/filesor@search to jump to files without leaving the chat.
Runtime badges condense environment + agent state into quick signals:
approvals:auto|prompt|fail,sandbox:default|danger-full-access,queue:all(2),alerts:3think:medium,mcp:2(14),bg:1!1,motion:reduced,compact:autoenv:docker|podman|wsl|ssh|flatpak|musl,term:tmux|screen|jetbrains
- Set
MAESTRO_REDUCED_MOTION=1to reduce animated UI elements (auto-enabled by default on SSH/tmux/screen). - Set
MAESTRO_DISABLE_ANIMATIONS=1to hard-disable all TUI animations (spinners, typing dots, shimmer effects).
Prefix a message with ! to enter persistent bash mode.
- Inputs go straight to your shell (
cdis handled as a builtin that tracks cwd). - Output appears in a framed “bash” block with exit code and cwd.
- Up/Down arrow keys cycle command history; Shift+Enter inserts literal newlines.
- Type
exit,quit, orleaveto return to normal chat. The footer shows “Bash mode active — type exit to leave.” - Use
!! <command>for a one-off shell command without entering bash mode.
- Supports
--mode jsonand--mode rpcfor scripting, plus provider/model flags (--provider,--model,--api-key). --continue,--session, and--no-sessionalign with the session model described in Sessions.- Approval behavior follows Safety (
--approval-mode prompt|auto|fail). - Use
/framework <id>to set a default stack (fastapi,express,node); add--workspaceto scope it to the current repo;/framework noneclears. Precedence: policy (locked) > policy > env override > env default > workspace.maestro/workspace.json> user~/.maestro/default-framework.json> none.
When the agent is busy, additional prompts are enqueued. The footer shows the count (“2 prompts queued”), and /queue lists, cancels, or reprioritizes pending items. Bash mode bypasses the queue for immediate shell access. Details: Prompt Queue.
Use /steer <message> to interrupt the current run and push a new prompt to the front of the queue.
- Run long commands with
/background_tasks action=start …; check/background_tasks action=listor/background_tasks action=logswithout leaving chat. - Health telemetry feeds the footer and diagnostics view, showing recent failures, restarts, and limit breaches.
- User controls live in
~/.maestro/agent/background-settings.json(or a custom path viaMAESTRO_BACKGROUND_SETTINGS). - Secrets in summaries/log previews are redacted automatically; avoid putting raw tokens directly in commands.
npm run telemetry:report(or/telemetry) summarizes tool success rates per log file./diag(or/diagnostics) aggregates pending approvals, git status, telemetry state, and model configuration in a single panel.- Use Safety for firewall, sandboxing, and approval flows; pair with Models to understand provider defaults and overrides.
Keep this guide handy when onboarding teammates so they can discover the TUI’s power-user features quickly.
For lower-level component APIs, see packages/tui/README.md.