kowalski-code-agent 0.5.0

Kowalski Code Agent: A Rust-based agent for interacting with Ollama models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod agent;
// pub mod analyzer;  // Uses tree-sitter, not needed with shared tools
pub mod config;
// pub mod documentation;  // Uses tree-sitter, not needed with shared tools
pub mod error;
// pub mod parser;  // Uses tree-sitter, not needed with shared tools
// pub mod refactor;  // Uses tree-sitter, not needed with shared tools

pub use agent::CodeAgent;
pub use config::CodeAgentConfig;

// Re-export common types
pub use kowalski_core::config::Config;
pub use kowalski_core::error::KowalskiError;
pub use kowalski_core::logging;