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
//! Commit Message Extraction Functions
//!
//! This module provides utilities for extracting commit messages from AI agent output
//! using XML format with XSD validation.
//!
//! # Module Organization
//!
//! - [`extraction`]: `CommitExtractionResult` and strict commit XML extraction
//! - [`rendering`]: `render_final_commit_message` and `is_conventional_commit_subject`

mod extraction;
mod rendering;

pub use extraction::{try_extract_xml_commit_document_with_trace, CommitExtractionResult};
pub use rendering::is_conventional_commit_subject;