Install any skill in seconds. Free to start, no credit card required.
Get Started Free →ZenML — ML pipeline orchestration. Connect ML tools (MLflow, W&B, Airflow, Kubeflow) into portable pipelines. Caching, versioning, and cloud-agnostic stack management for production ML workflows.
.claude/skills/mkurman-zenml/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | -37% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -14% | 0% |
| case-06 | ✗→✓ | ▲ Improved | -39% | 0% |
| case-13 | ✗→✓ | ▲ Improved | -24% | 0% |
| case-20 | ✗→✓ | ▲ Improved | -33% | 0% |
ZenML is an MLOps framework for portable, reproducible ML pipelines. It provides a standardized pipeline abstraction with built-in tracking, caching, artifact management, and integration with major ML and cloud tools.
bashuv pip install zenml
pythonfrom zenml import pipeline, step @step def load_data() -> dict: return {"data": [1, 2, 3], "labels": [0, 1, 0]} @step def train_model(data: dict) -> str: return f"Trained on {len(data['data'])} samples" @pipeline def training_pipeline(): data = load_data() model = train_model(data) training_pipeline()
python# Steps are automatically cached — rerunning only changes @step(enable_cache=True) def preprocess(raw: dict) -> dict: return {"features": [x * 2 for x in raw["data"]]} # Changing parameters invalidates cache @step def train_with_params(data: dict, lr: float = 0.01) -> str: return f"Trained with lr={lr}"
bashzenml stack register my_stack -o default -a default zenml stack set my_stack zenml deploy
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | pass→pass | 10,543 | 6,215 | -41% | 1 | 1 | 0% | 2,033 | 1,612 | -21% | 0 | 0 | — |
case-02 | fail→pass | 6,781 | 2,419 | -64% | 1 | 1 | 0% | 1,231 | 774 | -37% | 0 | 0 | — |
case-03 | pass→pass | 4,385 | 1,565 | -64% | 1 | 1 | 0% | 739 | 582 | -21% | 0 | 0 | — |
case-04 | pass→pass | 9,952 | 3,443 | -65% | 1 | 1 | 0% | 1,743 | 883 | -49% | 0 | 0 | — |
case-05 | fail→pass | 12,509 | 15,159 | +21% | 1 | 1 | 0% | 2,081 | 1,793 | -14% | 0 | 0 | — |
case-06 | fail→pass | 18,222 | 7,831 | -57% | 1 | 1 | 0% | 2,838 | 1,730 | -39% | 0 | 0 | — |
case-07 | pass→pass | 2,851 | 3,683 | +29% | 1 | 1 | 0% | 440 | 698 | +59% | 0 | 0 | — |
case-08 | pass→pass | 4,199 | 2,255 | -46% | 1 | 1 | 0% | 573 | 687 | +20% | 0 | 0 | — |
case-09 | pass→pass | 5,388 | 1,964 | -64% | 1 | 1 | 0% | 900 | 573 | -36% | 0 | 0 | — |
case-10 | fail→fail | 4,596 | 1,876 | -59% | 1 | 1 | 0% | 488 | 619 | +27% | 0 | 0 | — |
case-11 | pass→pass | 10,256 | 5,988 | -42% | 1 | 1 | 0% | 1,913 | 1,356 | -29% | 0 | 0 | — |
case-12 | pass→pass | 5,378 | 3,223 | -40% | 1 | 1 | 0% | 849 | 870 | +2% | 0 | 0 | — |
case-13 | fail→pass | 5,352 | 2,180 | -59% | 1 | 1 | 0% | 988 | 749 | -24% | 0 | 0 | — |
case-14 | pass→pass | 6,132 | 1,406 | -77% | 1 | 1 | 0% | 938 | 550 | -41% | 0 | 0 | — |
case-15 | pass→pass | 4,095 | 1,700 | -58% | 1 | 1 | 0% | 617 | 525 | -15% | 0 | 0 | — |
case-16 | pass→pass | 5,165 | 5,497 | +6% | 1 | 1 | 0% | 835 | 1,360 | +63% | 0 | 0 | — |
case-17 | pass→pass | 10,977 | 6,943 | -37% | 1 | 1 | 0% | 1,922 | 1,544 | -20% | 0 | 0 | — |
case-18 | pass→pass | 1,825 | 1,513 | -17% | 1 | 1 | 0% | 223 | 572 | +157% | 0 | 0 | — |
case-19 | pass→pass | 2,157 | 1,521 | -29% | 1 | 1 | 0% | 279 | 561 | +101% | 0 | 0 | — |
case-20 | fail→pass | 9,887 | 4,854 | -51% | 1 | 1 | 0% | 1,789 | 1,191 | -33% | 0 | 0 | — |
case-21 | pass→pass | 8,397 | 5,304 | -37% | 1 | 1 | 0% | 1,589 | 1,316 | -17% | 0 | 0 | — |
case-22 | pass→pass | 7,302 | 3,594 | -51% | 1 | 1 | 0% | 1,208 | 945 | -22% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +23 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.