frigg 0.9.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
14
//! Navigation MCP tools: references, definitions, declarations, implementations, and call hierarchy.
//!
//! Exposes definition, declaration, reference, implementation, and call-hierarchy tools under
//! shared navigation caches and budgets.

use super::*;
use crate::domain::WorkloadFallbackReason;
use crate::domain::model::ReferenceMatchKind;
use crate::mcp::types::NavigationMode;

mod call_hierarchy;
mod impact_bundle;
mod location;
mod references;