[pitboss] sweep after phase 31: 1 deferred items resolved

This commit is contained in:
pitboss 2026-05-15 20:51:20 -05:00
parent 77d40900aa
commit 93e4764e3c
3 changed files with 18 additions and 0 deletions

View file

@ -272,6 +272,17 @@ pub enum Commands {
#[arg(long, help_heading = "Output")]
quiet: bool,
/// Print the dynamic-verifier trace to stderr at end-of-verify.
///
/// When dynamic verification is enabled, the verifier records a
/// per-finding [`crate::dynamic::trace::VerifyTrace`]. Setting this
/// flag flushes every recorded `TraceEvent` to stderr after each
/// verdict, matching the stream that already lands in the repro
/// bundle at `expected/trace.jsonl`. Off by default so non-interactive
/// scans stay quiet.
#[arg(long, help_heading = "Output")]
verbose: bool,
/// Exit with code 1 if any finding meets or exceeds this severity
///
/// Useful for CI gating. Example: --fail-on HIGH