pleiades-agent-git 1.1.0

Pleiades git integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Git integration for Pleiades.
//!
//! Provides commit message generation, PR summaries,
//! code review, and diff explanations.

pub mod commit;
mod common;
pub mod review;
pub mod summary;

pub use commit::{CommitGenerator, staged_diff, working_diff};
pub use review::ReviewGenerator;
pub use summary::PrSummaryGenerator;