Skip to main content

tailtriage_cli/
lib.rs

1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3
4//! Contract note: CLI artifact loading requires non-empty `requests`, while
5//! [`analyze::analyze_run`] can analyze an in-memory [`tailtriage_core::Run`]
6//! that has zero requests.
7//!
8/// Heuristic triage analyzer and text-report rendering.
9pub mod analyze;
10/// Artifact loading and validation helpers for CLI workflows.
11pub mod artifact;