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 archaeology;
7pub mod coupling;
8pub mod history;
9pub mod prophecy;
10pub mod prophecy_v2;
11pub mod stability;
12
13pub use archaeology::{
14    ArchaeologyResult, CodeArchaeologist, CodeEvolution, EvolutionPhase, HistoricalChangeType,
15    HistoricalDecision, TimelineEvent,
16};
17pub use coupling::{Coupling, CouplingDetector, CouplingOptions, CouplingType};
18pub use history::{ChangeHistory, ChangeType, FileChange, HistoryOptions};
19pub use prophecy::{
20    AlertType, EcosystemAlert, Prediction, PredictionType, ProphecyEngine, ProphecyOptions,
21    ProphecyResult,
22};
23pub use prophecy_v2::{
24    CodeProphecy, EnhancedPrediction, EnhancedProphecyEngine, ProphecyEvidence, ProphecyHorizon,
25    ProphecySubject, Sentiment,
26};
27pub use stability::{
28    StabilityAnalyzer, StabilityFactor, StabilityOptions, StabilityRecommendation, StabilityResult,
29};