ralph_workflow/
lib.rs

1//! Ralph workflow library for commit message parsing and validation.
2//!
3//! This library exposes the core functionality used by the ralph binary,
4//! including commit message extraction from LLM output.
5
6pub mod agents;
7pub mod app;
8pub mod banner;
9pub mod checkpoint;
10pub mod cli;
11pub mod common;
12pub mod config;
13pub mod diagnostics;
14pub mod files;
15pub mod git_helpers;
16pub mod guidelines;
17pub mod json_parser;
18pub mod language_detector;
19pub mod logger;
20pub mod phases;
21pub mod pipeline;
22pub mod platform;
23pub mod prompts;
24pub mod review_metrics;
25pub mod templates;