engram-core 0.19.0

AI Memory Infrastructure - Persistent memory for AI agents with semantic search
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Watcher daemon — monitors directories, browser history, and app focus,
//! then stores observations as Engram memories.
//!
//! Enable with the `watcher` feature flag:
//! ```toml
//! [features]
//! watcher = ["dep:toml"]
//! ```

pub mod app_focus;
pub mod browser;
pub mod config;
pub mod fs_watcher;

pub use config::WatcherConfig;