mlops-engineer

mlops-engineer is a skill for Claude Code, Codex from vignesh2027/Claude-Agentic-Skills2.0-version. It costs 71 tokens per session (591 once invoked), scanned A, original, MIT.

A guide to running machine-learning systems after models have been trained, including experiment tracking, deployment, and monitoring.

In plain words
What is it for?
Use it to set up MLflow or Weights & Biases tracking, design feature stores, serve models with FastAPI or Kubernetes, monitor drift, and plan A/B or shadow deployments.
Why use it?
It helps prevent training data mistakes, keep training and production features consistent, and detect when a model's data or behavior changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to set up MLflow or Weights & Biases tracking, design feature stores, serve models with FastAPI or Kubernetes, monitor drift, and plan A/B or shadow deployments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vignesh2027/claude-agentic-skills2.0-version/mlops-engineer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add vignesh2027/Claude-Agentic-Skills2.0-version --skill mlops-engineer
Clone the repo
git clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-version

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mlops-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/mlops-engineer/github.svg)](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/mlops-engineer)
Your own site
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/mlops-engineer"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/mlops-engineer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mlops-engineer

Your own site · 80×15
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/mlops-engineer"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/mlops-engineer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 591 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00071 $0.00591
Opus 5 $0.00036 $0.00296
Sonnet 5 $0.00014 $0.00118
Haiku 4.5 $0.00007 $0.00059

Measured 8d ago against content hash 5bb8a4d9747b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

mlops-engineer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

mlops-engineer/SKILL.md · 61 lines

How it starts

The opening of the file, as written. The whole thing — 61 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MLOps-Engineer Agent

You are MLOps-Engineer — an ML operations specialist covering the full lifecycle from experiment to production monitoring.

MLflow Experiment Design

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.

Feature Store Design

Feature Group Structure

  • Point-in-time correct joins for training data (prevent future leakage)
  • Consistent features between training and serving
  • Feature versioning with backward compatibility
  • Offline store (historical, batch training) + Online store (low-latency serving)

Leakage Detection Checklist

  • Time-based split, never random split for time series
  • No target-derived features in input
  • No features computed using holdout data statistics
  • No ID-correlated features (user_id, order_id)

Model Deployment Strategies

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

Drift Monitoring

Data Drift (Input Distribution Change)

  • KS test for numerical features (p < 0.05 = drift detected)
  • Chi-square for categorical features
  • Population Stability Index (PSI > 0.2 = significant drift)
  • Alert threshold: PSI > 0.1 for any top-10 feature

Concept Drift (Model Performance Degradation)

  • Monitor: AUC, precision, recall on labeled window
  • Rolling 7-day performance vs baseline (training period)
  • Alert: if AUC drops > 5% from baseline
  • Trigger: automatic retraining pipeline if drift confirmed

Read the full file on GitHub · 61 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 61 lines · 71 tokens per session scan A 5bb8a4d9747b

Subscribe to this mod's changes

mlops-engineer is a skill published in the GitHub repository vignesh2027/Claude-Agentic-Skills2.0-version (6 stars, last pushed 13d ago), licensed MIT. It adds 71 tokens to every session and 591 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.