aegis-agent-core 1.0.3

Core engine for the Aegis cognitive agent runtime
Documentation
// OMX Runtime: Event-Sourced State Machine
// Implements: Authority Lease, Dispatch Queue, Mailbox

pub mod authority;
pub mod dispatch;
pub mod engine;
pub mod handoff;
pub mod watchdog;
pub mod router;
pub mod wisdom;
pub mod delegation;

pub use authority::AuthorityLease;
pub use dispatch::{DispatchRecord, DispatchStatus};
pub use engine::{RuntimeEngine, RuntimeCommand, RuntimeEvent};
pub use handoff::HandoffDocument;
pub use watchdog::TaskWatchdog;
pub use router::CategoryRouter;
pub use wisdom::WisdomNotepad;
pub use delegation::DelegationPrompt;