vallum 0.3.0

A Rust CLI proxy between AI agents and your shell — sanitizes secrets, flags prompt injections, strips ANSI, compresses output, audits commands.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// src/lib.rs — library surface so integration tests can exercise internals.
pub mod ansi;
pub mod audit;
pub mod cli;
pub mod config;
pub mod doctor;
pub mod executor;
pub mod fsutil;
pub mod hook;
pub mod install_hook;
pub mod metrics;
pub mod optimizer;
pub mod scrubber;
pub mod stats;
pub mod tokenizer;
pub mod truncator;
pub mod whitespace;