zagens_runtime_orchestrator/lib.rs
1//! Runtime orchestrator — thread/turn persist (D16 E1-b, D17 frozen).
2//!
3//! Live engine orchestration (`RuntimeThreadHost` impl, spawn/monitor, turn
4//! lifecycle) intentionally remains in `zagens-cli`. Further
5//! extraction is **deferred by design** (D17 Architecture Freeze) — the
6//! engine, tools, and route handlers form an internally co-located unit
7//! that is not a candidate for crate-level splitting. This crate is the
8//! stable boundary for SQLite thread storage, pricing aggregation, and
9//! `RuntimeThreadManager` persistence helpers.
10
11pub mod engine;
12pub mod models;
13pub mod pricing;
14pub mod runtime_threads;
15pub mod thread_store_sqlite;
16pub mod usage_aggregate;