assay-cli 3.26.0

Policy-as-code gate for MCP agent tool calls, with verifiable evidence and Linux kernel enforcement.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::cli::args::BundleArgs;

#[path = "bundle/coverage.rs"]
mod coverage;
#[path = "bundle/implementation.rs"]
mod implementation;
#[path = "bundle/paths.rs"]
mod paths;
#[path = "bundle/verify.rs"]
mod verify;

pub async fn run(args: BundleArgs, legacy_mode: bool) -> anyhow::Result<i32> {
    implementation::run(args, legacy_mode).await
}