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.
npx skills add topprismdata/cultivating-ml-agent --skill kaggle-data-format-firstgit clone --depth 1 https://github.com/topprismdata/cultivating-ml-agentWrote 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.
[](https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/kaggle-data-format-first)<a href="https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/kaggle-data-format-first"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/kaggle-data-format-first/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.
<a href="https://agentmods.dev/skills/topprismdata/cultivating-ml-agent/kaggle-data-format-first"><img src="https://agentmods.dev/badge/skills/topprismdata/cultivating-ml-agent/kaggle-data-format-first.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00114 | $0.01729 |
| Opus 5 | $0.00057 | $0.00864 |
| Sonnet 5 | $0.00023 | $0.00346 |
| Haiku 4.5 | $0.00011 | $0.00173 |
Grade A, and why
kaggle-data-format-first 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.
How it starts
The opening of the file, as written. The whole thing — 189 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Kaggle Data Format Verification Before Research
Problem
Competition names and file sizes can be misleading. Investing in RAG research, technical planning, or model architecture design before verifying the actual data format leads to significant wasted effort when assumptions don't match reality.
Real example:
- Competition: "vesuvius-challenge-surface-detection"
- Expected (from RAG): 3D TIFF stacks, TopoScore, 128³ patches
- Actual data: 2D grayscale images (320×320), binary masks
- Waste: Hours of RAG research on wrong problem
Context / Trigger Conditions
Use this skill when:
- Starting ANY new Kaggle competition
- Competition name is ambiguous about data dimensionality (2D vs 3D)
- Data size suggests one format but could be another
- Planning to do RAG research or extensive technical planning
- File extensions are generic (.tif, .png, .npy could be anything)
Red flags:
- Competition name mentions "3D", "volume", "surface" but you haven't verified
- Large download size (>5GB) but unsure what format it actually is
- Multiple data directories with unclear purpose (train_images vs train vs train_data)
Solution
Phase 1: Quick Format Check (Before ANY Research)
Step 1: Download only a sample first
# If possible, download just one file to verify format
# Or download full data but check structure immediately
kaggle competitions download -c {competition-slug}
unzip {competition-file}.zip
Step 2: Verify data structure in <5 minutes
import os
from PIL import Image
import numpy as np
# Quick check script
data_dir = "path/to/unzipped/data"
# What files exist?
print("Directories:", [d for d in os.listdir(data_dir) if os.path.isdir(os.path.join(data_dir, d))])
print("Files:", [f for f in os.listdir(data_dir) if os.path.isfile(os.path.join(data_dir, f))][:10])
# Check dimensions of first sample
samples = []
for root, dirs, files in os.walk(data_dir):
for f in files:
if f.endswith(('.tif', '.png', '.jpg', '.npy')):
path = os.path.join(root, f)
if f.endswith('.npy'):
data = np.load(path)
else:
data = np.array(Image.open(path))
print(f"Sample: {f}")
print(f" Shape: {data.shape}")
print(f" Dtype: {data.dtype}")
print(f" Range: [{data.min()}, {data.max()}]")
samples.append({
'path': path,
'shape': data.shape,
'dtype': str(data.dtype)
})
if len(samples) >= 3:
break
if len(samples) >= 3:
break
# Determine data type
if all(len(s['shape']) == 2 for s in samples):
print("✓ Data Type: 2D Images")
elif all(len(s['shape']) == 3 for s in samples):
print("✓ Data Type: 3D Volumes")
else:
print("⚠ Mixed or irregular dimensions")
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.
- 9d ago First seen · 189 lines · 114 tokens per session scan A b78aee89872d
kaggle-data-format-first is a skill published in the GitHub repository topprismdata/cultivating-ml-agent (5 stars, last pushed 12d ago), licensed MIT. It adds 114 tokens to every session and 1,729 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.
Other skills, from other repositories
huggingface-hub
Hugging Face Hub CLI (hf) — search, download, and upload models and datasets, manage repos, query datasets with SQL, deploy inference endpoints, manage Spaces and buckets.
writing
A writing guide for turning verified facts and calculations into finished text for a specific audience. It follows the requested language, structure, and length.
regex-mastery
Use this skill when writing regular expressions, debugging pattern matching,optimizing regex performance, or implementing text validation. Triggers on regex, regular expressions, pattern matching, lookahead, lookbehind, named groups, capture groups, backreferences, and any task requiring text pattern matching.
ws-ckpt
A Linux-only tool for creating and managing workspace snapshots. A snapshot is a saved view of files that can later be compared, restored, listed, or deleted.
food-order
Reorder previous Foodora orders, preview cart contents, and track delivery ETA/status with ordercli. Use when the user wants to reorder food, check delivery status, or browse recent Foodora order history. Never confirm an order without explicit user approval.
mnemon
Persistent memory for MiniMax Code. Recall durable context, store important facts and decisions, and link related memories with the mnemon CLI.