What problem does it solve? Forecasting time series traditionally requires training and tuning custom models like ARIMA or ETS for each dataset. This Skill provides zero-shot forecasting with Google's TimesFM foundation model, producing point forecasts and calibrated prediction intervals for any univariate series without training, while a mandatory preflight checker prevents out-of-memory crashes on under-resourced 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: A script verifies RAM, GPU/VRAM, disk space, and Python version before the ~800 MB model download, and recommends a safe batch size. - Covariates and Anomaly Detection: 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 monthly sales for hundreds of stores, batch-forecast the next 12 months with 80% prediction intervals, and export results to CSV or JSON using the included forecast_csv.py script. ## Quick Start Ask the agent to run the system check script and then forecast the next 24 months of the sales column in your CSV file with prediction intervals.