nexo-core 0.1.1

Agent runtime: event bus, sessions, plugin trait, heartbeat, A2A delegation.
Documentation
pub mod agent;
pub mod config_reload;
pub mod config_watch;
pub mod heartbeat;
pub mod link_understanding;
pub mod runtime_snapshot;
pub mod session;
pub mod telemetry;

pub use config_reload::{ConfigReloadCoordinator, ReloadOutcome, ReloadRejection};
pub use runtime_snapshot::RuntimeSnapshot;

pub use agent::{
    Agent, AgentBehavior, AgentContext, AgentMessage, AgentPayload, AgentRouter, AgentRuntime,
    Command, DelegationTool, ExtensionHook, ExtensionTool, HeartbeatTool, HookHandler, HookOutcome,
    HookRegistry, InboundMessage, LlmAgentBehavior, MemoryTool, MockPlugin, MyStatsTool, NoOpAgent,
    Plugin, PluginRegistry, Response, RunTrigger, SessionLogsTool, ToolHandler, ToolRegistry,
    WhatDoIKnowTool, WhoAmITool,
};