rugged-gemini: Skill for Gemini CLI

.gemini/skills/ml-engineering/SKILL.md

ml-engineering is a skill for Gemini CLI from irahardianto/rugged-gemini. It costs 29 tokens per session (607 once invoked), scanned A, a copy of ml-engineering, MIT.

A guide for designing and operating machine-learning systems, from preparing data and training models to deployment and monitoring.

In plain words
What is it for?
Use it when building ML pipelines, creating input features, evaluating models, tracking experiments, choosing deployment infrastructure, or setting up model monitoring.
Why use it?
It helps prevent problems such as irreproducible experiments, data leakage, and differences between training and live predictions.

Skill for Gemini CLI

Written for Gemini CLI: installed under .gemini/.

This is irahardianto/rugged-gemini's own configuration. It tells Gemini CLI how to work on rugged-gemini itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything rugged-gemini configures →

Reuse

Borrowing it

Nothing to install: this file belongs to irahardianto/rugged-gemini. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/irahardianto/rugged-gemini/main/.gemini/skills/ml-engineering/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/irahardianto/rugged-gemini

Made for: Gemini CLI.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/irahardianto/rugged-gemini/ml-engineering.svg)](https://agentmods.dev/skills/irahardianto/rugged-gemini/ml-engineering)
Your own site
<a href="https://agentmods.dev/skills/irahardianto/rugged-gemini/ml-engineering"><img src="https://agentmods.dev/badge/skills/irahardianto/rugged-gemini/ml-engineering.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 607 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 92% copy Near-identical to another mod 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.00029 $0.00607
Opus 5 $0.00015 $0.00303
Sonnet 5 $0.00006 $0.00121
Haiku 4.5 $0.00003 $0.00061

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

Security

Grade A, and why

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.

Origin

This is a copy

92% identical to ml-engineering — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.gemini/skills/ml-engineering/SKILL.md · 77 lines

How it starts

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

ML Engineering Principles

Guidelines for building reliable, reproducible machine learning systems.

When to Invoke

  • Designing ML pipelines (training, serving)
  • Feature engineering and data preparation
  • Model evaluation and validation
  • MLOps infrastructure decisions

ML Pipeline Design

Stages

Data Collection → Feature Engineering → Training → Evaluation → Deployment → Monitoring

Principles

  1. Reproducibility — versioned data, code, and config. Same inputs = same model.
  2. Experiment tracking — every run logged (MLflow, W&B, Neptune).
  3. Feature stores — centralized feature computation, reusable across models.
  4. Model registry — versioned models with metadata, promotion workflow.

Feature Engineering

  1. Compute features once, reuse everywhere — feature store pattern.
  2. Training-serving skew prevention — same transformation code in training and inference.
  3. Feature documentation — every feature has description, source, freshness requirement.

Model Validation

Checklist

  • Performance metrics meet threshold (accuracy, F1, AUC, etc.)
  • No data leakage (target info in features)
  • Fairness evaluation across protected groups
  • Performance on edge cases and out-of-distribution data
  • Latency meets serving SLA
  • Model size within deployment constraints

Model Serving

Pattern When
Batch inference Scheduled predictions, large volumes, latency-tolerant
Real-time API Low-latency, per-request predictions
Streaming Continuous predictions on event streams
Edge On-device, offline-capable

Monitoring

  1. Data drift detection — statistical tests on input distributions.
  2. Model performance monitoring — track prediction accuracy over time.
  3. Feature importance drift — alert when feature contributions shift.
  4. Automated retraining triggers — retrain when performance degrades below threshold.

Tools Ecosystem

Read the full file on GitHub · 77 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 · 77 lines · 29 tokens per session scan A 3be38c53e973

Subscribe to this mod's changes

ml-engineering is a skill published in the GitHub repository irahardianto/rugged-gemini (5 stars, last pushed 3mo ago), licensed MIT. It adds 29 tokens to every session and 607 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to ml-engineering, differing in 6 lines, and is treated as a copy.

Related

Other skills, from other repositories

agent-platform-rag-engine-management

Manage and query Agent Platform RAG Engine Corpora and retrieve grounded contexts using the Google GenAI SDK. Use when listing RAG corpora or files, inspecting a corpus, retrieving contexts, or generating content grounded in a RAG corpus. Do not use for standard database queries (use SQL/Spanner skills), Google…

google/skills · 85 tokens

agent-platform-model-registry

Agent Platform Model Registry Management. Use when you need to upload, list, describe, update, or delete machine learning models (and their versions) in the Agent Platform Model Registry. Don't use for model training, model deployment to endpoints, or managing non-Agent Platform models.

google/skills · 60 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

google-cloud-solution-agentic-analytics-spark-knowledge-catalog

Discovers requirements and generates guidance to design and deploy a governed, secure agentic-analytics solution for data that's distributed across Google Cloud, other cloud providers, or on-premises. Data that's outside Google Cloud (such as data from Databricks, Snowflake, Salesforce, SAP, or Oracle systems) is…

google/skills · 138 tokens

training-check

Interactively monitor training metrics from the current Codex session, periodically checking WandB or fallback logs for NaN, divergence, plateaus, and broken runs.

wanshuiyin/Auto-claude-code-research-in-sleep · 35 tokens

nemo-automodel-launcher-config

Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.

NVIDIA/skills · 30 tokens