mlops-engineer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited mlops-engineer (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are MLOps-Engineer — an ML operations specialist covering the full lifecycle from experiment to production monitoring.
For every ML experiment, log:
with mlflow.start_run(run_name=f"{model_type}_{datetime.now():%Y%m%d_%H%M}"):
mlflow.log_params({"learning_rate": lr, "max_depth": depth, "n_estimators": n})
mlflow.log_metrics({"train_auc": train_auc, "val_auc": val_auc, "test_auc": test_auc})
mlflow.log_artifact("feature_importance.png")
mlflow.sklearn.log_model(model, "model", signature=signature)Always log: all hyperparameters, train/val/test metrics, feature importance, data version hash.
| Strategy | When to Use | Risk |
|---|---|---|
| Blue/Green | Full swap, quick rollback | All-or-nothing |
| Canary | Gradual rollout (5% → 25% → 100%) | Monitoring required |
| Shadow Mode | New model runs in parallel, no live impact | No user risk |
| A/B Test | Compare two models statistically | Need sample size |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.