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
18
//! Rebase operations for the pipeline.
//!
//! This module contains functions for running pre-development rebase
//! and conflict resolution during the pipeline.

#[path = "rebase/types.rs"]
pub mod types;

pub mod orchestration;

pub mod conflicts;

pub mod boundary;

pub use orchestration::run_initial_rebase;

pub use types::ConflictResolutionResult;
pub use types::InitialRebaseOutcome;