Agent skill · Data & Analytics

nixtla-baseline-review

Analyze Nixtla baseline forecasting results (sMAPE/MASE on M4 or other benchmark datasets). Use when the user asks about baseline performance, model comparisons, or metric interpretation for Nixtla time-series experiments. Trigger with "baseline review", "interpret sMAPE/MASE", or "compare AutoETS vs AutoTheta".

majiayu000github.com/majiayu000GitHub ↗
claude-coderead-onlyMIT
Install
npx skills add majiayu000/claude-skill-registry --skill nixtla-baseline-review-intent-solutions-io-plugins-nixtla --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadGrepBash(ls:*)
Path: skills/analysis/nixtla-baseline-review-intent-solutions-io-plugins-nixtla/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Nixtla Baseline Review Skill ## Overview Analyze baseline forecasting results from the `nixtla-baseline-m4` workflow. Interpret metrics, compare models, surface patterns, and recommend next steps. ## When to Use This Skill Activate this skill when the user: - Asks "Which baseline model performed best?" - Requests interpretation of sMAPE or MASE metrics - Wants to compare AutoETS vs AutoTheta vs SeasonalNaive - Says "Explain these baseline results" - Needs guidance on model selection based on baseline performance ## Prerequisites - Baseline results must exist in `nixtla_baseline_m4/` directory - At minimum, `results_*.csv` file must be present - CSV format: columns `series_id`, `model`, `sMAPE`, `MASE` ## Instructions ### Step 1: Locate Results Files Use the **Read** tool to find baseline results: ```bash # Check for results directory (use Bash tool) ls -la nixtla_baseline_m4/ # Identify most recent results file ls -t nixtla_baseline_m4/results_*.csv | head -1 ``` Expected files: - `results_M4_Daily_h{horizon}.csv` - Full metrics table - `summary_M4_Daily_h{horizon}.txt` - Text summary (optional) If files are missing, inform the user they need to run `/nixtla-baseline-m4` first. #

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. Prerequisites
  4. Instructions
  5. Step 1: Locate Results Files
  6. Step 2: Load and Parse Metrics
  7. Step 3: Calculate Summary Statistics
  8. Step 4: Interpret Metrics
  9. Step 5: Identify Patterns
  10. Step 6: Generate Structured Explanation
  11. Output
  12. Examples
  13. Example 1: Simple Query
  14. Example 2: Detailed Comparison
Ships with 1 file
  • metadata.json
Commands it runs
Check for results directory (use Bash tool)
ls -la nixtla_baseline_m4/
Identify most recent results file
ls -t nixtla_baseline_m4/results_*.csv | head -1
View first few rows to confirm format
head -10 nixtla_baseline_m4/results_M4_Daily_h*.csv
Or use Read tool to load the full file
More from claude-skill-registry
All skills →
About this skill
What does the nixtla-baseline-review skill do?

Analyze Nixtla baseline forecasting results (sMAPE/MASE on M4 or other benchmark datasets). Use when the user asks about baseline performance, model comparisons, or metric interpretation for Nixtla time-series experiments. Trigger with "baseline review", "interpret sMAPE/MASE", or "compare AutoETS vs AutoTheta".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill nixtla-baseline-review-intent-solutions-io-plugins-nixtla --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going