ml-pipeline-workflow

Build end-to-end MLOps pipelines from data preparation through model deployment.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/listentomi/Orcajack --skill ml-pipeline-workflow-listentomi
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: ml-pipeline-workflow
Source: https://github.com/listentomi/Orcajack/tree/main/skills/science/ml-pipeline-workflow
Command: npx skills add https://github.com/listentomi/Orcajack --skill ml-pipeline-workflow-listentomi

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and assets (resource) components.

What problem does it solve? Building production ML systems requires coordinating many disconnected stages—data validation, feature engineering, training, evaluation, and deployment—which often leads to fragile, non-reproducible workflows. This Skill provides structured guidance for orchestrating the full ML lifecycle into a coherent, automated pipeline. ## Core Features & Use Cases - Pipeline Architecture: Design DAG-based workflows with Airflow, Dagster, Kubeflow, or Prefect, including dependency management, retries, and error handling. - Training & Validation: Orchestrate training jobs, track experiments with MLflow or Weights & Biases, and run validation suites with regression detection. - Deployment Automation: Apply canary, blue-green, and shadow deployment patterns with rollback mechanisms and monitoring. - Use Case: A data science team needs to automate retraining of a churn model whenever new data arrives. Use this Skill to design a pipeline that validates incoming data, retrains the model, compares it against the baseline, and rolls it out gradually with canary deployment. ## Quick Start Ask the AI to design an end-to-end ML pipeline with data validation, training, evaluation, and canary deployment stages for your model.

Frequently Asked Questions about ml-pipeline-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build an end-to-end ML pipeline?▼

Define modular stages for data ingestion, validation, feature engineering, training, evaluation, and deployment, then wire them together with a DAG orchestrator like Airflow or Kubeflow. Version your data and models, and add monitoring at each stage.

Airflow vs Dagster vs Kubeflow for ML pipeline orchestration?▼

Airflow suits general DAG-based scheduling, Dagster focuses on asset-based data pipelines with strong typing, and Kubeflow is Kubernetes-native for containerized ML workloads. Choose based on your infrastructure and whether you need Kubernetes-native execution.

How do I automate model retraining when data changes?▼

Set up a continuous training pipeline triggered on a schedule or by data drift detection. The pipeline should validate new data, retrain the model, compare metrics against the baseline, and only deploy if performance improves.

What deployment strategy should I use for ML models?▼

Start with shadow deployments to observe behavior without affecting users, then use canary releases to route a small traffic percentage to the new model. Keep rollback mechanisms ready and monitor latency, throughput, and prediction drift.

Why does my ML pipeline fail between stages?▼

Failures usually come from missing dependencies, schema mismatches at stage boundaries, or unavailable data. Check logs per stage, validate inputs and outputs at each boundary, and test components in isolation before running the full DAG.