timesfm-forecasting

Performs zero-shot univariate time series forecasting with Google's TimesFM.

Updated Feb 1, 2026
One-click install
npx skills add https://github.com/nferrer-dev/claude-dotfiles --skill timesfm-forecasting-nferrer-dev
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: timesfm-forecasting
Source: https://github.com/nferrer-dev/claude-dotfiles/tree/main/skills/timesfm-forecasting
Command: npx skills add https://github.com/nferrer-dev/claude-dotfiles --skill timesfm-forecasting-nferrer-dev

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

This Skill solves the complexity of training custom time-series models by providing a zero-shot foundation model approach that works for any univariate time series without manual parameter tuning.

Core Features & Use Cases

  • Zero-Shot Forecasting: Generate point forecasts and probabilistic prediction intervals for univariate data like sales, energy, or sensor readings.
  • System Safety: Includes a mandatory preflight checker to verify RAM, GPU, and disk requirements before model loading to prevent system crashes.
  • Use Case: Use this to forecast weekly demand for retail stores or predict sensor vitals in industrial equipment without needing to train an ARIMA or ETS model from scratch.

Quick Start

Run the system preflight check script and then use the timesfm skill to forecast the next 24 steps of the time series data provided in your current context.

Frequently Asked Questions about timesfm-forecasting

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

FAQPage Schema
How do I perform zero-shot time series forecasting without training a model from scratch?

Zero-shot time series forecasting uses Google's TimesFM foundation model to generate predictions for univariate data without manual parameter tuning. It works directly on sales, energy, or sensor metrics to produce point forecasts and quantile prediction intervals.

Can I generate probabilistic prediction intervals for sales forecasting using a foundation model?

Probabilistic prediction intervals for sales forecasting are supported by TimesFM through calibrated quantile outputs. The foundation model generates both point forecasts and interval estimates for univariate time series data without requiring custom training.

Do I need a GPU and specific RAM to run TimesFM for local predictive analytics?

Local TimesFM inference requires a mandatory preflight system verification to check available RAM, GPU, and disk resources. This safety check runs before model loading to prevent system crashes during predictive analytics execution.

What is the best way to forecast sensor vitals or energy metrics without building an ARIMA model?

The best way to forecast sensor vitals or energy metrics without ARIMA is using a zero-shot foundation model approach. TimesFM handles diverse univariate temporal data directly, bypassing the need to train traditional statistical models from scratch.

What format should my time series data be in for TimesFM forecasting?

Time series data for TimesFM forecasting should be structured as univariate sequences, commonly handled using pandas and numpy arrays. The model processes single-variable temporal data to generate point forecasts and probabilistic prediction intervals.