What problem does it solve? ML models degrade silently in production as input data distributions shift and relationships change, and teams often discover the damage only after business metrics drop. This Skill builds drift detection pipelines, alerting, and retraining triggers so degradation is caught before users notice. ## Core Features & Use Cases - Statistical Drift Detection: Implements KS tests, PSI, chi-squared tests, and Wasserstein distance to detect data, concept, and prediction drift per feature. - Scheduled Monitoring & Alerting: Runs hourly/daily monitoring jobs that log drift metrics to MLflow and send SNS alerts with warning/critical severity levels. - Automated Retraining Triggers: Fires CI/CD webhooks when critical drift is detected, plus performance tracking against baseline AUC/F1 when labels arrive. - Use Case: A data science team deploys an order-propensity model and uses this Skill to monitor feature distributions hourly, receive SNS alerts when PSI exceeds 0.2, and automatically trigger retraining pipelines. ## Quick Start Set up drift monitoring for my production model using PSI and KS tests with hourly checks, MLflow logging, and SNS alerts when drift exceeds warning thresholds.