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.
npx skills add vignesh2027/Claude-Agentic-Skills2.0-version --skill mlops-engineergit clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-versionWrote 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.
[](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/mlops-engineer)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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
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.
- 8d ago First seen · 61 lines · 71 tokens per session scan A 5bb8a4d9747b
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.
Other skills, from other repositories
gcp-architect
Design Google Cloud architectures — GKE, Cloud Run, BigQuery, Pub/Sub, and Cloud Spanner solutions.
Vizra ADK Memory System
Implement persistent memory, session context, and vector memory (RAG) for AI agents.
llm-router-ops
Operate a self-hosted OpenAI-compatible LLM router/proxy (e.g. LiteLLM) in front of one or more backends — the minimal client-wiring block for every client type, the context-window advertisement gotcha, the env-vs-persisted-config gotcha, and why an unauthenticated health probe should 401, not 200. Use when wiring a…
aws-architect
Design AWS architectures — VPCs, EC2, ECS, Lambda, RDS, S3, CloudFront, and Well-Architected Framework reviews.
azure-architect
Design Azure architectures — AKS, Functions, Cosmos DB, Service Bus, and Azure AD integration patterns.
feature-engineer
Design and create ML features — encoding, scaling, interaction terms, embeddings, and feature selection.