dejavu/lib.rs
1//! Dejavu — a local output-reduction proxy for coding agents.
2//!
3//! Dejavu intercepts common shell commands via `PATH` shims, runs the real
4//! command, and returns a compact/diffed view to the agent while preserving the
5//! exact exit code. It reduces what the agent *reads*, never what the shell
6//! *executes*.
7
8pub mod agent;
9pub mod cli;
10pub mod commands;
11pub mod config;
12pub mod env;
13pub mod error;
14pub mod exec;
15pub mod paths;
16pub mod reduce;
17pub mod repo;
18pub mod runtime;
19pub mod state;
20pub mod store;
21pub mod util;