matrixcode-core 0.4.39

MatrixCode Agent Core - Pure logic, no UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Agent context management.
//!
//! This module handles context-related concerns:
//! - Project overview, memory summary, skills
//! - System prompt building
//! - CodeGraph tool management

pub mod manager;

// TODO: Add these in Phase 4
// pub mod compression;
// pub mod pending;

pub use manager::AgentContext;