//! Workspace context and state management
//!
//! This module unifies Git, Cargo, and Graph into a single WorkspaceContext.
//!
//! # Architecture
//!
//! WorkspaceContext = GitState + CargoState + DependencyGraph + Config
//!
//! Built once at startup, passed by reference to all commands.
/// Change impact analysis
/// Unified workspace context (includes GitState and CargoState)
/// File path utilities
/// High-level façade for crate information queries
// Re-export change analysis types
pub use ChangeImpact;
// Re-export workspace types from context module
pub use ;
// Re-export view types
pub use ;