matrixcode_core/agent/core/mod.rs
1//! Agent core components.
2//!
3//! This module contains the core building blocks of the Agent:
4//! - [`config`]: Configuration constants (max iterations, retries, etc.)
5//! - [`state`]: State management (messages, token counts, pending inputs)
6//! - [`executor`]: Execution engine (main loop logic) - TODO
7
8pub mod config;
9pub mod state;
10
11// TODO: Add this in Phase 7
12// pub mod executor;
13
14pub use config::AgentConfig;
15pub use config::MAX_ITERATIONS;
16pub use state::AgentState;