vtcode-core 0.98.6

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
//! Self-healing diagnostics including predictive monitors and recovery playbooks.

mod health;
mod recovery;

pub use health::{DiagnosticReport, HealthSample, PredictiveMonitor};
pub use recovery::{LabeledAction, RecoveryAction, RecoveryPlaybook};