Skip to main content

vtcode_core/diagnostics/
mod.rs

1//! Self-healing diagnostics including predictive monitors and recovery playbooks.
2
3mod health;
4mod recovery;
5
6pub use health::{DiagnosticReport, HealthSample, PredictiveMonitor};
7pub use recovery::{LabeledAction, RecoveryAction, RecoveryPlaybook};