runx_runtime/execution.rs
1//! Execution cluster.
2//!
3//! - `runner`: the `Runtime` graph engine and step orchestrator.
4//! - `graph`: graph loading and step lookup helpers.
5//! - `fanout`: fanout policy helpers shared across runner and harness.
6//! - `harness`: harness fixture replay and assertion engine.
7//! - `orchestrator`: canonical entrypoint for local skill, graph, and harness
8//! execution.
9//! - `skill_front`: the skill front; compiles a skill run into an execution and seals it through the act engine.
10
11pub(crate) mod disposition;
12pub(crate) mod fanout;
13pub(crate) mod graph;
14pub(crate) mod graph_index;
15pub mod harness;
16pub(crate) mod operator_context;
17pub mod orchestrator;
18pub(crate) mod output_projection;
19pub(crate) mod prepared_skill;
20pub mod runner;
21pub(crate) mod skill_context;
22pub mod skill_front;