kandil_code 0.1.0

Intelligent development platform (CLI + TUI + Multi-Agent System)
1
2
3
4
5
6
7
8
9
10
//! Adapters for external services
//! 
//! Contains implementations for interacting with external services
//! such as AI providers, Git, and file systems.

pub mod ai;
pub mod git;
pub mod file;

pub use ai::tracked::TrackedAI;