Skip to main content

pleiades_agent_git/
lib.rs

1//! Git integration for Pleiades.
2//!
3//! Provides commit message generation, PR summaries,
4//! code review, and diff explanations.
5
6pub mod commit;
7mod common;
8pub mod review;
9pub mod summary;
10
11pub use commit::{CommitGenerator, staged_diff, working_diff};
12pub use review::ReviewGenerator;
13pub use summary::PrSummaryGenerator;