frigg 0.4.2

Local-first MCP server for code understanding.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod execution;
mod plan;
mod semantic;
mod store;

#[cfg(test)]
pub(crate) use plan::build_reindex_plan_for_tests;
pub use plan::{
    ManifestSnapshotPlan, ReindexDiagnostics, ReindexMode, ReindexPlan, ReindexSummary,
    SemanticRefreshMode, SemanticRefreshPlan,
};
#[cfg(test)]
pub(crate) use semantic::reindex_repository_with_semantic_executor;
pub use semantic::{
    reindex_repository, reindex_repository_with_runtime_config,
    reindex_repository_with_runtime_config_and_dirty_paths,
};
pub use store::ManifestStore;