xz-agent-core 0.10.0

Agent engine abstraction layer — traits, types, and a minimalist CoreEngine loop
Documentation
#![deny(missing_docs)]
#![forbid(unsafe_code)]

//! xz-agent: Agent engine abstraction layer.
//!
//! This crate defines the core abstractions for the xiao-zhu ecosystem's
//! agent engine framework.

/// Error types for the agent engine.
pub mod error;

/// Core trait definitions.
pub mod traits;

/// Shared type definitions.
pub mod types;

/// Core engine loop implementation.
pub mod engine;