forge-pilot 0.1.0

Closed-loop orchestrator over runtime advisories, kernel oracles, and canonical Forge export/import lanes
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![cfg_attr(test, allow(clippy::expect_used))]

mod main_support;

#[tokio::main(flavor = "current_thread")]
async fn main() {
    if let Err(error) = main_support::run().await {
        eprintln!("forge-pilot: {error}");
        std::process::exit(1);
    }
}