truth-mirror 0.7.2

Truthfulness gate and adversarial reviewer harness for AI coding agents.
Documentation
//! Config-gated memory-skill candidate extraction and human promotion.

mod cli;
mod extract;
mod reinject;
mod render;
mod scan;
mod store;
mod types;
mod util;

pub use cli::run;
pub use extract::evaluate_review_completion;
pub use reinject::reinjection_section;
pub use render::{render_candidate_preview, render_skill};
pub use scan::scan_text;
pub use store::MemorySkillStore;
pub use types::{
    ADVISORIES_FILE, CANDIDATE_SCHEMA_VERSION, CandidateStatus, CandidateTransition, EvidenceRef,
    MemorySkillAdvisory, MemorySkillCandidate, MemorySkillError, MemorySkillReport,
    TRANSITIONS_FILE,
};

#[cfg(test)]
mod tests;