003-skills/.claude/skills-backup-20251210-155310/nixtla-timegpt-finetune-lab/SKILL.md
Enables TimeGPT model fine-tuning on custom datasets with Nixtla SDK. Guides dataset preparation, job submission, status monitoring, model comparison, and accuracy benchmarking. Activates when user needs TimeGPT fine-tuning, custom model training, domain-specific optimization, or zero-shot vs fine-tuned comparison.
npx skillsauth add intent-solutions-io/plugins-nixtla nixtla-timegpt-finetune-labInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Guide users through production-ready TimeGPT fine-tuning workflows.
This skill manages TimeGPT fine-tuning:
Required:
nixtla packageNIXTLA_API_KEY environment variableInstallation:
pip install nixtla pandas utilsforecast
export NIXTLA_API_KEY='your-api-key'
Get API Key: https://dashboard.nixtla.io
Ensure data is in Nixtla schema:
python {baseDir}/scripts/prepare_finetune_data.py \
--input data/sales.csv \
--output data/finetune_train.csv
python {baseDir}/scripts/configure_finetune.py \
--train data/finetune_train.csv \
--model_name "sales-model-v1" \
--horizon 14 \
--freq D
python {baseDir}/scripts/submit_finetune.py \
--config forecasting/finetune_config.yml
python {baseDir}/scripts/monitor_finetune.py \
--job_id <job_id>
python {baseDir}/scripts/compare_finetuned.py \
--test data/test.csv \
--finetune_id <model_id>
Error: NIXTLA_API_KEY not set
Solution: Export your API key: export NIXTLA_API_KEY='...'
Error: Insufficient training data
Solution: Need 100+ observations per series
Error: Fine-tuning job failed
Solution: Check data format, ensure no NaN values
Error: Model ID not found
Solution: Verify job completed, check artifacts directory
# Prepare data
python {baseDir}/scripts/prepare_finetune_data.py \
--input sales.csv --output train.csv
# Submit job
python {baseDir}/scripts/submit_finetune.py \
--train train.csv \
--model_name "my-sales-model" \
--horizon 14
Output:
Fine-tuning job submitted: job_abc123
Model ID saved to: artifacts/finetune_model_id.txt
python {baseDir}/scripts/compare_finetuned.py \
--test test.csv \
--finetune_id my-sales-model
Output:
Model Comparison:
TimeGPT Zero-Shot: SMAPE=12.3%
TimeGPT Fine-Tuned: SMAPE=8.7%
Improvement: 29.3%
{baseDir}/scripts/Related Skills:
nixtla-schema-mapper: Prepare data before fine-tuningnixtla-experiment-architect: Create baseline experimentsnixtla-usage-optimizer: Evaluate cost-effectivenesstools
This skill enables Claude to create and execute load tests for performance validation. It is designed to generate load test scripts using tools like k6, JMeter, and Artillery, based on specified test scenarios. Use this skill when the user requests to create a "load test", conduct "performance testing", validate "application performance", or needs a "stress test" to identify breaking points in the application. The skill helps define performance thresholds and provides execution instructions.
testing
This skill enables Claude to collect comprehensive infrastructure performance metrics across compute, storage, network, containers, load balancers, and databases. It is triggered when the user requests "collect infrastructure metrics", "monitor server performance", "set up performance dashboards", or needs to analyze system resource utilization. The skill configures metrics collection, sets up aggregation, and helps create infrastructure dashboards for health monitoring and capacity tracking. It supports configuration for Prometheus, Datadog, and CloudWatch.
tools
This skill enables Claude to monitor and analyze application error rates to improve reliability. It is used when the user needs to track and understand errors occurring in their application, including HTTP errors, application exceptions, database errors, external API errors, background job errors, and client-side errors. Use this skill when the user asks to "monitor errors", "analyze error rates", "track application errors", or requests help with "error monitoring". It sets up comprehensive error tracking and alerting based on defined thresholds.
development
This skill automates the setup of distributed tracing for microservices. It helps developers implement end-to-end request visibility by configuring context propagation, span creation, trace collection, and analysis. Use this skill when the user requests to set up distributed tracing, implement observability, or troubleshoot performance issues in a microservices architecture. The skill is triggered by phrases such as "setup tracing", "implement distributed tracing", "configure opentelemetry", or "add observability to microservices".