Install
$ agentstack add skill-imezx-skills-data-analysis ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
data-analysis
Use this skill when asked to explore, analyse, or visualise any dataset, CSV, table, or collection of numbers.
Analysis Workflow
Always follow this sequence:
- Inventory - How many rows? How many columns? What are the column names and types?
- Quality check - Missing values, duplicates, outliers, type mismatches.
- Descriptive stats - Mean, median, std, min, max, percentiles for numeric columns.
- Distribution - Are numeric columns skewed? Are categorical columns imbalanced?
- Relationships - Correlations, group comparisons, time trends if a date column exists.
- Key findings - The 3-5 most actionable insights from the above.
Never skip steps. Never jump to "Key findings" without the groundwork.
Output Format
## Dataset Overview
Rows, columns, source, date range if applicable.
## Data Quality
Missing values per column, duplicates found, anomalies flagged.
## Descriptive Statistics
Table of numeric column stats. Categorical column value counts (top 5).
## Key Patterns
Bullet points - one insight per bullet, quantified.
Bad: "Sales seem higher in Q4"
Good: "Q4 sales average 34% higher than Q1-Q3 combined (mean: $2.1M vs $1.57M)"
## Recommendations
What to investigate further, or what action the data supports.
Rules
- Every insight must include a number. "Higher" without a figure is not an insight.
- Flag data quality issues before drawing conclusions - dirty data produces wrong insights.
- Distinguish correlation from causation explicitly when it matters.
- If asked to plot or chart, use the scripts in
scripts/- do not write raw matplotlib from scratch. - If a column looks like a date but is typed as a string, note it and parse it before time-series analysis.
Scripts
Pre-built analysis scripts live in scripts/. Read them before writing any analysis code.
| Script | Purpose | |---|---| | scripts/profile.py | Full dataset profile: types, nulls, stats, top values | | scripts/correlations.py | Pearson + Spearman correlation matrix with heatmap | | scripts/time_series.py | Date-aware trend analysis, resampling, rolling averages |
Usage: copy the relevant script, adapt the INPUT_FILE and column name variables at the top, then run.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: imezx
- Source: imezx/skills
- License: Apache-2.0
- Homepage: https://lmstudio.ai/khtsly/skills
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.