kowalski_code_agent/lib.rs
1pub mod agent;
2// pub mod analyzer; // Uses tree-sitter, not needed with shared tools
3pub mod config;
4// pub mod documentation; // Uses tree-sitter, not needed with shared tools
5pub mod error;
6// pub mod parser; // Uses tree-sitter, not needed with shared tools
7// pub mod refactor; // Uses tree-sitter, not needed with shared tools
8
9pub use agent::CodeAgent;
10pub use config::CodeAgentConfig;
11
12// Re-export common types
13pub use kowalski_core::config::Config;
14pub use kowalski_core::error::KowalskiError;
15pub use kowalski_core::logging;