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
/// Controls whether Ralph pauses for input before process exit.
#[derive(clap::ValueEnum, Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum PauseOnExitMode {
    /// Pause on failure only when launch appears standalone (double-click Explorer launch).
    #[default]
    Auto,
    /// Always pause before exit, regardless of outcome.
    Always,
    /// Never pause before exit.
    Never,
}