timesfm-forecasting

Forecast univariate time series with the TimesFM 2.5 model.

94|11|Updated Mar 26, 2026
One-click install
npx skills add https://github.com/swaruplab/operon --skill timesfm-forecasting-swaruplab
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: timesfm-forecasting
Source: https://github.com/swaruplab/operon/tree/main/src-tauri/protocols/timesfm-forecasting
Command: npx skills add https://github.com/swaruplab/operon --skill timesfm-forecasting-swaruplab

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires timesfm, torch, numpy, pandas, and includes scripts (resource) and references (resource) components.

What problem does it solve?

Forecast univariate time series data using a decoder-based TimesFM model without training.

Core Features & Use Cases

  • Zero-shot forecasting for univariate time series (e.g., sales, sensor data, vitals, weather) without training.
  • Built-in preflight checks to ensure RAM, VRAM, disk space, and Python compatibility before loading models.
  • Covariate (XReg) support and quantile-based prediction intervals for robust uncertainty estimation.
  • End-to-end workflows with example scripts for loading data, forecasting, and evaluating accuracy.

Quick Start

Run a sample forecast on a univariate time series using the TimesFM 2.5 checkpoint and the provided example script.

Frequently Asked Questions about timesfm-forecasting

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I forecast univariate time series data without training a model?

Zero-shot time-series forecasting uses a decoder-based TimesFM model to predict univariate data like sales or sensors without training. The model outputs point forecasts and calibrated quantile intervals directly from the input history.

Can I include covariates in my time-series forecasts?

Yes, TimesFM forecasting supports covariates (XReg) alongside univariate time-series data. This allows you to incorporate external variables to generate point forecasts and quantile-based prediction intervals for more robust uncertainty estimation.

What are the system requirements for running TimesFM models?

Running TimesFM requires passing a mandatory preflight check for RAM, VRAM, disk space, and Python compatibility. The environment must have TimesFM 2.5, PyTorch, NumPy, and Pandas installed before loading the model.

How does a decoder-based time-series model output prediction intervals?

A decoder-based TimesFM model generates point forecasts alongside calibrated quantile intervals for a range of horizons. This mechanism provides robust uncertainty estimation without requiring model training on the target time series.

What is the best way to evaluate zero-shot time-series forecasting accuracy?

You can evaluate zero-shot forecasting accuracy using the provided example scripts. These scripts facilitate end-to-end workflows for loading univariate time-series data, generating forecasts with TimesFM, and measuring the output accuracy.

Why does my TimesFM preflight check fail before forecasting?

The preflight check fails when your system lacks sufficient RAM, VRAM, disk space, or compatible Python versions required by TimesFM 2.5. Ensuring these environment prerequisites are met allows the decoder model to load successfully.