matrixcode-core 0.4.37

MatrixCode Agent Core - Pure logic, no UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Agent core components.
//!
//! This module contains the core building blocks of the Agent:
//! - [`config`]: Configuration constants (max iterations, retries, etc.)
//! - [`state`]: State management (messages, token counts, pending inputs)
//! - [`executor`]: Execution engine (main loop logic) - TODO

pub mod config;
pub mod state;

// TODO: Add this in Phase 7
// pub mod executor;

pub use config::AgentConfig;
pub use config::MAX_ITERATIONS;
pub use state::AgentState;