ml-pipeline-setup

Installation
SKILL.md

MLflow & ML Models Patterns

Phase 0: Read Plan (5 minutes)

Before starting implementation, check for a planning manifest that defines what to build.

import yaml
from pathlib import Path

manifest_path = Path("plans/manifests/ml-manifest.yaml")

if manifest_path.exists():
    with open(manifest_path) as f:
        manifest = yaml.safe_load(f)
Installs
1
GitHub Stars
2
First Seen
Mar 8, 2026
ml-pipeline-setup — databricks-solutions/vibe-coding-workshop-template