Skip to content
ai-supply.store
खोजेंश्रेणियाँलीडरबोर्डसमुदायAgent APIFAQ
साइन इनमुफ़्त साइन अप
catalog / DevOps & Infra / ZenML
⬡PipelineDevOps & InfraFree

ZenML

Framework-agnostic MLOps framework — build portable, production-ready ML pipelines that run anywhere.

@ai-supply
इंस्टॉल79k
⟳ upstream 0.96.2 · updated 11d ago
↗ सोर्स रिपॉज़िटरी
← More DevOps & InfraDevOps & Infra leaderboard →How we grade security →Source ↗
✓ Grade A · 100/100 · SafeSecurity assessment
✓No compromise signals40capabilities surfaced7of 20 OWASP controls clear
Broad capability surfaceBroad capability surfaceLow-confidence secret matchPrompt-injection phrasing
scanned 9d ago · partial·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

ZenML

ZenML is an extensible, open-source MLOps framework for building portable, production-ready machine learning pipelines. It provides a pipeline abstraction that is agnostic to the underlying infrastructure — the same pipeline code runs on a local laptop, Airflow, Kubeflow, Vertex AI, SageMaker, or Azure ML without changes.

Key Features

  • Infrastructure agnostic: run pipelines locally or on 50+ integrations (Kubeflow, Airflow, Vertex, SageMaker, Azure ML)
  • Stack concept: decouple ML code from infrastructure config (orchestrator + artifact store + model deployer)
  • Artifact versioning: automatic tracking of all data artifacts and model versions
  • Step caching: skip already-run steps for faster iterations
  • Built-in integrations: MLflow, W&B, evidently, Seldon, BentoML, Great Expectations
  • ZenML Pro for team dashboards and managed infrastructure

Quick Start

from zenml import pipeline, step

@step
def load_data() -> pd.DataFrame:
    return pd.read_csv("data.csv")

@step
def train_model(data: pd.DataFrame) -> Any:
    model = RandomForestClassifier()
    model.fit(data.drop("label", axis=1), data["label"])
    return model

@pipeline
def training_pipeline():
    data = load_data()
    train_model(data)

training_pipeline()

Install via ai-supply

npx ai-supply add zenml-mlops-framework

Curated mirror of the open-source ZenML (Apache-2.0). Get it from the source.

Rating rank
#1
of 23 in DevOps & Infra
Install rank
#14
of 23 in DevOps & Infra
Security score
100/100 · A
safe
Security rank
#1
of 23 in DevOps & Infra
Installs
79k
cat avg 212k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the DevOps & Infra leaderboard →
✓ Security: Safe · 100100/100 · grade Ascanned 9d ago
✓ no compromise signals40 risk-surface · 7/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

What this capability can do · med confidence (static)
⚑ filesystem⚑ shell⚑ network⚑ secrets
egress → docs.zenml.io, json.schemastore.org, woodruffw.github.io, zenml.io, astral.sh, docs.github.com, sealiesoftware.com, help.github.com +32
464 steps⚑ uses secretsjson.schemastore.orgdocs.zenml.iozenml.ioactions/setup-python@v5.3.0actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39peter-evans/find-comment@b30e6a3c0ed37e7c023ccd3f1db5c6c0b0c23aad

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM01Prompt Injectionhigh
Adversarial instructions embedded in an artifact that hijack a downstream LLM.
•Prompt-injection phrasing — instruction-subversion language detected · zenml/docs/book/how-to/deployment/deployment_settings.md (CWE-77)risk surface
⚠LLM02Sensitive Information Disclosurehigh
Secrets, credentials or PII shipped inside the artifact.
•Low-confidence secret match — possible: JWT · zenml/docs/book/api-docs/oss-api/oss-api/getting-started.md (CWE-798)risk surface
•Embedded credentials — found: AWS access key id · zenml/docs/book/component-guide/service-connectors/connector-types/aws-service-connector.md (CWE-798)expected
•Embedded credentials — found: DB connection string with credentials · zenml/docs/book/getting-started/zenml-pro/deploy-workspace-k8s.md (CWE-798)expected
⚠LLM05Improper Output Handlinghigh
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — pipe-to-shell install · zenml/.github/workflows/ci-slow.yml (CWE-494)expected
•Suspicious code patterns — destructive rm -rf /; pipe-to-shell install · zenml/.github/workflows/integration-test-fast-services.yml (CWE-78)expected
•Suspicious code patterns — destructive rm -rf / · zenml/.github/workflows/linting.yml (CWE-78)expected
•Suspicious code patterns — dynamic code execution · zenml/docs/_static/klaro.max.js (CWE-95)expected
⚠LLM06Excessive Agencyhigh
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 1 distinct host(s) · zenml/.agents/skills/zenml-repo-workflows/SKILL.mdexpected
•External endpoints declared — 2 distinct host(s) · zenml/.github/ISSUE_TEMPLATE/config.ymlexpected
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · zenml/.github/workflows/dependency-audit.yml (CWE-272)risk surface
•Broad capability surface — 4 high-impact capability categories referenced — verify least-privilege · zenml/.github/workflows/integration-test-fast-services.yml (CWE-272)risk surface
•Egress to a private/loopback host — 127.0.0.1 · zenml/.github/workflows/integration-test-fast-services.yml (CWE-918)expected
•External endpoints declared — 5 distinct host(s) · zenml/.github/workflows/integration-test-fast-services.ymlexpected
•External endpoints declared — 4 distinct host(s) · zenml/.github/workflows/integration-test-fast.ymlexpected
•Egress to a private/loopback host — 0.0.0.0, 127.0.0.1 · zenml/.github/workflows/markdown_check_config.json (CWE-918)expected
•External endpoints declared — 3 distinct host(s) · zenml/.github/workflows/markdown_check_config.jsonexpected
•External endpoints declared — 25 distinct host(s) · zenml/README.mdexpected
•External endpoints declared — 6 distinct host(s) · zenml/docs/book/component-guide/artifact-stores/azure.mdexpected
•External endpoints declared — 8 distinct host(s) · zenml/docs/book/component-guide/artifact-stores/b2.mdexpected
•External endpoints declared — 11 distinct host(s) · zenml/docs/book/component-guide/artifact-stores/s3.mdexpected
•External endpoints declared — 9 distinct host(s) · zenml/docs/book/component-guide/container-registries/azure.mdexpected
•External endpoints declared — 7 distinct host(s) · zenml/docs/book/component-guide/container-registries/gcp.mdexpected
•External endpoints declared — 13 distinct host(s) · zenml/docs/book/component-guide/model-deployers/seldon.mdexpected
•Egress to a private/loopback host — 0.0.0.0 · zenml/docs/book/component-guide/orchestrators/airflow.md (CWE-918)expected
•External endpoints declared — 10 distinct host(s) · zenml/docs/book/component-guide/orchestrators/airflow.mdexpected
•Egress to a private/loopback host — 169.254.169.254 · zenml/docs/book/component-guide/service-connectors/connector-types/gcp-service-connector.md (CWE-918)expected
•External endpoints declared — 23 distinct host(s) · zenml/docs/book/getting-started/deploying-zenml/deploy-with-helm.mdexpected
⚠LLM07System Prompt Leakagehigh
Secrets, internal hosts or proprietary logic exposed in shipped prompts.
•Low-confidence secret match — possible: JWT · zenml/docs/book/api-docs/oss-api/oss-api/getting-started.md (CWE-798)risk surface
•Internal host / private infrastructure reference — shipped content references a private IP range or internal-only host · zenml/docs/book/component-guide/artifact-stores/s3.md (CWE-200)expected
•Embedded credentials — found: AWS access key id · zenml/docs/book/component-guide/service-connectors/connector-types/aws-service-connector.md (CWE-798)expected
•Embedded credentials — found: DB connection string with credentials · zenml/docs/book/getting-started/zenml-pro/deploy-workspace-k8s.md (CWE-798)expected
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
◷LLM10Unbounded ConsumptionRuntime-enforced
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
✓LLM03Supply ChainPassed
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM08Vector and Embedding WeaknessesPassed
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
OWASP Machine Learning Security Top 10
⚠ML02Data Poisoninghigh
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
•Prompt-injection phrasing — instruction-subversion language detected · zenml/docs/book/how-to/deployment/deployment_settings.md (CWE-77)risk surface
⚠ML09Output Integrityhigh
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — pipe-to-shell install · zenml/.github/workflows/ci-slow.yml (CWE-494)expected
•Suspicious code patterns — destructive rm -rf /; pipe-to-shell install · zenml/.github/workflows/integration-test-fast-services.yml (CWE-78)expected
•Suspicious code patterns — destructive rm -rf / · zenml/.github/workflows/linting.yml (CWE-78)expected
•Suspicious code patterns — dynamic code execution · zenml/docs/_static/klaro.max.js (CWE-95)expected
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML06AI Supply ChainPassed
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (12) · hygiene / uncategorized
•Suspicious network references — raw IP URL (7 URLs) · zenml/.github/workflows/integration-test-fast-services.ymlexpected
•Suspicious network references — raw IP URL (8 URLs) · zenml/.github/workflows/integration-test-slow-services.ymlexpected
•Suspicious network references — raw IP URL (3 URLs) · zenml/.github/workflows/markdown_check_config.jsonexpected
•Unrecognized file type — '.ini' is not on the allowlist · zenml/alembic.inirisk surface
•Suspicious network references — raw IP URL (6 URLs) · zenml/docs/README.mdexpected
•Suspicious network references — raw IP URL (14 URLs) · zenml/docs/book/api-docs/oss-api/oss-api/getting-started.mdexpected
•Suspicious network references — raw IP URL (26 URLs) · zenml/docs/book/component-guide/orchestrators/airflow.mdexpected
•Suspicious network references — raw IP URL (21 URLs) · zenml/docs/book/component-guide/service-connectors/auth-management.mdexpected
•Suspicious network references — raw IP URL (60 URLs) · zenml/docs/book/component-guide/service-connectors/connector-types/gcp-service-connector.mdexpected
•Suspicious network references — raw IP URL (2 URLs) · zenml/docs/book/component-guide/service-connectors/connector-types/kubernetes-service-connector.mdexpected
•Suspicious network references — raw IP URL (13 URLs) · zenml/docs/book/component-guide/service-connectors/service-connectors-guide.mdexpected
•Suspicious network references — raw IP URL (32 URLs) · zenml/docs/book/how-to/manage-zenml-server/migration-guide/migration-zero-twenty.mdexpected
✔ verified source · pinned partial
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/zenml-mlops-framework/check). Click a policy:

Consume ZenML programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/zenml-mlops-framework

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/zenml-mlops-framework/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add zenml-mlops-framework

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/zenml-mlops-framework/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "zenml-mlops-framework" })
OpenAPI spec →
vlatest
✓ Security: Safe · 1001mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

मुफ़्त, सुरक्षा-जाँची गई AI क्षमताएँ — skills, MCPs, plugins, agents, datasets और बहुत कुछ, हर एक ग्रेडेड और ताज़गी-ट्रैक्ड, और इंसानों तथा agents दोनों के लिए बनाई गई।

api · v3.1status · all green
संपर्क करें
support@ai-supply.storesecurity@ai-supply.store
कैटलॉग
  • खोजें
  • श्रेणियाँ
  • लीडरबोर्ड
  • बेंचमार्क
  • सुरक्षा
  • Scan a repo
समुदाय
  • समुदाय
  • FAQ
एजेंट के लिए
  • क्विकस्टार्ट (60s)
  • एजेंट अधिकृत करें
  • Agent API
  • OpenAPI स्पेसिफिकेशन
बिल्डर्स के लिए
  • प्रकाशित करें
  • डैशबोर्ड
खाता
  • खाता बनाएँ
  • साइन इन
  • सेटिंग्स
कानूनी
  • नियम व शर्तें
  • प्रकाशक अनुबंध
  • स्वीकार्य उपयोग नीति
  • गोपनीयता