frigg 0.6.0

Frigg gives AI agents local, source-backed code search and navigation without sending whole repositories through every prompt.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Graph channel entry point for hybrid search.
//!
//! Re-exports symbol-graph expansion that turns lexical seeds into precise graph-channel hits via
//! projected relations and on-demand file analysis.

use super::*;

use super::projection_service::ProjectedGraphContext;

#[path = "graph_channel/internal.rs"]
mod internal;

pub(in crate::searcher) use internal::*;