git-iris 2.0.8

AI-powered Git workflow assistant for smart commits, code reviews, changelogs, and release notes
Documentation
//! Response types for agent-generated content
//!
//! This module consolidates all structured output types that the Iris agent produces:
//! - Commit messages
//! - Pull request descriptions
//! - Code reviews
//! - Changelogs
//! - Release notes

mod changelog;
mod commit;
mod pr;
mod release_notes;
mod review;

// Commit types
pub use self::commit::{GeneratedMessage, format_commit_message};

// PR types
pub use pr::MarkdownPullRequest;

// Review types
pub use review::{MarkdownReview, render_markdown_for_terminal};

// Changelog types
pub use changelog::{ChangeEntry, ChangeMetrics, ChangelogType, MarkdownChangelog};

// Release notes types
pub use release_notes::MarkdownReleaseNotes;