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.
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.
[](https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/autogluon-timeseries-strategy)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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 |
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.
- 11d ago First seen · 467 lines · 224 tokens per session scan A 71b4b4a3cfd8
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.
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…
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…
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.
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…
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.
pytorch-fsdp
Expert guidance for Fully Sharded Data Parallel training with PyTorch FSDP - parameter sharding, mixed precision, CPU offloading, FSDP2.