003-skills/.claude/skills-backup-20251210-155310/nixtla-prod-pipeline-generator/SKILL.md
Transforms forecasting experiments into production-ready inference pipelines with Airflow, Prefect, or cron orchestration. Generates ETL tasks, monitoring, error handling, and deployment configs. Activates when user needs to deploy forecasts to production, schedule batch inference, operationalize models, or create production pipelines.
npx skillsauth add intent-solutions-io/plugins-nixtla nixtla-prod-pipeline-generatorInstall 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.
Transform validated forecasting experiments into production-ready inference pipelines with proper orchestration, monitoring, and error handling.
This skill productionizes Nixtla forecasting workflows by generating complete deployment artifacts:
All pipelines implement: Extract -> Transform -> Forecast -> Load -> Monitor
Required:
forecasting/config.ymlEnvironment Variables:
NIXTLA_API_KEY: TimeGPT API key (if using TimeGPT)FORECAST_DATA_SOURCE: Production data connection stringFORECAST_DESTINATION: Output destination for forecastsInstallation:
pip install nixtla pandas statsforecast # Core
pip install apache-airflow # For Airflow
pip install prefect # For Prefect
Load experiment from forecasting/config.yml:
python {baseDir}/scripts/read_experiment.py --config forecasting/config.yml
Choose based on requirements:
python {baseDir}/scripts/generate_pipeline.py \
--config forecasting/config.yml \
--platform airflow \
--output pipelines/
python {baseDir}/scripts/add_monitoring.py \
--pipeline pipelines/forecast_dag.py \
--metrics smape,mase
Follow generated pipelines/README.md for deployment instructions.
Error: Config file not found
Solution: Run nixtla-experiment-architect first to create config
Error: NIXTLA_API_KEY not set
Solution: Export your TimeGPT API key or use StatsForecast baselines
Error: Database connection failed
Solution: Verify FORECAST_DATA_SOURCE connection string
Error: Forecast quality check failed
Solution: Pipeline auto-falls back to baseline models
python {baseDir}/scripts/generate_pipeline.py \
--config forecasting/config.yml \
--platform airflow \
--schedule "0 6 * * *" \
--output pipelines/
Output:
Generated: pipelines/forecast_dag.py
Schedule: Daily at 6am
Tasks: extract -> transform -> forecast -> load -> monitor
python {baseDir}/scripts/generate_pipeline.py \
--config forecasting/config.yml \
--platform cron \
--output pipelines/
{baseDir}/scripts/{baseDir}/assets/templates/Related Skills:
nixtla-experiment-architect: Creates experiments to productionizenixtla-timegpt-finetune-lab: Fine-tuned models for pipelinesnixtla-usage-optimizer: Cost-effective routing strategiestools
This skill assists with managing database sharding strategies. It is activated when the user needs to implement horizontal database sharding to scale beyond single-server limitations. The skill supports designing sharding strategies, distributing data across multiple database instances, and implementing consistent hashing, automatic rebalancing, and cross-shard query coordination. Use this skill when the user mentions "database sharding", "sharding implementation", "scale database", or "horizontal partitioning". The plugin helps design and implement sharding for high-scale applications.
tools
This skill enables Claude to perform comprehensive database security scans using the database-security-scanner plugin. It is triggered when the user requests a security assessment of a database, including identifying vulnerabilities like weak passwords, SQL injection risks, and insecure configurations. The skill leverages OWASP guidelines to ensure thorough coverage and provides remediation suggestions. Use this skill when the user asks to "scan database security", "check database for vulnerabilities", "perform OWASP compliance check on database", or "assess database security posture". The plugin supports PostgreSQL and MySQL.
testing
This skill enables Claude to design and visualize database schemas. It leverages normalization guidance (1NF through BCNF), relationship mapping, and ERD generation to create efficient and well-structured databases. Use this skill when the user requests to "design a database schema", "create a database model", "generate an ERD", "normalize a database", or needs help with "database design best practices". The skill is triggered by terms like "database schema", "ERD diagram", "database normalization", and "relational database design".
tools
This skill enables Claude to manage database replication, failover, and high availability configurations using the database-replication-manager plugin. It is designed to assist with tasks such as setting up master-slave replication, configuring automatic failover, monitoring replication lag, and implementing read scaling. Use this skill when the user requests help with "database replication", "failover configuration", "high availability", "replication lag", or "read scaling" for databases like PostgreSQL or MySQL. The plugin facilitates both physical and logical replication strategies.