Agent skill · Data & Analytics

exploring-data

Exploratory data analysis using ydata-profiling. Use when users upload .csv/.xlsx/.json/.parquet files or request "explore data", "analyze dataset", "EDA", "profile data". Generates interactive HTML or JSON reports with statistics, visualizations, correlations, and quality alerts.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill exploring-data --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.0.3
Path: skills/analysis/exploring-data/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Exploring Data ## Workflow ### 1. Check if installed (instant) ```bash bash /mnt/skills/user/exploring-data/scripts/check_install.sh ``` Returns: `installed` or `not_installed` ### 2. Install if needed (one-time, ~19s) ```bash if [ "$(bash check_install.sh)" = "not_installed" ]; then bash /mnt/skills/user/exploring-data/scripts/install_ydata.sh fi ``` ### 3. Run analysis (always generates JSON + HTML by default) ```bash bash /mnt/skills/user/exploring-data/scripts/analyze.sh <filepath> [minimal|full] [html|json] ``` **Defaults:** minimal + html (also generates JSON) **Output:** - `eda_report.html` - Interactive report for user - `eda_report.json` - Machine-readable for Claude analysis ### 4. If Claude needs to analyze (user asks "what do you think?" etc.) ```bash python /mnt/skills/user/exploring-data/scripts/summarize_insights.py /mnt/user-data/outputs/eda_report.json ``` **Reads:** `eda_report.json` (comprehensive ydata output) **Writes:** `eda_insights_summary.md` (condensed for Claude) **Outputs to stdout:** Formatted markdown summary Claude should read the stdout markdown summary, NOT the full JSON report. ## Invocation Examples ```bash # Standard workflow (user views HTML)

What's inside
Steps it walks through
  1. Workflow
  2. 1. Check if installed (instant)
  3. 2. Install if needed (one-time, ~19s)
  4. 3. Run analysis (always generates JSON + HTML by default)
  5. 4. If Claude needs to analyze (user asks "what do you think?" etc.)
  6. Invocation Examples
  7. Modes
  8. User Triggers for Full Mode
Ships with 1 file
  • metadata.json
Commands it runs
bash /mnt/skills/user/exploring-data/scripts/check_install.sh
if [ "$(bash check_install.sh)" = "not_installed" ]; then
bash /mnt/skills/user/exploring-data/scripts/install_ydata.sh
fi
bash /mnt/skills/user/exploring-data/scripts/analyze.sh <filepath> [minimal|full] [html|json]
python /mnt/skills/user/exploring-data/scripts/summarize_insights.py /mnt/user-data/outputs/eda_report.json
Standard workflow (user views HTML)
bash analyze.sh /mnt/user-data/uploads/data.csv
Link user to: computer:///mnt/user-data/outputs/eda_report.html
User asks Claude to analyze
More from claude-skill-registry
All skills →
About this skill
What does the exploring-data skill do?

Exploratory data analysis using ydata-profiling. Use when users upload .csv/.xlsx/.json/.parquet files or request "explore data", "analyze dataset", "EDA", "profile data". Generates interactive HTML or JSON reports with statistics, visualizations, correlations, and quality alerts.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill exploring-data --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going