truth-mirror 0.2.0

Truthfulness gate and adversarial reviewer harness for AI coding agents.
Documentation
1
2
3
4
5
6
7
8
use std::process::ExitCode;

use clap::Parser;

fn main() -> anyhow::Result<ExitCode> {
    truth_mirror::init_tracing();
    truth_mirror::run(truth_mirror::cli::Cli::parse())
}