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 runner;
13pub mod semantic;
14pub mod snapshots;
15pub mod stats;
16pub mod types;
17
18// Re-export main types for convenience
19pub use bootstrap::{AgentComponentBuilder, AgentComponentSet};
20pub use config::CompactionConfig;
21pub use engine::CompactionEngine;
22pub use semantic::SemanticAnalyzer;
23pub use types::*;