What problem does it solve? Forecasting univariate time series traditionally requires training and tuning custom statistical models like ARIMA for each dataset. This Skill applies Google's pretrained TimesFM foundation model to produce point forecasts and calibrated quantile prediction intervals from any time series without training, while a mandatory preflight checker prevents out-of-memory crashes on underpowered machines. ## Core Features & Use Cases - Zero-Shot Forecasting: Feed any univariate series (sales, sensors, energy, vitals, weather) as CSV, DataFrame, or numpy arrays and receive point forecasts plus 10-quantile prediction intervals. - Preflight System Checker: The check_system.py script verifies RAM, GPU/VRAM, disk space, and Python version before the ~800 MB model download, and recommends a safe batch size. - Covariate and Anomaly Workflows: Supports exogenous variables via forecast_with_covariates() (TimesFM 2.5 + xreg) and anomaly detection using quantile-based prediction intervals. - Use Case: Load a CSV of 36 months of sales data, run forecast_csv.py with a 12-step horizon, and export a CSV containing the forecast with 80% and 90% confidence bands for each series. ## Quick Start Ask the agent to run the system check script and then forecast the next 12 months of the sales column in your CSV file using TimesFM with prediction intervals.