Agent skill · AI & Agents

nixtla-timegpt-finetune-lab

Configure TimeGPT fine-tuning on custom datasets with Nixtla SDK. Use when training domain-specific forecast models. Trigger with 'fine-tune TimeGPT' or 'train custom model'.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill nixtla-timegpt-finetune-lab-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: 3 KB
Bundled scripts: none
Version: 1.0.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteGlobGrepEdit
Path: skills/ai-ml/nixtla-timegpt-finetune-lab-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 TimeGPT Fine-Tuning Lab Guide users through production-ready TimeGPT fine-tuning workflows. ## Overview This skill manages TimeGPT fine-tuning: - **Dataset preparation**: Validate and format training data - **Job submission**: Submit fine-tuning jobs to TimeGPT API - **Status monitoring**: Track job progress until completion - **Model comparison**: Compare zero-shot vs fine-tuned performance ## Prerequisites **Required**: - Python 3.8+ - `nixtla` package - `NIXTLA_API_KEY` environment variable **Installation**: ```bash pip install nixtla pandas utilsforecast export NIXTLA_API_KEY='your-api-key' ``` **Get API Key**: https://dashboard.nixtla.io ## Instructions ### Step 1: Prepare Dataset Ensure data is in Nixtla schema: ```bash python {baseDir}/scripts/prepare_finetune_data.py \ --input data/sales.csv \ --output data/finetune_train.csv ``` ### Step 2: Configure Fine-Tuning ```bash python {baseDir}/scripts/configure_finetune.py \ --train data/finetune_train.csv \ --model_name "sales-model-v1" \ --horizon 14 \ --freq D ``` ### Step 3: Submit Job ```bash python {baseDir}/scripts/submit_finetune.py \ --config forecasting/finetune_config.yml ``` ### Step 4: Monitor Progress ```ba

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Prepare Dataset
  5. Step 2: Configure Fine-Tuning
  6. Step 3: Submit Job
  7. Step 4: Monitor Progress
  8. Step 5: Compare Models
  9. Output
  10. Error Handling
  11. Examples
  12. Example 1: Basic Fine-Tuning
  13. Example 2: Compare Zero-Shot vs Fine-Tuned
  14. Resources
Ships with 1 file
  • metadata.json
Commands it runs
pip install nixtla pandas utilsforecast
export NIXTLA_API_KEY='your-api-key'
python {baseDir}/scripts/prepare_finetune_data.py \
python {baseDir}/scripts/configure_finetune.py \
python {baseDir}/scripts/submit_finetune.py \
python {baseDir}/scripts/monitor_finetune.py \
python {baseDir}/scripts/compare_finetuned.py \
Prepare data
Submit job
More from claude-skill-registry
All skills →
About this skill
What does the nixtla-timegpt-finetune-lab skill do?

Configure TimeGPT fine-tuning on custom datasets with Nixtla SDK. Use when training domain-specific forecast models. Trigger with 'fine-tune TimeGPT' or 'train custom model'.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill nixtla-timegpt-finetune-lab-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