okc 0.1.0

A local-first tool for AI agents to browse, parse, search, and reason over Open Knowledge Format (OKF) repositories
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! File system scanning, change detection, and watching.
//!
//! This module provides:
//!
//! - [`changes`] - [`ChangeDetector`]: Detects added/modified/deleted files between scans
//! - [`walker`] - [`Scanner`]: Parallel filesystem walker for markdown file discovery
//! - [`watcher`] - [`FileWatcher`]: Cross-platform file watcher with debouncing and reconciliation

pub mod changes;
pub mod walker;
pub mod watcher;