matrixcode_core/agent/context/mod.rs
1//! Agent context management.
2//!
3//! This module handles context-related concerns:
4//! - Project overview, memory summary, skills
5//! - System prompt building
6//! - CodeGraph tool management
7
8pub mod manager;
9
10// TODO: Add these in Phase 4
11// pub mod compression;
12// pub mod pending;
13
14pub use manager::AgentContext;