vetto 0.2.9

Daemon-less sandbox + security layer for AI coding agents (Landlock/Seatbelt, TUI statusline, post-session audit reports)
Documentation
//! Reusable vetto components.
//!
//! The binary in [`main`](../main.rs) is intentionally a thin session
//! orchestrator.  Keeping the implementation modules behind this library
//! boundary lets integration tests, benchmarks, and downstream tooling use
//! the same policy, sandbox, observation, PTY, and report code as the CLI.

pub mod audit;
#[doc(hidden)]
pub mod bench_support;
pub mod classifier;
pub mod cli;
pub mod config;
pub mod cred_broker;
pub mod daemon;
pub mod doctor;
pub mod error;
pub mod events;
pub mod exit_codes;
pub mod history;
pub mod init;
pub mod logger;
pub mod mcp;
pub mod multi;
pub mod notify;
pub mod onboard;
pub mod policy;
pub mod profile;
#[cfg(unix)]
pub mod pty;
pub mod redteam;
pub mod remote;
pub mod report;
pub mod rescue;
pub mod sandbox;
pub mod shim;
pub mod telemetry;
pub mod tour;
#[cfg(unix)]
pub mod tui;
pub mod verify;
pub mod version;
pub mod watch;