mockforge-intelligence 0.3.138

AI-powered behavior, response generation, and behavioral cloning for MockForge
Documentation
// Some ai_response helpers are themselves deprecated in favor of
// mockforge-template-expansion; internal tests still reference them.
#![allow(deprecated)]

//! AI-powered intelligence for MockForge
//!
//! This crate contains modules extracted from `mockforge-core` related to
//! intelligent behavior, AI response generation, and behavioral cloning.
//!
//! Currently migrated:
//! - `ai_response`: Typed AI response generation helpers
//! - `behavioral_cloning`: Probability models, sequence learning, edge amplification
//! - `pr_generation`: GitHub/GitLab PR generation client (Issue #562 phase 1 —
//!   moved out of `mockforge-core` because it only depends on
//!   `mockforge_foundation::Error`, no other core internals)
//!
//! Full migration of `intelligent_behavior`, `ai_contract_diff`, `ai_studio`,
//! and `behavioral_economics` is blocked by circular dependencies with
//! non-deprecated core code (openapi, reality, priority_handler, etc.) that
//! require a foundation-types crate to untangle.

pub mod ai_response;
pub mod behavioral_cloning;
pub mod pr_generation;