Agent skill

nixtla-batch-forecaster

Forecast multiple time series in parallel using TimeGPT. Use when processing 10-100+ contracts efficiently. Trigger with 'batch forecast' or 'parallel forecasting'.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill nixtla-batch-forecaster-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-batch-forecaster-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 Batch Forecaster Process multiple time series forecasts in parallel with optimized throughput. ## Overview Leverages TimeGPT API to generate forecasts for many time series concurrently. Features parallel batch processing with rate limiting, automatic fallback for failed batches, and optional portfolio-level aggregation. Produces individual forecasts per series plus combined outputs. ## Prerequisites **Required**: - Python 3.8+ - `nixtla`, `pandas`, `tqdm` packages **Environment Variables**: - `NIXTLA_TIMEGPT_API_KEY`: Your TimeGPT API key **Installation**: ```bash pip install nixtla pandas tqdm ``` ## Instructions ### Step 1: Prepare Input Data Your CSV must have the Nixtla schema columns: | Column | Type | Description | |--------|------|-------------| | `unique_id` | string | Series identifier (contract ID) | | `ds` | datetime | Timestamp | | `y` | numeric | Value to forecast | Analyze your data: ```bash python {baseDir}/scripts/prepare_data.py your_data.csv ``` ### Step 2: Set API Key ```bash export NIXTLA_TIMEGPT_API_KEY=your_api_key_here ``` ### Step 3: Run Batch Forecast Execute the batch forecasting engine: ```bash python {baseDir}/scripts/batch_forecast.py your_data

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 Batch Forecast
  7. Step 4: Generate Report
  8. Output
  9. Error Handling
  10. Examples
  11. Example 1: Forecast 50 Daily Contracts
  12. Example 2: Hourly Portfolio with Aggregation
  13. Resources
Ships with 1 file
  • metadata.json
Commands it runs
pip install nixtla pandas tqdm
python {baseDir}/scripts/prepare_data.py your_data.csv
export NIXTLA_TIMEGPT_API_KEY=your_api_key_here
python {baseDir}/scripts/batch_forecast.py your_data.csv --horizon 14 --freq D
python {baseDir}/scripts/generate_report.py forecasts/
python {baseDir}/scripts/batch_forecast.py contracts.csv \
python {baseDir}/scripts/batch_forecast.py portfolio.csv \
More from claude-skill-registry
All skills →
About this skill
What does the nixtla-batch-forecaster skill do?

Forecast multiple time series in parallel using TimeGPT. Use when processing 10-100+ contracts efficiently. Trigger with 'batch forecast' or 'parallel forecasting'.

How do I install it?

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