nono-cli 0.63.0

CLI for nono capability-based sandbox
1
2
3
4
5
6
7
8
9
10
11
12
13
//! CLI-owned diagnostic rendering and stderr heuristics.
//!
//! The core `nono::diagnostic` module owns the structured denial records; this
//! module owns all user-facing diagnostic UX: the `nono diagnostic` footer,
//! CLI flag suggestions, policy explanations, and best-effort parsing of a
//! command's own error output.

mod formatter;

pub use formatter::{
    CommandContext, DiagnosticFormatter, DiagnosticMode, ErrorObservation, PolicyExplanation,
    analyze_error_output,
};