data-explore

data-explore is a skill for Claude Code, Codex from giacomogaglione/claude-awesome-stack. It costs 36 tokens per session (697 once invoked), scanned A, original, MIT.

A guide for exploring a new dataset by examining its structure, values, missing data, unusual records, and relationships between columns.

In plain words
What is it for?
Inferring schemas, summarising distributions, measuring missing values, finding outliers, and checking correlations.
Why use it?
It provides a consistent way to understand data and uncover quality problems before analysis or machine-learning work begins.

Skill for Claude CodeCodex

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

Good fit Inferring schemas, summarising distributions, measuring missing values, finding outliers, and checking correlations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/giacomogaglione/claude-awesome-stack/data-explore
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 giacomogaglione/claude-awesome-stack --skill data-explore
Clone the repo
git clone --depth 1 https://github.com/giacomogaglione/claude-awesome-stack

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 data-explore

README.md
[![agentmods](https://agentmods.dev/badge/skills/giacomogaglione/claude-awesome-stack/data-explore.svg)](https://agentmods.dev/skills/giacomogaglione/claude-awesome-stack/data-explore)
Your own site
<a href="https://agentmods.dev/skills/giacomogaglione/claude-awesome-stack/data-explore"><img src="https://agentmods.dev/badge/skills/giacomogaglione/claude-awesome-stack/data-explore.svg" alt="Measured on agentmods" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 697 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 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.00036 $0.00697
Opus 5 $0.00018 $0.00349
Sonnet 5 $0.00007 $0.00139
Haiku 4.5 $0.00004 $0.00070

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

Security

Grade A, and why

data-explore 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.

stacks/python-ml/skills/data-explore/SKILL.md · 92 lines

How it starts

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

Data Exploration Skill

When exploring a dataset, follow this structured approach. Adapt based on whether the data is tabular (CSV/DataFrame), image-based, or text.

1. Schema and Structure

First, understand what you're working with:

  • Load a sample (first 5 rows + last 5 rows)
  • Column names, dtypes, and count of non-null values
  • Dataset dimensions (rows x columns)
  • Memory usage
  • Identify the target variable if this is a supervised learning task

For tabular data:

df.info()
df.describe(include='all')
df.head()
df.dtypes.value_counts()

2. Missing Values

Map the missing data landscape:

  • Count and percentage of missing values per column
  • Pattern analysis: are values Missing Completely At Random (MCAR), Missing At Random (MAR), or Missing Not At Random (MNAR)?
  • Identify columns with >50% missing (candidates for dropping)
  • Check if missingness correlates with the target variable
missing = df.isnull().sum()
missing_pct = (missing / len(df) * 100).round(2)
missing_report = pd.DataFrame({'count': missing, 'pct': missing_pct})
missing_report[missing_report['count'] > 0].sort_values('pct', ascending=False)

3. Distribution Analysis

For each feature, characterize its distribution:

Numerical features:

  • Min, max, mean, median, std
  • Skewness and kurtosis
  • Identify if log-transform would help (right-skewed data)

Categorical features:

  • Cardinality (number of unique values)
  • Value counts for top-10 categories
  • Identify rare categories (<1% frequency)

4. Outlier Detection

Flag potential outliers:

  • IQR method: values below Q1 - 1.5IQR or above Q3 + 1.5IQR
  • Z-score method: values with |z| > 3
  • Domain-specific checks (e.g., negative ages, future dates)
Q1 = df[col].quantile(0.25)
Q3 = df[col].quantile(0.75)
IQR = Q3 - Q1
outliers = df[(df[col] < Q1 - 1.5 * IQR) | (df[col] > Q3 + 1.5 * IQR)]

5. Correlations and Relationships

Identify feature relationships:

  • Pearson correlation matrix for numerical features
  • Flag highly correlated pairs (|r| > 0.8) as candidates for feature selection
  • Check correlation with target variable
  • For categorical features, use chi-squared test or Cramer's V

Read the full file on GitHub · 92 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 92 lines · 36 tokens per session scan A 9e8c87450da1

Subscribe to this mod's changes

data-explore is a skill published in the GitHub repository giacomogaglione/claude-awesome-stack (2 stars, last pushed 6mo ago), licensed MIT. It adds 36 tokens to every session and 697 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

session-review

End-of-session adversarial review loop. Assemble the session's work into a role-assigned, self-contained brief, then run independent reviewers in parallel — an isolated code-reader (the idea-validator agent) that reads the ACTUAL files and web-checks technology currency, plus an external-family model if you have one …

awrshift/claude-memory-kit · 149 tokens

memory-audit

Audit MEMORY.md against the memory discipline — oversized sections, settled multi-session patterns that belong in knowledge/concepts/, stacked chronicle blocks, stale entries. Produces a move plan as a table for approval, then executes the approved moves atomically. Use when the SessionStart hook reports a tripped…

awrshift/claude-memory-kit · 119 tokens

second-opinion

Cross-check the agent's own answer with independent reviewers before bringing it to the user. Use when the user says 'second opinion', 'sanity check', 'cross-check', 'am I missing something', 'stress-test', 'devil's advocate', 'run a full review', 'this is important', 'high-stakes', 'help me choose between', 'critique…

awrshift/claude-memory-kit · 130 tokens

close-session

An end-of-session routine for reviewing a coding session and updating a repository's memory files. It records useful observations, checks for repeated patterns, and prepares a handoff for the next session.

awrshift/claude-memory-kit · 64 tokens

tour

An interactive tour of Memory Kit, a system that stores project notes and session handoffs for an AI coding assistant. It uses the files already in the project to explain how the system works.

awrshift/claude-memory-kit · 50 tokens

checkpoint

Creates a git checkpoint commit of all current changes. Use when you want to save progress mid-session before risky changes. Invoke with /checkpoint or "save checkpoint" or "git checkpoint".

SatymSingh01/claude-code-pack · 39 tokens