pub trait CodebaseBridge: Send + Sync {
// Provided methods
fn find_similar_code(
&self,
signature: &str,
max_results: usize,
) -> Vec<String> { ... }
fn validate_pattern_against_codebase(
&self,
pattern_template: &str,
) -> Result<bool, String> { ... }
}Expand description
Bridge to agentic-codebase for code-aware pattern operations.