xz_agent_core/lib.rs
1#![deny(missing_docs)]
2#![forbid(unsafe_code)]
3
4//! xz-agent: Agent engine abstraction layer.
5//!
6//! This crate defines the core abstractions for the xiao-zhu ecosystem's
7//! agent engine framework.
8
9/// Error types for the agent engine.
10pub mod error;
11
12/// Core trait definitions.
13pub mod traits;
14
15/// Shared type definitions.
16pub mod types;
17
18/// Core engine loop implementation.
19pub mod engine;