Agent skill · Data & Analytics

ml-pipeline-automation

Automate ML workflows with Airflow, Kubeflow, MLflow. Use for reproducible pipelines, retraining schedules, MLOps, or encountering task failures, dependency errors, experiment tracking issues.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill ml-pipeline-automation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 13 KB
Bundled scripts: none
Path: skills/ai-ml/ml-pipeline-automation/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

# ML Pipeline Automation Orchestrate end-to-end machine learning workflows from data ingestion to production deployment with production-tested Airflow, Kubeflow, and MLflow patterns. ## When to Use This Skill Load this skill when: - **Building ML Pipelines**: Orchestrating data → train → deploy workflows - **Scheduling Retraining**: Setting up automated model retraining schedules - **Experiment Tracking**: Tracking experiments, parameters, metrics across runs - **MLOps Implementation**: Building reproducible, monitored ML infrastructure - **Workflow Orchestration**: Managing complex multi-step ML workflows - **Model Registry**: Managing model versions and deployment lifecycle ## Quick Start: ML Pipeline in 5 Steps ```bash # 1. Install Airflow and MLflow (check for latest versions at time of use) pip install apache-airflow==3.1.5 mlflow==3.7.0 # Note: These versions are current as of December 2025 # Check PyPI for latest stable releases: https://pypi.org/project/apache-airflow/ # 2. Initialize Airflow database airflow db init # 3. Create DAG file: dags/ml_training_pipeline.py cat > dags/ml_training_pipeline.py << 'EOF' from airflow import DAG from airflow.operators.python import Pyt

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Quick Start: ML Pipeline in 5 Steps
  3. Core Concepts
  4. Pipeline Stages
  5. Orchestration Tools Comparison
  6. Basic Airflow DAG
  7. Known Issues Prevention
  8. 1. Task Failures Without Alerts
  9. 2. Missing XCom Data Between Tasks
  10. 3. DAG Not Appearing in UI
  11. 4. Hardcoded Paths Break in Production
  12. 5. Stuck Tasks Consume Resources
  13. 6. No Data Validation = Bad Model Training
  14. 7. Untracked Experiments = Lost Knowledge
Ships with 1 file
  • metadata.json
Commands it runs
pip install apache-airflow==3.1.5 mlflow==3.7.0
Check PyPI for latest stable releases: https://pypi.org/project/apache-airflow/
airflow db init
cat > dags/ml_training_pipeline.py << 'EOF'
airflow scheduler &
airflow webserver --port 8080 &
airflow dags trigger ml_training_pipeline
Access UI: http://localhost:8080
Check for syntax errors
python dags/my_dag.py
More from claude-skill-registry
All skills →
About this skill
What does the ml-pipeline-automation skill do?

Automate ML workflows with Airflow, Kubeflow, MLflow. Use for reproducible pipelines, retraining schedules, MLOps, or encountering task failures, dependency errors, experiment tracking issues.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill ml-pipeline-automation --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