Skip to main content

agentic_codebase/temporal/
mod.rs

1//! Time-based analysis for code evolution.
2//!
3//! Change history tracking, stability scores, coupling detection,
4//! and predictive analysis. Can work with or without git integration.
5
6pub mod coupling;
7pub mod history;
8pub mod prophecy;
9pub mod stability;
10
11pub use coupling::{Coupling, CouplingDetector, CouplingOptions, CouplingType};
12pub use history::{ChangeHistory, ChangeType, FileChange, HistoryOptions};
13pub use prophecy::{
14    AlertType, EcosystemAlert, Prediction, PredictionType, ProphecyEngine, ProphecyOptions,
15    ProphecyResult,
16};
17pub use stability::{
18    StabilityAnalyzer, StabilityFactor, StabilityOptions, StabilityRecommendation, StabilityResult,
19};