runx-runtime 0.6.19

Native Rust runtime for local runx execution, adapters, harness replay, receipts, and sandboxing.
Documentation
//! Execution cluster.
//!
//! - `runner`: the `Runtime` graph engine and step orchestrator.
//! - `graph`: graph loading and step lookup helpers.
//! - `fanout`: fanout policy helpers shared across runner and harness.
//! - `harness`: harness fixture replay and assertion engine.
//! - `orchestrator`: canonical entrypoint for local skill, graph, and harness
//!   execution.
//! - `skill_front`: the skill front; compiles a skill run into an execution and seals it through the act engine.

pub(crate) mod disposition;
pub(crate) mod fanout;
pub(crate) mod graph;
pub(crate) mod graph_index;
pub mod harness;
pub mod orchestrator;
pub(crate) mod output_projection;
pub mod runner;
pub(crate) mod skill_context;
pub mod skill_front;