ai-ml-engineering

ai-ml-engineering is a skill for Claude Code from camilooscargbaptista/cto-toolkit. It costs 112 tokens per session (1,160 once invoked), scanned A, original, MIT.

A review guide for putting artificial-intelligence and machine-learning systems into production. It covers model serving, deployment pipelines, language-model integrations, prompts, testing, monitoring, retrieval systems, and safety.

In plain words
What is it for?
Use it to review model deployments, language-model applications, retrieval-augmented generation systems, machine-learning pipelines, evaluation methods, and responsible-AI controls.
Why use it?
It helps find production risks that are easy to miss in experiments or notebooks, such as unreliable model responses, rising costs, failed service calls, stale data, and missing monitoring.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the cto-toolkit plugin — 54 skills, 6 agents, 3 hooks shipped together

Good fit Use it to review model deployments, language-model applications, retrieval-augmented generation systems, machine-learning pipelines, evaluation methods, and responsible-AI controls.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/camilooscargbaptista/cto-toolkit/ai-ml-engineering
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 camilooscargbaptista/cto-toolkit --skill ai-ml-engineering
Clone the repo
git clone --depth 1 https://github.com/camilooscargbaptista/cto-toolkit

Made for: Claude Code.

Or install cto-toolkit, the plugin that ships this one along with the rest of its 54 skills, 6 agents, 3 hooks.

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 ai-ml-engineering

README.md
[![agentmods](https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/ai-ml-engineering/github.svg)](https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/ai-ml-engineering)
Your own site
<a href="https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/ai-ml-engineering"><img src="https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/ai-ml-engineering/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 ai-ml-engineering

Your own site · 80×15
<a href="https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/ai-ml-engineering"><img src="https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/ai-ml-engineering.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,160 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.00112 $0.01160
Opus 5 $0.00056 $0.00580
Sonnet 5 $0.00022 $0.00232
Haiku 4.5 $0.00011 $0.00116

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

Security

Grade A, and why

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

ai-ml-engineering/SKILL.md · 140 lines

How it starts

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

AI/ML Engineering Review

You are a senior ML engineer reviewing AI systems for production readiness. You've deployed models serving millions of predictions, built RAG pipelines, and know that a model in a notebook is not a model in production.

Directive: Read ../quality-standard/SKILL.md before producing output.

Review Framework

1. LLM Integration Patterns

Check for:

  • Prompt versioning and management (not hardcoded strings)
  • Structured output parsing (JSON mode, function calling, not regex)
  • Retry logic with exponential backoff for API failures
  • Token budget management (input + output within limits)
  • Cost monitoring per request and per user
  • Fallback strategy (what happens when the LLM is down?)
  • Rate limiting to prevent cost explosion
  • Streaming for better UX on long responses

RAG (Retrieval-Augmented Generation):

  • Chunking strategy documented (size, overlap, method)
  • Embedding model choice justified
  • Vector database with proper indexing (HNSW, IVF)
  • Retrieval evaluation metrics (recall@k, MRR)
  • Context window management (relevant chunks only)
  • Citation/attribution of retrieved sources
  • Freshness: how often are embeddings updated?

2. Model Serving

Check for:

  • Model versioning (track which model version is in production)
  • A/B testing infrastructure for model comparison
  • Shadow mode deployment (new model runs alongside old, no user impact)
  • Latency SLA defined and monitored (p50, p99)
  • Batch vs real-time inference — right choice for the use case
  • GPU/CPU resource allocation appropriate
  • Auto-scaling based on request volume
  • Graceful degradation (fallback when model is slow/down)
  • Input validation before model inference

3. MLOps Pipeline

Check for:

  • Reproducible training (random seeds, versioned data, versioned code)
  • Experiment tracking (MLflow, W&B, or similar)
  • Data versioning (DVC, Delta Lake, or similar)
  • Feature store for consistent feature computation (training = serving)
  • Automated retraining pipeline with quality gates
  • Model registry with approval workflow
  • CI/CD for model deployment (not manual scp to production)

Read the full file on GitHub · 140 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 · 140 lines · 112 tokens per session scan A e39a132a1812

Subscribe to this mod's changes

ai-ml-engineering is a skill published in the GitHub repository camilooscargbaptista/cto-toolkit (7 stars, last pushed 5mo ago), licensed MIT. It adds 112 tokens to every session and 1,160 once invoked, about $0.0006 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 skills, from other repositories

data-scientist

!cat Claude-Production-Grade-Suite/.protocols/ux-protocol.md 2>/dev/null || true !cat Claude-Production-Grade-Suite/.protocols/input-validation.md 2>/dev/null || true !cat Claude-Production-Grade-Suite/.protocols/tool-efficiency.md 2>/dev/null || true !cat Claude-Production-Grade-Suite/.protocols/visual-identity.md…

nagisanzenin/production-grade · 43 tokens

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…

buiphucminhtam/forgewright · 78 tokens

agenta

LLM prompt management and evaluation platform. Version prompts, run A/B tests, evaluate with metrics, and deploy with confidence using Agenta's self-hosted solution.

diegosouzapw/awesome-omni-skill · 36 tokens

few-shot-architect

Professional Few Shot Architect skill. Integrate LLM API workflows, safe system prompt guidelines, and agentic workflows.

AtulPurohit/Antigravity-Awesome-Skills · 28 tokens

llm-prompt-master

Professional LLM Prompt Master skill. Integrate LLM API workflows, safe system prompt guidelines, and agentic workflows.

AtulPurohit/Antigravity-Awesome-Skills · 30 tokens

responsible-ai

Professional Responsible Ai Expert skill. Integrate LLM API workflows, safe system prompt guidelines, and agentic workflows.

AtulPurohit/Antigravity-Awesome-Skills · 27 tokens