Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 1.3 KB

File metadata and controls

17 lines (12 loc) · 1.3 KB

Architecture

Maestro has one product runtime: the canonical Rust maestro executable.

CLI / TUI / headless / hosted runner ─┐
                                      ├─ packages/maestro-rs
Browser / Slack / GitHub adapters ─HTTP─ packages/runtime-gateway-rs
                                      ├─ packages/tui-rs agent core
                                      └─ packages/session-rs local persistence

packages/maestro-rs classifies commands and invokes Rust libraries in-process. packages/tui-rs owns providers, model routing, tools, permissions, session orchestration, hooks, the terminal UI, and the headless protocol. packages/session-rs owns local JSONL sessions, forks, indexes, exports, and file checkpoints; packages/session-history-rs remains the remote redacted transcript adapter. packages/runtime-gateway-rs owns HTTP, SSE, WebSocket, A2A, automation, session, and telemetry routes.

Service adapters may use TypeScript as presentation or transport code. They do not construct agents, load providers, or provide execution fallbacks. They call the Rust runtime gateway.

Release artifacts contain a single native executable per supported platform. The npm package's bin/maestro is a shell selector for the packaged executable and requires no Node.js or Bun runtime.