What problem does it solve? Machine learning models degrade silently in production as input data distributions shift and real-world patterns change, but teams often lack visibility until business metrics suffer. This Skill provides a complete monitoring framework to detect drift, track performance, and trigger retraining before failures impact users. ## Core Features & Use Cases - Drift Detection: Detect data drift using Kolmogorov-Smirnov tests and Population Stability Index (PSI), plus concept drift via rolling accuracy tracking against baselines. - Prediction Logging & Metrics: Log predictions to S3 in partitioned Parquet files and expose accuracy, latency, and throughput metrics through Prometheus and Grafana. - Automated Retraining & Safe Rollouts: Trigger MLflow-based retraining pipelines when drift exceeds thresholds, and validate new models with A/B testing and shadow mode deployment. - Use Case: A fraud detection model's accuracy drops from 92% to 84% as attacker behavior changes. The monitoring pipeline detects the concept drift, alerts the team via Prometheus rules, and automatically triggers retraining on the last 90 days of data. ## Quick Start Set up production monitoring for my XGBoost fraud detection model with drift detection, Prometheus latency metrics, and automated retraining triggers.