← ClaudeAtlas

aeonlisted

This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. Use when working with temporal data, sequential patterns, or time-indexed observations requiring specialized algorithms beyond standard ML approaches. Particularly suited for univariate and multivariate time series analysis with scikit-learn compatible APIs.
tassiovale/claude-code-kit · ★ 10 · Data & Documents · score 75
Install: claude install-skill tassiovale/claude-code-kit
# Aeon Time Series Machine Learning ## Overview Aeon is a scikit-learn compatible Python toolkit for time series machine learning ([aeon-toolkit.org](https://www.aeon-toolkit.org/)). It provides algorithms across classification, regression, clustering, forecasting, anomaly detection, segmentation, similarity search, distances, transformations, benchmarking, and visualization — with a consistent estimator API. **Version note:** Examples target **aeon 1.x** (stable docs: v1.4.0, March 2026). The v1.0 release reworked forecasting and transformations; import paths differ from aeon 0.x/sktime-era code. ## When to Use This Skill Apply this skill when: - Classifying or predicting from time series data - Detecting anomalies or change points in temporal sequences - Clustering similar time series patterns - Forecasting future values - Finding repeated patterns (motifs) or unusual subsequences (discords) - Comparing time series with specialized distance metrics - Extracting features from temporal data ## Installation Requires **Python 3.10+** (3.11+ recommended). Pin a 1.x release for reproducibility: ```bash uv pip install "aeon>=1.4,<2" ``` For deep learning forecasters/classifiers and other optional estimators: ```bash uv pip install "aeon[all_extras]>=1.4,<2" ``` On zsh, quote the extras: `uv pip install "aeon[all_extras]>=1.4,<2"`. ### Experimental modules Upstream treats **forecasting**, **anomaly_detection**, **segmentation**, **similarity_search**, and **visualisati