Skip to main content

CodebaseBridge

Trait CodebaseBridge 

Source
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.

Provided Methods§

Source

fn find_similar_code(&self, signature: &str, max_results: usize) -> Vec<String>

Source

fn validate_pattern_against_codebase( &self, pattern_template: &str, ) -> Result<bool, String>

Implementors§