Skip to content

Operations commands

Reference

This page is part of the unreleased 0.2.0 operating guide.

These tables cover the core operating surface. Run a command with --help for its final-head parser output. Paths passed to client commands are resolved from the workspace unless the help says otherwise.

Command Purpose
plato Start the TUI when standard input and output are terminals
plato --tui Explicitly start the TUI
plato [--config FILE] [--yolo] "QUESTION" Run one question through the host server
plato -c "QUESTION" Continue the latest workspace session
plato --remote THREAD_ID Attach a TUI to an existing thread on the same host
plato --reduced-motion Start the TUI with a static working indicator
plato --voice-config FILE Start the TUI with exact client-only voice configuration

--remote cannot be combined with --yolo. TUI mode cannot be combined with a question, --db, -c, or a subcommand. --voice-config is TUI-only.

Command Purpose
plato replay Replay the latest registered workspace session from its SQLite ledger
plato replay --run RUN_ID Replay one run from the registered workspace ledger
plato replay FILE Replay one JSONL file directly
plato replay --db Explicitly select the registered workspace ledger
plato replay --db=PATH [--run RUN_ID] Replay an explicit SQLite ledger; a path value requires =

Replay cannot be combined with --config, --voice-config, --yolo, -c, --tui, --remote, or a question. --run requires a SQLite ledger; FILE and --db are mutually exclusive.

Command Purpose
plato thread spawn --model MODEL --reasoning-effort EFFORT [--cwd DIR] [--parent THREAD_ID] [--approval-policy prompt|yolo] Propose a durable thread, then answer its [y/N/c] admission prompt
plato thread list Print every durable thread in the selected workspace joined with current server state as JSON, one per line
plato thread status THREAD_ID Print one durable thread and current state as JSON
plato thread send THREAD_ID --controller CONTROLLER_ID [--turn TURN_ID] MESSAGE... Start an idle turn or steer the active turn owned by that controller
plato thread attach THREAD_ID [--from-offset OFFSET] Stream ordered thread events as JSON lines until interrupted
plato thread stop THREAD_ID Stop the thread and active child through the server lifecycle

Reasoning effort accepts none, minimal, low, medium, high, xhigh, or max. Approval policy accepts prompt or yolo; the default is prompt. --cwd defaults to the workspace directory.

Command Purpose
platonic serve Run the one-per-host server in the foreground
platonic status [--workspace DIR] [--session SESSION_ID] [--config FILE] Read authoritative JSON status; workspace defaults to .
platonic shutdown [--workspace DIR] Shut down the host server only when it is idle
platonic workspace create NAME DIR Register a named canonical workspace directory
platonic workspace list List registered workspaces
platonic workspace status WORKSPACE_ID Read one workspace by its server-minted ID

platonic status, platonic shutdown, and workspace commands also accept a local --socket PATH where their help lists it. That is an explicit same-host endpoint, not a cross-host transport.

Command Purpose
plato-tui [--workspace DIR] Attach a terminal client to the existing host server
plato-tui --run RUN_ID Initially display a specific run transcript
plato-tui --socket PATH Attach to an explicit local endpoint
plato-tui --config PATH Pass a config path to daemon-started unattached runs
plato-tui --voice-config FILE Load exact client-only voice configuration
plato-tui --reduced-motion Use a static working indicator

Unlike plato, standalone plato-tui never starts, supervises, restarts, or stops platonic serve.

Continue with the daily workflows or TUI controls.