ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Agent chain state and advancement tests.
//!
//! Tests the `AgentChainState` tracking for ordered fallback lists.
//! Validates chain construction, position advancement, and exhaustion detection.
//!
//! ## Modules
//!
//! - `chain_construction`: Building chains from agent configs
//! - `advancement`: Moving to next agent after failure
//! - `edge_cases`: Empty chains, single-agent chains, exhaustion

mod advancement;
mod chain_construction;
mod edge_cases;