//! Incident management for drift and contract violations
//!
//! This module provides functionality for creating, storing, and managing incidents
//! related to contract drift and breaking changes.
//!
//! Issue #562 phase 9 moved the AI-coupled pieces (`semantic_manager`,
//! `integrations` config + Slack/Jira formatters) into
//! `mockforge_intelligence::incidents`. The structural pieces below
//! (`manager`, `store`) and the shared types (re-exported from
//! `mockforge_foundation::incidents_types` via `types.rs`) stay in core —
//! they have no AI dependencies.
// The AI-coupled pieces now live in `mockforge-intelligence`; these
// re-exports keep existing `mockforge_core::incidents::{...}` callers
// resolving unchanged.
pub use ;
// Integration formatters (always available, not behind feature flag for simplicity).
// Same `#[path]` aliasing the legacy module used, but now pointing at the
// intelligence-side mod aliases of the same name.
pub use ;
pub use IncidentManager;
pub use ;
pub use IncidentStore;
pub use ;