aegis-agent-core 1.0.2

Core engine for the Aegis cognitive agent runtime
Documentation
pub mod agent;
pub mod artifacts;
pub mod context_window;
pub mod graph;
pub mod channel;
pub mod compression;
pub mod server_components;
pub mod config;
pub mod config_watcher;
pub mod peer_trust;
pub mod dag;
pub mod discord_channel;
pub mod event_source;
pub mod feishu_channel;
pub mod feishu_crypto;
pub mod feishu_ws;
pub mod http_adapter;
pub mod memory_backend;
pub mod overnight;
pub mod persistent_tasks;
pub mod swap_state;
pub mod model_ctx;
pub mod output_filter;
pub mod plugin;
pub mod slack_channel;
pub mod simplex_channel;
pub mod steer;
pub mod telegram_channel;
pub mod scheduler;
pub mod worker;

pub use context_window::ContextWindowManager;
pub use config_watcher::ConfigWatcher;
pub use memory_backend::{
    CompositeMemory, CompositeMode, FallbackMemory, LocalMemoryBackend, MemoryBackend, MemoryItem,
};
pub use http_adapter::{HttpAdapterHandle, HttpPlatformAdapter};
pub use persistent_tasks::{PersistentTask, PersistentTaskManager, TaskTool};
pub use scheduler::{AffinityScore, Scheduler, WorkerState as SchedulerWorkerState};
pub use worker::{HeartbeatMonitor, TaskProgress};

pub use aegis_types::message;
pub use aegis_tools;
pub use aegis_feedback;
pub use aegis_goals;