oris_evokernel/lib.rs
1//! EvoKernel orchestration: mutation capture, validation, capsule construction, and replay-first reuse.
2
3pub mod adapters;
4pub mod confidence_daemon;
5mod core;
6pub mod pipeline_integration;
7pub mod signal_extractor;
8
9/// Experimental external agent contract facade re-exported through EvoKernel.
10pub mod agent_contract {
11 pub use oris_agent_contract::*;
12}
13
14/// Experimental local EVU and reputation accounting facade re-exported through EvoKernel.
15pub mod economics {
16 pub use oris_economics::*;
17}
18
19/// Experimental Oris Evolution Network protocol facade re-exported through EvoKernel.
20pub mod evolution_network {
21 pub use oris_evolution_network::*;
22}
23
24/// Experimental governor policy facade re-exported through EvoKernel.
25pub mod governor {
26 pub use oris_governor::*;
27}
28
29/// Experimental OUSL spec compiler facade re-exported through EvoKernel.
30pub mod spec_contract {
31 pub use oris_spec::*;
32}
33
34pub use core::*;
35pub use pipeline_integration::{detect_from_intake_events, intake_events_to_extractor_input};