ml-research-lab

ml-research-lab is a skill for Claude Code, Codex from AnastasiyaW/codex-claude-code-config. It costs 96 tokens per session (684 once invoked), scanned A, original, MIT.

A structured workflow for machine-learning research, from preparing data and training models to testing, deployment, and explanation. It treats each experiment as a measurable hypothesis and records the settings, results, logs, and model version.

In plain words
What is it for?
Use it for dataset cleanup, classifier experiments, model benchmarks, GPU training runs, inference servers such as vLLM or GGUF, and model explanations using methods such as SHAP.
Why use it?
It reduces unreliable conclusions caused by poor data, information leaking between training and testing, undefined metrics, or unrecorded experiments. It provides a repeatable way to compare changes with a baseline.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Part of the claude-code-config plugin — 57 skills, 8 agents shipped together

Good fit Use it for dataset cleanup, classifier experiments, model benchmarks, GPU training runs, inference servers such as vLLM or GGUF, and model explanations using methods such as SHAP.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anastasiyaw/codex-claude-code-config/ml-research-lab
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 AnastasiyaW/codex-claude-code-config --skill ml-research-lab
Clone the repo
git clone --depth 1 https://github.com/AnastasiyaW/codex-claude-code-config

Made for: Claude Code, Codex.

Or install claude-code-config, the plugin that ships this one along with the rest of its 57 skills, 8 agents.

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-research-lab

README.md
[![agentmods](https://agentmods.dev/badge/skills/anastasiyaw/codex-claude-code-config/ml-research-lab/github.svg)](https://agentmods.dev/skills/anastasiyaw/codex-claude-code-config/ml-research-lab)
Your own site
<a href="https://agentmods.dev/skills/anastasiyaw/codex-claude-code-config/ml-research-lab"><img src="https://agentmods.dev/badge/skills/anastasiyaw/codex-claude-code-config/ml-research-lab/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-research-lab

Your own site · 80×15
<a href="https://agentmods.dev/skills/anastasiyaw/codex-claude-code-config/ml-research-lab"><img src="https://agentmods.dev/badge/skills/anastasiyaw/codex-claude-code-config/ml-research-lab.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 684 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00096 $0.00684
Opus 5 $0.00048 $0.00342
Sonnet 5 $0.00019 $0.00137
Haiku 4.5 $0.00010 $0.00068

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

Security

Grade A, and why

ml-research-lab 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 9d 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.

skills/ai-ml/ml-research-lab/SKILL.md · 60 lines

How it starts

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

ML Research Lab

Use this skill as the compact router for ML work. It is derived from an audit of synthetic-sciences/openscience at commit 531467c, but does not require running OpenScience or loading its full 250+ skill set.

Operating Loop

  1. Freeze the question as a measurable hypothesis.
  2. Identify dataset provenance, labels, splits, leakage risks, and regeneration cost.
  3. Pick the smallest baseline that can disprove the idea.
  4. Define metrics before training. For release claims, require train/val/test split, no test-set model selection, and multi-seed proof when cost permits.
  5. Run or wire experiment tracking before long jobs start.
  6. Save artifacts: config, command, data manifest, metrics JSON/CSV, logs, model hash, and a short conclusion.
  7. Compare against baseline, then keep/discard the change from evidence.

Domain Routing

  • Dataset or scrape cleanup: start from data quality, deduplication, leakage checks, train/eval splits, and regeneration notes.
  • Classical classifier or tabular baseline: use scikit-learn-style pipelines with preprocessing inside the pipeline and stratified splits for classification.
  • Model debugging or trust: add SHAP/explainability for feature importance, leakage, bias/proxy features, and misclassified samples.
  • LLM fine-tuning: prefer JSONL chat format, data validation, LoRA/QLoRA baseline, and tracked runs before scaling.
  • Single-GPU fast LoRA/QLoRA: consider Unsloth only after checking hardware, CUDA, model support, and export target.
  • Large or production inference: use vLLM for high-throughput GPU serving, GGUF or llama.cpp for local/Apple/CPU-friendly deployment, and TensorRT-LLM only when the NVIDIA production optimization cost is justified.
  • Research write-up: report method, dataset, exact metric formula, baseline source, limitations, and failure cases.

Verification Gates

  • Data gate: schema valid, duplicates/leakage checked, split manifest saved.
  • Metric gate: exact metric formula named; if benchmarked, original baseline source and benchmark code checked.
  • Runtime gate: command/log path and environment captured; GPU memory and errors checked for long runs.
  • Tracking gate: metrics are retrievable as JSON/CSV or a dashboard link plus local export.
  • Deployment gate: latency, throughput, memory, and OOM behavior measured before claiming production readiness.

Read the full file on GitHub · 60 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. 9d ago First seen · 60 lines · 96 tokens per session scan A 346d6362f0c1

Subscribe to this mod's changes

ml-research-lab is a skill published in the GitHub repository AnastasiyaW/codex-claude-code-config (149 stars, last pushed today), licensed MIT. It adds 96 tokens to every session and 684 once invoked, about $0.0005 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.