Skip to main content

zagens_core/
lib.rs

1//! Core runtime boundaries for the embedded agent engine (turn loop, hosts, pure logic).
2//!
3//! Production turns run via `RuntimeThreadManager` in the sidecar — not legacy CLI `Runtime`.
4
5pub mod approval;
6pub mod capacity;
7pub mod chat;
8pub mod coherence;
9pub mod compaction;
10pub mod context_partition;
11pub mod cycle;
12pub mod engine;
13pub mod error_taxonomy;
14pub mod events;
15pub mod features;
16pub mod long_horizon;
17pub mod lsp;
18pub mod models;
19pub mod project_context;
20pub mod sandbox;
21pub mod scratchpad;
22pub mod session;
23pub mod subagent;
24pub mod task_type;
25pub mod turn;
26pub mod user_input;
27pub mod working_set;
28pub mod workshop;
29
30#[cfg(test)]
31mod test_support;