vtcode_core/core/agent/
mod.rs

1//! Agent system for intelligent conversation management
2
3pub mod bootstrap;
4pub mod chat;
5pub mod compaction; // Legacy - will be replaced by new modules
6pub mod config;
7pub mod core;
8pub mod engine;
9pub mod examples;
10pub mod intelligence;
11pub mod performance;
12pub mod semantic;
13pub mod snapshots;
14pub mod stats;
15pub mod types;
16
17// Re-export main types for convenience
18pub use bootstrap::{AgentComponentBuilder, AgentComponentSet};
19pub use config::CompactionConfig;
20pub use engine::CompactionEngine;
21pub use semantic::SemanticAnalyzer;
22pub use types::*;