Skip to main content

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 mod orchestrator;
17pub(crate) mod output_projection;
18pub mod runner;
19pub(crate) mod skill_context;
20pub mod skill_front;