frigg 0.10.1

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
14
15
16
//! Graph channel entry point for hybrid search.
//!
//! Expands lexical seeds into **hybrid ranking** hits via durable path-relation projections and/or
//! an **ephemeral** on-demand `SymbolGraph` (file analysis). This pipeline shares relation types
//! with MCP navigation (`crates/cli/src/graph`) but is **not** the navigation graph: it does not
//! run `go_to_definition` / `incoming_calls` / SCIP resolution. Agent-facing honesty:
//! `SearchHybridMatch.graph_mode` + ranking_note (EXP-nav-hybrid-graph-channel).

use super::*;

use super::projection_service::ProjectedGraphContext;

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

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