pub trait CodebaseBridge: Send + Sync {
// Provided methods
fn get_context(&self, _path: &str) -> Option<String> { ... }
fn analyze_impact(&self, _change: &str) -> Result<Vec<String>, String> { ... }
}Expand description
Codebase bridge for AgenticCodebase integration.