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
15
16
17
//! Runner-spike command facade for Wave53.

mod args;
mod cgroup;
mod exit_status;
mod implementation;
mod logs;
mod phases;
mod redaction;
mod spec;

#[allow(unused_imports)]
pub use args::{RunnerSpikeArgs, RunnerSpikeCommand, RunnerSpikeRunArgs};

pub async fn run(args: RunnerSpikeArgs) -> anyhow::Result<i32> {
    implementation::run(args).await
}