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 agentmods add skills/chandrudp29/skillhub/mle-workflownpx skills add chandrudp29/skillhub --skill mle-workflowgit clone --depth 1 https://github.com/chandrudp29/skillhubWrote 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/chandrudp29/skillhub/mle-workflow)<a href="https://agentmods.dev/skills/chandrudp29/skillhub/mle-workflow"><img src="https://agentmods.dev/badge/skills/chandrudp29/skillhub/mle-workflow.svg" alt="Measured on agentmods" 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 | $0.00039 | $0.01636 |
| Opus 5 | $0.00019 | $0.00818 |
| Sonnet 5 | $0.00008 | $0.00327 |
| Haiku 4.5 | $0.00004 | $0.00164 |
Grade A, and why
mle-workflow 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 5d 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 — 207 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ML Engineering Workflow
Turns model work into production ML systems. Use only the stages that match your system — don't force heavyweight MLOps onto a simple classifier.
When to Use
- Building a production ML feature (classifier, ranker, embeddings, LLM pipeline)
- Converting notebook code into a reproducible training pipeline
- Designing evaluation criteria before training starts
- Debugging data drift, stale features, or training/serving skew
- Planning model deployment and rollback
Stage 1 — Data Contract
Define before writing code. Everything downstream depends on this.
# data_contract.py
from dataclasses import dataclass
from typing import Optional
@dataclass
class TrainingExample:
text: str # input feature
label: str # target: "positive" | "negative" | "neutral"
source: str # where this came from
created_at: str # ISO 8601 timestamp
metadata: Optional[dict] = None
# Constraints (validate in data loader, not model)
LABEL_SET = {"positive", "negative", "neutral"}
MAX_TEXT_TOKENS = 512
MIN_EXAMPLES_PER_LABEL = 100
Document: feature schema, label definitions (with examples of edge cases), known data quality issues, train/val/test split strategy, and class balance.
Gate: do not proceed until you have ≥ MIN_EXAMPLES_PER_LABEL for every label.
Stage 2 — Baseline First
Before trying a complex model, establish a baseline you can beat:
- Rule-based: keyword matching, regex, heuristics
- Classical ML: TF-IDF + logistic regression, or fastText
- Pretrained zero-shot: test the LLM without fine-tuning first
Baselines are not just warm-ups. They define the performance floor and often expose that a simpler model is good enough.
from sklearn.linear_model import LogisticRegression
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.pipeline import Pipeline
from sklearn.metrics import classification_report
baseline = Pipeline([
("tfidf", TfidfVectorizer(max_features=10_000)),
("clf", LogisticRegression(max_iter=1000))
])
baseline.fit(X_train, y_train)
print(classification_report(y_test, baseline.predict(X_test)))
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 5d ago First seen · 207 lines · 39 tokens per session scan A 21e50f1068d4
mle-workflow is a skill published in the GitHub repository chandrudp29/skillhub (13 stars, last pushed 2mo ago), licensed MIT. It adds 39 tokens to every session and 1,636 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
ai-engineer
Builds production AI/ML systems — model training, fine-tuning, MLOps pipelines, model serving, evaluation frameworks, RAG optimization, and agent orchestration at scale. Use when the user asks to build, train, or deploy ML models, set up MLOps pipelines, optimize RAG systems, create inference endpoints, or design…
mlops-workflows
Comprehensive MLOps workflows for the complete ML lifecycle - experiment tracking, model registry, deployment patterns, monitoring, A/B testing, and production best practices with MLflow.
mlflow
Track ML experiments, manage model registry with versioning, deploy models to production, and reproduce experiments with MLflow - framework-agnostic ML lifecycle platform.
setup
Configure MLflow tracing for Claude Code.
trulens-evaluation-setup
Configure feedback functions and selectors for TruLens evaluations.
trulens-evaluation-workflow
Systematically evaluate your LLM application with TruLens.