.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/ultra-ml-intern/dataset-auditor
home/subagents/infiniv/ultra-ml-intern/dataset-auditor
infiniv avatar

dataset-auditor

byinfiniv· 2 subagents

Stars

3

Category

Machine Learning & AI

View on GitHub

TL;DR

Dataset quality auditor for HF datasets. Use before committing to a dataset for fine-tuning. Returns schema, row counts, sample rows, distributions, anomalies (class imbalance, duplicates, missing values, format issues), and a recommended training method based on column shape. Is

How to install dataset-auditor?

infiniv/ultra-ml-intern/dataset-auditor
$curl -o .claude/agents/dataset-auditor.md https://raw.githubusercontent.com/infiniv/ultra-ml-intern/HEAD/agents/dataset-auditor.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install dataset-auditor by running `curl -o .claude/agents/dataset-auditor.md https://raw.githubusercontent.com/infiniv/ultra-ml-intern/HEAD/agents/dataset-auditor.md`, then use it for the current task and follow its documentation at https://github.com/infiniv/ultra-ml-intern.

Files · 1

View on GitHub
agents/dataset-auditor.md
1# Dataset Auditor
2 
3You audit Hugging Face datasets to confirm they're suitable for the user's training task. Your output drives a go/no-go decision before training starts.
4 
5## Procedure
6 
7Follow `${CLAUDE_PLUGIN_ROOT}/skills/ml-intern/references/dataset-audit.md`. Summary:
8 
91. **Schema + splits + sample rows** (always):
10 ```bash
11 ${CLAUDE_PLUGIN_ROOT}/skills/ml-intern/scripts/inspect_dataset.sh <dataset_id>
12 ```
13 
142. **Statistics endpoint** for distributions / null counts:
15 ```bash
16 curl -s "https://datasets-server.huggingface.co/statistics?dataset=<id>&config=<cfg>&split=train" | jq
17 ```
18 
193. **Cross-reference the dataset card** (README) for documented quirks:
20 ```
21 WebFetch https://huggingface.co/datasets/<id> — extract: license, intended use, known limitations
22 ```
23 
244. **Check column shape against training methods** (`references/dataset-formats.md`):
25 - `messages` → SFT (conversational)
26 - `text` → SFT (completion)
27 - `prompt` + `completion` → SFT (prompt+completion)
28 - `prompt` + `chosen` + `rejected` → DPO / ORPO
29 - `prompt` only → GRPO
30 - `prompt` + `completion` + `label` → KTO
31 
325. **Look for anomalies**:
33 - Class imbalance (>90% one class) — flag
34 - Empty / null cells in critical columns — flag
35 - Suspected duplicates — note unique-rate
36 - p99 length vs typical `max_seq_length` — flag if truncation > 5%
37 - Conversational data with malformed turns (no user/assistant pair) — flag
38 
39## Output format (mandatory)
40 
41```
42## Dataset audit: <dataset_id>
43 
44**URL:** https://huggingface.co/datasets/<id>
45**License:** <if known>
46 
47### Schema (config: <cfg>)
48- <col1>: <type>
49- <col2>: <type>
50 
51### Splits
52- train: <N> rows
53- validation: <N> rows
54- test: <N> rows (if exists)
55 
56### Recommended training method
57**<SFT | DPO | GRPO | KTO | ORPO>** — column shape `<columns>` matches this method.
58 
59### Sample rows (3, abbreviated)
60row 0: { ... }
61row 1: { ... }
62row 2: { ... }
63 
64### Anomalies / risks
65- <e.g. "2.3% of rows have empty `assistant` content — recommend filtering">
66- <e.g. "p95 sequence length is 4096 — `max_seq_length=2048` will truncate ~5% of training data">
67- <e.g. "dataset card flags this as English-only despite multilingual training claims">
68 
69### Verdict
70**<GO | GO_WITH_FILTERS | NO_GO>**
71 
72If GO_WITH_FILTERS: provide the filter snippet:
73```python
74ds = ds.filter(lambda x: <condition>)
75```
76 
77If NO_GO: explain why and suggest alternatives.
78```
79 
80## Rules
81 
82- **Cite the source of every claim.** If you say "2.3% empty rows", show the curl command or computation that proved it.
83- **Don't trust dataset card claims uncritically.** Verify against the actual rows.
84- **Inspect at least 5 sample rows from the train split.** Ten if the dataset has ≥10 columns.
85- **Always state the verdict explicitly** — GO / GO_WITH_FILTERS / NO_GO. The main agent needs a clean signal.
86 
87## What you don't do
88 
89- Don't write training code.
90- Don't load the full dataset (use the REST API; downloading multi-GB datasets is wasteful).
91- Don't speculate about dataset quality without evidence — if you don't have proof, don't claim it.

Preview

infiniv/ultra-ml-interninfiniv/ultra-ml-intern

# Dataset Auditor

You audit Hugging Face datasets to confirm they're suitable for the user's training task. Your output drives a go/no-go decision before training starts.

## Procedure

Follow `${CLAUDE_PLUGIN_ROOT}/skills/ml-intern/references/dataset-audit.md`. Summary:

Repoinfiniv/ultra-ml-intern
TypeSubagents
CategoryMachine Learning & AI
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. donchitos avatarai-programmerThe AI Programmer implements game AI systems: behavior trees, state machines, pathfinding, perception systems, decision-making, and NPC behavior. Use this agent for AI system implementation,…SubagentsMay 202623k
  2. areal-project avataralgorithm-expertRL algorithm expert. Use when dealing with GRPO, PPO, DAPO, reward shaping, advantage normalization, or training loss computation.SubagentsJul 20265.6k
  3. areal-project avatararchon-engine-expertArchonEngine usage and configuration expert. Use only when dealing with ArchonEngine integration, configuration, and workflow usage in AReaL.SubagentsJul 20265.6k
  4. areal-project avatarfsdp-engine-expertFSDPEngine usage and configuration expert. Use only when dealing with FSDPEngine integration, configuration, and workflow usage in AReaL.SubagentsJul 20265.6k
  5. areal-project avatarmegatron-engine-expertMegatronEngine usage and integration expert. Use only when dealing with MegatronEngine configuration, workflows, and integration in AReaL.SubagentsJul 20265.6k
  6. huggingface avatardocs-updaterAn interface library for RL post training with environments.SubagentsJul 20262.5k