frigg 0.9.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
//! Text-search regression modules covering literal, regex, ripgrep, ordering, candidate discovery, and hybrid recall.

use super::*;

mod candidate_discovery;
mod hybrid;
mod literal;
mod ordering;
mod regex;
mod ripgrep;