Agent skill · Data & Analytics

nixtla-anomaly-detector

Detects anomalies in time series data using TimeGPT. Identifies outliers, level shifts, and trend breaks without model training. Use when identifying anomalies, outliers, or unusual patterns in time series. Trigger with "detect anomalies", "find outliers", "anomaly detection".

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill nixtla-anomaly-detector-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: 4 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteBash(python:*)GlobGrep
Path: skills/ai-ml/nixtla-anomaly-detector-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 Anomaly Detector Automatically detect and flag anomalies in time series data using TimeGPT. ## Overview This skill leverages TimeGPT's anomaly detection capabilities to identify outliers, level shifts, and trend breaks in time series data without requiring model training. It accepts CSV data, runs anomaly detection via the Nixtla API, and produces a detailed report with visualizations. ## Prerequisites **Required**: - Python 3.8+ - `nixtla`, `pandas`, `matplotlib` packages **Environment Variables**: - `NIXTLA_TIMEGPT_API_KEY`: Your TimeGPT API key **Installation**: ```bash pip install nixtla pandas matplotlib ``` ## Instructions ### Step 1: Prepare Input Data Ensure your CSV file has the required Nixtla schema columns: | Column | Type | Description | |--------|------|-------------| | `unique_id` | string | Series identifier | | `ds` | datetime | Timestamp | | `y` | numeric | Value to analyze | ### Step 2: Set API Key ```bash export NIXTLA_TIMEGPT_API_KEY=your_api_key_here ``` ### Step 3: Run Anomaly Detection Execute the detection script: ```bash python {baseDir}/scripts/detect_anomalies.py --input your_data.csv ``` **Available options**: - `--input`, `-i`: Input CSV file

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Prepare Input Data
  5. Step 2: Set API Key
  6. Step 3: Run Anomaly Detection
  7. Step 4: Review Results
  8. Output
  9. Error Handling
  10. Examples
  11. Example 1: Detect outliers in website traffic
  12. Example 2: Identify trend break in sales data
  13. Resources
Ships with 1 file
  • metadata.json
Commands it runs
pip install nixtla pandas matplotlib
export NIXTLA_TIMEGPT_API_KEY=your_api_key_here
python {baseDir}/scripts/detect_anomalies.py --input your_data.csv
python {baseDir}/scripts/detect_anomalies.py --input traffic.csv
python {baseDir}/scripts/detect_anomalies.py -i sales.csv -o sales_anomalies.csv
More from claude-skill-registry
All skills →
About this skill
What does the nixtla-anomaly-detector skill do?

Detects anomalies in time series data using TimeGPT. Identifies outliers, level shifts, and trend breaks without model training. Use when identifying anomalies, outliers, or unusual patterns in time series. Trigger with "detect anomalies", "find outliers", "anomaly detection".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill nixtla-anomaly-detector-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