vetto 0.2.14

Daemon-less sandbox + security layer for AI coding agents (Landlock/Seatbelt, TUI statusline, post-session audit reports)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Optional diagnostics exposed by explicit actions only: `doctor` flags and
//! the `verify` boundary battery. Probing is never implicit in policy loading
//! or sandbox setup.

pub mod agent_check;
pub mod environment;
pub mod fix;

pub use agent_check::{probe, probe_agent, AgentCheck, ProbeStatus};
pub use environment::{detect_environment, EnvironmentInfo};
pub use fix::{print_fixes, DoctorFix};

// The probe spawn machinery is unix-only (Captured stdio contract).
#[cfg(unix)]
pub mod probe;

#[cfg(unix)]
pub use probe::{run_probe_script, ProbeOutput};