frigg 0.9.2

Frigg gives AI agents local, source-backed code search and navigation without sending whole repositories through every prompt.
Documentation
//! Watch runtime orchestration that keeps indexed state fresh while request handlers stay focused
//! on serving search and navigation work. This isolates filesystem supervision from the MCP and
//! search surfaces, while still letting them share one background freshness loop.
//!
//! Semantic map:
//! - `repository` — per-root watch identity, ignore rules, and startup freshness probes.
//! - `scheduler` — debounced index queue with manifest-fast and semantic-followup classes.
//! - `supervisor` — lease-gated filesystem watcher and background index dispatcher.

#[path = "watch/repository.rs"]
mod repository;
#[path = "watch/scheduler.rs"]
mod scheduler;
#[path = "watch/supervisor.rs"]
mod supervisor;
#[cfg(test)]
#[path = "watch/tests.rs"]
mod tests;

pub use scheduler::WatchRepositoryQueueSnapshot;
pub use supervisor::{
    RepositoryCacheInvalidationCallback, WatchEvent, WatchEventReporter, WatchRuntime,
    maybe_start_watch_runtime, maybe_start_watch_runtime_with_reporter,
};

#[cfg(test)]
pub(crate) use crate::workspace_ignores::build_root_ignore_matcher;
#[cfg(test)]
use repository::{
    WatchedRepository, latest_manifest_is_valid, repository_relative_watch_path,
    should_ignore_watch_path, startup_refresh_status,
};
#[cfg(test)]
use scheduler::{
    MAX_DEBOUNCE_DELAY_MULTIPLIER, ScheduledRefresh, WatchRefreshClass, WatchSchedulerState,
};