autogluon-timeseries-strategy

autogluon-timeseries-strategy is a skill for Claude Code, Codex from topprismdata/cultivating-ml-agent. It costs 224 tokens per session (5,496 once invoked), scanned A, original, MIT.

A guide for using AutoGluon’s time-series prediction API, which forecasts future values in ordered data such as daily sales for multiple stores or products.

In plain words
What is it for?
Use it to build and evaluate forecasts with AutoGluon’s TimeSeriesPredictor, including grouped series and additional factors such as promotions.
Why use it?
It prevents using the separate tabular-data API for sequential data and helps format data, validation, metrics, and model choices correctly.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/mac/.cache/huggingface/hub/models--autogluon--chronos-2/snapshots/60088152a34e242427b44c3100014473a0157d53/.

Good fit Use it to build and evaluate forecasts with AutoGluon’s TimeSeriesPredictor, including grouped series and additional factors such as promotions.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for autogluon-timeseries-strategy

README.md
[![agentmods](https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/autogluon-timeseries-strategy/github.svg)](https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/autogluon-timeseries-strategy)
Your own site
<a href="https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/autogluon-timeseries-strategy"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/autogluon-timeseries-strategy/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for autogluon-timeseries-strategy

Your own site · 80×15
<a href="https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/autogluon-timeseries-strategy"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/autogluon-timeseries-strategy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 224 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,496 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00224 $0.05496
Opus 5 $0.00112 $0.02748
Sonnet 5 $0.00045 $0.01099
Haiku 4.5 $0.00022 $0.00550

Measured 11d ago against content hash 71b4b4a3cfd8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

autogluon-timeseries-strategy scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/examples/autogluon-timeseries-strategy/SKILL.md · 467 lines

How it starts

The opening of the file, as written. The whole thing — 467 lines — stays where its author put it; the contents beside it link to each section on GitHub.

AutoGluon TimeSeriesPredictor Strategy

The Critical Difference

TabularPredictor ≠ TimeSeriesPredictor. They are separate APIs with different:

  • Data formats (TimeSeriesDataFrame vs DataFrame)
  • Cross-validation (multi-window backtesting vs k-fold)
  • Evaluation metrics (RMSLE/MAE/MAPE vs RMSE/accuracy)
  • Models (DeepAR/TFT/Chronos vs LightGBM/XGBoost)
# Tabular (independent rows):
from autogluon.tabular import TabularPredictor
predictor = TabularPredictor(label='target').fit(df)

# Time series (sequential, grouped by entity):
from autogluon.timeseries import TimeSeriesPredictor, TimeSeriesDataFrame
predictor = TimeSeriesPredictor(target='target', prediction_length=16, freq='D').fit(ts_df)

Data Format (Critical)

TimeSeriesPredictor requires TimeSeriesDataFrame:

from autogluon.timeseries import TimeSeriesDataFrame
import pandas as pd

# Required columns: item_id, timestamp, target
# Each item_id is ONE time series (e.g., one store-product combination)
df = pd.DataFrame({
    'item_id': ['store_1', 'store_1', 'store_1', 'store_2', 'store_2'],
    'timestamp': pd.to_datetime(['2024-01-01', '2024-01-02', '2024-01-03',
                                  '2024-01-01', '2024-01-02']),
    'target': [100, 110, 105, 50, 55],
    'onpromotion': [0, 1, 0, 0, 1]  # optional covariates
})

ts_df = TimeSeriesDataFrame.from_data_frame(
    df,
    id_column='item_id',
    timestamp_column='timestamp'
)

Common mistake: passing pd.DataFrame directly to predictor.fit() with a date column. AG will reject it.

Core Parameters

Parameter Required Default Purpose
target Yes None Column name to forecast
prediction_length Yes 1 How many steps ahead to forecast
freq Yes (or inferred) None 'D', 'H', 'M', 'Q', etc.
eval_metric No 'WQL' RMSLE, MAE, MAPE, WQL, MASE
known_covariates_names No None Future-known variables (e.g., holidays)
quantile_levels No [0.1, ..., 0.9] For probabilistic forecasts
path No None Model save directory

Read the full file on GitHub · 467 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 467 lines · 224 tokens per session scan A 71b4b4a3cfd8

Subscribe to this mod's changes

autogluon-timeseries-strategy is a skill published in the GitHub repository topprismdata/cultivating-ml-agent (5 stars, last pushed 14d ago), licensed MIT. It adds 224 tokens to every session and 5,496 once invoked, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

emem-field-tokens

Get a native-resolution raster field over an area from emem, or a field over time, as a signed, verifiable artifact rather than a set of per-cell scalars. Use when the user needs the actual grid of values over an area of interest (a world model input, an NDVI/band drape, change analysis over a scene window, exportable…

Vortx-AI/emem · 0 tokens

data-scientist

!cat Claude-Production-Grade-Suite/.protocols/ux-protocol.md 2>/dev/null || true !cat Claude-Production-Grade-Suite/.protocols/input-validation.md 2>/dev/null || true !cat Claude-Production-Grade-Suite/.protocols/tool-efficiency.md 2>/dev/null || true !cat Claude-Production-Grade-Suite/.protocols/visual-identity.md…

nagisanzenin/production-grade · 43 tokens

agency-geoai-ml-engineer

Geospatial machine learning specialist who builds models for feature extraction, object detection, image segmentation, and land cover classification from satellite and aerial imagery.

BlackPearl-AI/BlackPearl-CodingAgent · 37 tokens

jupyter-live-kernel

Use a live Jupyter kernel for stateful, iterative Python execution via hamelnb. Load this skill when the task involves exploration, iteration, or inspecting intermediate results — data science, ML experimentation, API exploration, or building up complex code step-by-step. Uses terminal to run CLI commands against a…

braxtonROSE4/zorro-agent · 76 tokens

sparse-autoencoder-training

Provides guidance for training and analyzing Sparse Autoencoders (SAEs) using SAELens to decompose neural network activations into interpretable features. Use when discovering interpretable features, analyzing superposition, or studying monosemantic representations in language models.

braxtonROSE4/zorro-agent · 58 tokens

pytorch-fsdp

Expert guidance for Fully Sharded Data Parallel training with PyTorch FSDP - parameter sharding, mixed precision, CPU offloading, FSDP2.

braxtonROSE4/zorro-agent · 37 tokens