accuracy-improvement-l…
Use when an existing model's results are disappointing and the user wants higher accuracy - 'accuracy is still too low', 'improve/boost the model', 'why is it…
Use for time-series tasks: forecasting (demand, sales, energy, finance), time-series classification, and anomaly detection over time (sensors, logs, monitoring). Picks classical vs ML vs deep forecasters, enforces temporal splits (no future leakage), and uses proper time-series
$ npx -y skills add mxslr/mlcraft --skill domain-time-series --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/domain-time-seriesContext preview
The summary Claude sees to decide when to auto-load this skill.
Use for time-series tasks: forecasting (demand, sales, energy, finance), time-series classification, and anomaly detection over time (sensors, logs, monitoring). Picks classical vs ML vs deep forecasters, enforces temporal splits (no future leakage), and uses proper time-series
name: domain-time-series description: "Use for time-series tasks: forecasting (demand, sales, energy, finance), time-series classification, and anomaly detection over time (sensors, logs, monitoring). Picks classical vs ML vs deep forecasters, enforces temporal splits (no future leakage), and uses proper time-series metrics/backtesting. Triggers on 'forecast', 'predict next/future', 'time series', 'demand/sales/energy prediction', 'anomaly detection over time', 'seasonality'."
Temporal order is sacred: **the future must never leak into training.**
| Sub-task | Recommended (simple to advanced) | Notes | |---|---|---| | Univariate / few series forecasting | **ETS / ARIMA / Theta / Prophet** | Strong, interpretable baselines. Often beat deep on small data. | | Many related series | **LightGBM on lag/calendar features** then **N-BEATS/NHITS, TFT** | GBT-on-lags is a very strong, cheap default. | | Long-horizon / rich covariates | **TFT / PatchTST / DeepAR** | Deep only when data volume justifies it. | | Foundation / zero-shot | **TimesFM / Chronos / Moirai** | Good for cold-start / many series with little history. | | TS classification | **ROCKET/MiniROCKET, InceptionTime, HIVE-COTE** | ROCKET = fast strong baseline. | | Anomaly detection | **STL/residual + threshold, Isolation Forest, autoencoder/LSTM** | Start simple; label scarcity is the norm. |
A research-first AI/ML research-engineer workflow for Claude Code
Use when an existing model's results are disappointing and the user wants higher accuracy - 'accuracy is still too low', 'improve/boost the model', 'why is it…
Use BEFORE training any model, to build correct train/val/test splits and hunt data leakage - the #1 cause of fake-high accuracy. Covers group/patient/subject…
Use as the FIRST step of any ML task, before choosing a model, to inspect and understand the actual dataset. Works for a LOCAL dataset (Claude reads the files…
Use when turning a trained model into something usable (an app, an inference function, a demo) or adding explainability. Selects the RIGHT interpretability…
Use for 3D and point cloud tasks: point cloud classification, 3D semantic or instance segmentation, 3D object detection from LiDAR, and depth or mesh analysis,…
Use for anomaly, outlier, and novelty detection across data types: industrial or visual defect detection, time-series or sensor anomalies and predictive…