Dataset Curator

Dataset Curator is a skill for Claude Code, Codex from eddiebelaval/squire. It costs 15 tokens per session (1,685 once invoked), scanned A, original, MIT.

A guide for preparing machine-learning training data by cleaning, checking, improving, and maintaining datasets. It covers issues such as duplicates, incorrect labels, bias, missing values, and data leakage.

In plain words
What is it for?
Use it to assess dataset quality, remove duplicates, review labels, detect bias and leakage, augment examples, and manage dataset versions.
Why use it?
Poor training data can lead to unreliable models, so this helps find problems before they affect machine-learning results.

Skill for Claude CodeCodex

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

Good fit Use it to assess dataset quality, remove duplicates, review labels, detect bias and leakage, augment examples, and manage dataset versions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eddiebelaval/squire/dataset-curator
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 eddiebelaval/squire --skill dataset-curator
Clone the repo
git clone --depth 1 https://github.com/eddiebelaval/squire

Made for: Claude Code, Codex.

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 Dataset Curator

README.md
[![agentmods](https://agentmods.dev/badge/skills/eddiebelaval/squire/dataset-curator/github.svg)](https://agentmods.dev/skills/eddiebelaval/squire/dataset-curator)
Your own site
<a href="https://agentmods.dev/skills/eddiebelaval/squire/dataset-curator"><img src="https://agentmods.dev/badge/skills/eddiebelaval/squire/dataset-curator/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 Dataset Curator

Your own site · 80×15
<a href="https://agentmods.dev/skills/eddiebelaval/squire/dataset-curator"><img src="https://agentmods.dev/badge/skills/eddiebelaval/squire/dataset-curator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,685 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.00015 $0.01685
Opus 5 $0.00008 $0.00843
Sonnet 5 $0.00003 $0.00337
Haiku 4.5 $0.00002 $0.00169

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

Security

Grade A, and why

Dataset Curator 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 5d 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/dataset-curator/SKILL.md · 229 lines

How it starts

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

Dataset Curator

The Dataset Curator skill guides you through the critical process of preparing high-quality training data for machine learning models. Data quality is the single most important factor in model performance, yet it is often underinvested. This skill helps you systematically clean, validate, augment, and maintain datasets that lead to better models.

From initial collection to ongoing maintenance, this skill covers deduplication, label quality assessment, bias detection, augmentation strategies, and version control. It applies best practices from production ML systems to ensure your datasets are not just clean, but strategically optimized for your learning objectives.

Whether you are building a classifier, fine-tuning an LLM, or training a custom model, this skill ensures your data foundation is solid.

Core Workflows

Workflow 1: Assess Dataset Quality

  1. Profile the dataset:
    • Size and dimensionality
    • Label distribution and balance
    • Missing value patterns
    • Feature statistics
  2. Identify quality issues:
    • Duplicates (exact and near-duplicate)
    • Mislabeled examples
    • Outliers and anomalies
    • Data leakage
    • Bias and representation gaps
  3. Measure quality metrics:
    def assess_quality(dataset):
        return {
            "size": len(dataset),
            "duplicate_rate": find_duplicates(dataset).ratio,
            "missing_rate": dataset.isnull().mean(),
            "label_balance": compute_entropy(dataset.labels),
            "outlier_rate": detect_outliers(dataset).ratio,
            "estimated_label_noise": estimate_label_noise(dataset)
        }
    
  4. Prioritize issues by impact
  5. Create remediation plan

Workflow 2: Clean and Prepare Data

  1. Remove duplicates:
    • Exact duplicates: hash-based dedup
    • Near-duplicates: similarity-based clustering
    • Decide: keep first, best, or merge
  2. Handle missing values:
    • Understand missingness mechanism (MCAR, MAR, MNAR)
    • Impute, drop, or flag appropriately
  3. Fix label quality:
    • Identify likely mislabels with confidence scoring
    • Route to human review or automatic correction
    • Document labeling guidelines
  4. Normalize and standardize:
    • Consistent formatting
    • Schema validation
    • Encoding standardization
  5. Validate cleaned dataset

Read the full file on GitHub · 229 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. 5d ago First seen · 229 lines · 15 tokens per session scan A 358f66283064

Subscribe to this mod's changes

Dataset Curator is a skill published in the GitHub repository eddiebelaval/squire (21 stars, last pushed 24d ago), licensed MIT. It adds 15 tokens to every session and 1,685 once invoked, about $0.0001 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-09-03.