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
15
16
17
//! Agent fallback and retry test scenarios.
//!
//! Tests the reducer's handling of agent fallback chains when agents fail,
//! covering retry logic, chain advancement, and exhaustion conditions.
//!
//! ## Test Organization
//!
//! - `basic_fallback`: Simple fallback to next agent in chain
//! - `retry_scenarios`: Same-agent retry with transient failures  
//! - `chain_exhaustion`: Behavior when all agents exhausted
//! - `state_transitions`: State transitions during fallback

mod basic_fallback;
mod chain_exhaustion;
mod model_fallback;
mod retry_scenarios;
mod state_transitions;