ralph-agent-loop 0.4.0

A Rust CLI for managing AI agent loops with a structured JSON task queue
Documentation
//! Parallel orchestration facade.
//!
//! Responsibilities:
//! - Re-export the direct-push parallel run-loop entrypoint.
//! - Keep preflight, main-loop control, and shutdown/finalization separated.
//!
//! Not handled here:
//! - Parallel state persistence format.
//! - Worker spawn/monitor implementation details.
//!
//! Invariants/assumptions:
//! - Queue lock ownership stays with the orchestration entrypoint for task selection safety.

mod events;
mod loop_runtime;
mod preflight;
mod shutdown;
mod stats;

pub(crate) use loop_runtime::run_loop_parallel;