pmat 3.15.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
// Git History RAG Integration
// Spec: docs/specifications/git-history-rag-integration.md
// Toyota Way: Genchi Genbutsu - Go and see actual git data

mod commit_embedder;
#[cfg(feature = "git-lib")]
mod commit_parser;
mod git_history_index;
mod rrf_fusion;
mod search_engine;

// Always export from git_history_index (no git2 dependency)
pub use commit_embedder::CommitEmbedder;
pub use git_history_index::{
    ChangeType, CommitInfo, FileChange, GitHistoryError, GitHistoryIndex, SyncResult,
};
pub use rrf_fusion::{DocumentMetadata, FusedResult, RankedDocument, RrfFusion};
pub use search_engine::{GitHistorySearchEngine, GitSearchOptions, GitSearchResult};

// Only export CommitParser when git-lib feature is enabled
#[cfg(feature = "git-lib")]
pub use commit_parser::CommitParser;

#[cfg(test)]
mod tests;