assay-cli 3.35.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
//! `assay registry` dispatch. Narrow in this slice: only `supply-chain-conformance`.

use crate::cli::args::{RegistryArgs, RegistrySub};

pub async fn run(args: RegistryArgs) -> anyhow::Result<i32> {
    match args.sub {
        RegistrySub::SupplyChainConformance(a) => super::supply_chain_conformance::run(a).await,
    }
}