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 ilyasibrahim/claude-agents-coordination --skill mlops-best-practicesgit clone --depth 1 https://github.com/ilyasibrahim/claude-agents-coordinationWrote 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/ilyasibrahim/claude-agents-coordination/mlops-best-practices)<a href="https://agentmods.dev/skills/ilyasibrahim/claude-agents-coordination/mlops-best-practices"><img src="https://agentmods.dev/badge/skills/ilyasibrahim/claude-agents-coordination/mlops-best-practices/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/ilyasibrahim/claude-agents-coordination/mlops-best-practices"><img src="https://agentmods.dev/badge/skills/ilyasibrahim/claude-agents-coordination/mlops-best-practices.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.00047 | $0.02311 |
| Opus 5 | $0.00023 | $0.01156 |
| Sonnet 5 | $0.00009 | $0.00462 |
| Haiku 4.5 | $0.00005 | $0.00231 |
Grade A, and why
mlops-best-practices 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 11d 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 — 429 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MLOps Best Practices
Reproducibility
Essential Elements
1. Version Everything:
- Code (Git)
- Data (DVC, hash checksums)
- Models (model registry with versioning)
- Environment (requirements.txt, Docker)
- Hyperparameters (config files, MLflow)
2. Set Random Seeds:
import random
import numpy as np
import torch
def set_seed(seed=42):
random.seed(seed)
np.random.seed(seed)
torch.manual_seed(seed)
if torch.cuda.is_available():
torch.cuda.manual_seed_all(seed)
3. Document Dependencies:
# requirements.txt
transformers==4.35.0
torch==2.1.0
pandas==2.1.3
scikit-learn==1.3.2
Experiment Tracking
Using MLflow
import mlflow
def train_with_tracking(model, train_data, config):
"""Train model with experiment tracking"""
with mlflow.start_run():
# Log hyperparameters
mlflow.log_params(config)
# Train model
model.fit(train_data)
# Evaluate
metrics = evaluate(model, val_data)
# Log metrics
mlflow.log_metrics(metrics)
# Log model
mlflow.sklearn.log_model(model, "model")
# Log artifacts (plots, configs)
mlflow.log_artifact("confusion_matrix.png")
Experiment Organization
experiments/
├── exp_001_baseline/
│ ├── config.yaml
│ ├── results.json
│ └── model.pkl
├── exp_002_xlm_r/
│ ├── config.yaml
│ ├── results.json
│ └── model/
└── exp_003_ensemble/
├── config.yaml
├── results.json
└── models/
Model Versioning
Model Registry Pattern
class ModelRegistry:
"""Simple model registry"""
def register_model(self, model, version, metrics, metadata):
"""Register new model version"""
model_info = {
'version': version,
'metrics': metrics,
'metadata': metadata,
'timestamp': datetime.now().isoformat(),
'status': 'staging' # staging, production, archived
}
# Save model
model_path = f'models/v{version}/'
os.makedirs(model_path, exist_ok=True)
torch.save(model.state_dict(), f'{model_path}/model.pt')
# Save metadata
with open(f'{model_path}/metadata.json', 'w') as f:
json.dump(model_info, f, indent=2)
return model_path
def promote_to_production(self, version):
"""Promote model version to production"""
# Update status
metadata = self.load_metadata(version)
metadata['status'] = 'production'
metadata['production_timestamp'] = datetime.now().isoformat()
# Save updated metadata
self.save_metadata(version, metadata)
# Update production symlink
os.symlink(f'models/v{version}', 'models/production', exist_ok=True)
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.
- 11d ago First seen · 429 lines · 47 tokens per session scan A ee583e690023
mlops-best-practices is a skill published in the GitHub repository ilyasibrahim/claude-agents-coordination (83 stars, last pushed 3mo ago), licensed Unlicense. It adds 47 tokens to every session and 2,311 once invoked, about $0.0002 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-08-30.
Other skills, from other repositories
airflow-dag-patterns
Build production Apache Airflow DAGs with best practices for operators, sensors, testing, and deployment. Use when creating data pipelines, orchestrating workflows, or scheduling batch jobs.
tracely
Instrument AI agents with Tracely and turn their production traces into CI gates. Use when the user mentions Tracely, tracely-ai, tracelysdk, the tracely CLI, or asks to trace/observe an AI agent, add LLM evaluators or LLM-as-a-judge columns, debug why a trace or conversation isn't showing up, wire agent regression…
temps-mcp-setup
Configure Temps as an MCP (Model Context Protocol) server so AI assistants can interact with a Temps instance directly -- listing/inspecting projects and deployments, and (when write mode is enabled) triggering deployments with human confirmation. Use when the user wants to: (1) Set up the Temps MCP server, (2)…
architecture-paradigm-pipeline
Applies pipes-and-filters for sequential data transformations. Use when data flows through discrete stages like ETL, streaming analytics, or CI/CD pipelines.
adf-master
Azure Data Factory (ADF) CI/CD, deployment, and pipeline development. PROACTIVELY activate for: (1) ADF CI/CD setup (npm validation, ARM template export), (2) ADF ARM template deployment, (3) ADF npm build validation in CI, (4) PrePostDeploymentScript for trigger and resource cleanup, (5) ADF GitHub Actions workflows…
llmops-platform-engineering
Build production LLMOps platforms with CI/CD, model promotion workflows, evaluation gates, rollback, and governance across cloud and self-hosted inference.