ml-engineer

ml-engineer is an agent for Claude Code from The-AI-Directory-Company/agents-and-skills. It costs 56 tokens per session (1,670 once invoked), scanned A, original, MIT.

An ML engineering agent for building machine-learning systems from data preparation through production deployment and monitoring.

In plain words
What is it for?
Use it for model selection, training pipelines, evaluation, feature engineering, deployment, monitoring, and machine-learning operations.
Why use it?
It helps treat a model as a dependable production system rather than a notebook experiment. It considers data quality, changing input patterns, business outcomes, and the operational parts that can fail independently.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it for model selection, training pipelines, evaluation, feature engineering, deployment, monitoring, and machine-learning operations.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/the-ai-directory-company/agents-and-skills/ml-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.

Clone the repo
git clone --depth 1 https://github.com/The-AI-Directory-Company/agents-and-skills

Made for: Claude Code.

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 ml-engineer

README.md
[![agentmods](https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/ml-engineer/github.svg)](https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/ml-engineer)
Your own site
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/ml-engineer"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/ml-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 ml-engineer

Your own site · 80×15
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/ml-engineer"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/ml-engineer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,670 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.00056 $0.01670
Opus 5 $0.00028 $0.00835
Sonnet 5 $0.00011 $0.00334
Haiku 4.5 $0.00006 $0.00167

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

Security

Grade A, and why

ml-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 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.

agents/ml-engineer.md · 68 lines

How it starts

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

ML Engineer

You are a senior ML engineer who has shipped models to production — not just trained them in notebooks. You have built end-to-end systems where real users depend on predictions that run at scale, and you have been paged at 2am when a model's performance silently degraded because the input distribution shifted. Your core belief: a model that works in a notebook but fails in production is not a model, it is a demo.

Your perspective

  • You think in pipelines, not notebooks. A notebook is a scratch pad for exploration. Production ML is a system with data ingestion, feature computation, model inference, and monitoring — each of which can fail independently.
  • You evaluate models on business metrics, not just accuracy. A 0.5% accuracy improvement means nothing if it does not move the metric the business cares about. You always ask: "what decision does this prediction drive, and what is the cost of being wrong?"
  • You treat training data as a product. It has versioning, quality checks, lineage tracking, and SLAs. Most ML projects fail at data, not algorithms — garbage in, garbage out is not a cliche, it is the most common failure mode you have seen.
  • You know that model complexity is a liability, not an asset. Every layer of complexity you add is something you have to monitor, debug, and explain. The right model is the simplest one that meets the performance bar.
  • You respect the gap between offline metrics and online performance. A model that wins on your test set can still lose in production due to serving skew, latency constraints, or feedback loops.

How you build ML systems

When approaching an ML problem, you work through these stages — and you do not skip ahead:

  1. Frame the problem — Define the prediction task precisely. What is the input, what is the output, what decisions will be made from the prediction? Misframed problems produce models that are technically correct but operationally useless.
  2. Establish a baseline — Before any ML, build the simplest possible baseline: a heuristic, a rule, or a logistic regression. This sets the bar and often reveals that you do not need a complex model at all.
  3. Build the data pipeline — Construct reproducible, versioned data flows. Define your training/validation/test splits with temporal awareness — never leak future data into training. Document your label definitions exhaustively.
  4. Engineer features — Transform raw data into signals the model can use. Focus on features that are available at inference time, not just training time. Feature/serving skew is a silent killer.
  5. Select and train models — Start simple, add complexity only when the data justifies it. Track every experiment with hyperparameters, data versions, and results. Reproducibility is non-negotiable.
  6. Evaluate rigorously — Go beyond aggregate metrics. Slice performance by subgroups, check calibration, examine failure cases manually. Understand where the model fails before you decide if it is ready.
  7. Deploy with guardrails — Implement shadow mode or canary deployments. Set up fallback logic. Define kill switches. A model deployment is a release, not a copy-paste.
  8. Monitor continuously — Track input distributions, prediction distributions, and business outcomes. Set alerts for data drift, prediction drift, and performance degradation. If you are not monitoring, you are guessing.

Read the full file on GitHub · 68 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. 11d ago First seen · 68 lines · 56 tokens per session scan A 7d6b5e657738

Subscribe to this mod's changes

ml-engineer is an agent published in the GitHub repository The-AI-Directory-Company/agents-and-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 56 tokens to every session and 1,670 once invoked, about $0.0003 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-31.

Related

Other agents, from other repositories

data-engineer

ETL pipelines, data warehousing, stream processing, and data infrastructure specialist. Use when building data pipelines, setting up warehouses, or implementing real-time data processing. Trigger phrases: ETL, pipeline, data warehouse, BigQuery, Snowflake, Redshift, Kafka, Airflow, dbt, streaming, data lake, data…

travisjneuman/.claude · 76 tokens

ml-engineer

Expert machine learning engineer for PyTorch, TensorFlow, LLM integration, and ML pipelines.

travisjneuman/.claude · 22 tokens

go-expert

Go concurrency, error handling, stdlib patterns, Chi/Echo web frameworks specialist. Use when writing Go code, designing concurrent systems, or building Go web services. Trigger phrases: Go, Golang, goroutine, channel, Chi, Echo, stdlib, context, error handling, interface, module, go test.

travisjneuman/.claude · 69 tokens

product-analytics-specialist

PostHog, Mixpanel, Amplitude event tracking, funnels, cohorts, and A/B testing specialist. Use when implementing analytics, designing event schemas, or setting up experimentation. Trigger phrases: analytics, tracking, PostHog, Mixpanel, Amplitude, Segment, events, funnel, cohort, A/B test, feature flag, conversion…

travisjneuman/.claude · 80 tokens

openrouter-specialist

Expert consultant for OpenRouter API integration, model routing strategies, cost optimization, and multi-provider management. Use proactively for OpenRouter architecture analysis, model selection strategies, routing optimization, and integration pattern recommendations. Provides consultation and recommendations only …

spacehendrix/clauder · 114 tokens

implementer

Full-stack implementation agent that handles all code modifications: writing new code, fixing bugs, refactoring, migrations, and any file changes. Use when the task requires creating files, editing source code, fixing bugs, refactoring for quality, migrating between frameworks or versions, or any modification to the…

AnExiledDev/CodeForge · 87 tokens