ripr 0.8.0

Find static mutation-exposure gaps before expensive mutation testing
Documentation
//! Render the first-run pilot packet summary.
//!
//! `ripr pilot` joins existing repo-exposure and agent packet artifacts with
//! one small operator summary. For preview-language first-use paths, it may
//! project already-supported diff findings into the summary while keeping the
//! output advisory and source-edit-free.

mod commands;
mod ranking;
mod render;
mod types;

pub(crate) use render::{
    render_pilot_summary_json, render_pilot_summary_md, render_pilot_terminal,
    render_pilot_timeout_summary_json, render_pilot_timeout_summary_md,
    render_pilot_timeout_terminal,
};
pub(crate) use types::{
    PILOT_SUMMARY_SCHEMA_VERSION, PilotArtifacts, PilotPythonFirstUse, PilotSummaryContext,
};

#[cfg(test)]
mod tests;