AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Data Analysis

skill-imezx-skills-data-analysis · by imezx

A Claude skill from imezx/skills.

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-imezx-skills-data-analysis

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-imezx-skills-data-analysis)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Data Analysis? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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:

  1. Inventory - How many rows? How many columns? What are the column names and types?
  2. Quality check - Missing values, duplicates, outliers, type mismatches.
  3. Descriptive stats - Mean, median, std, min, max, percentiles for numeric columns.
  4. Distribution - Are numeric columns skewed? Are categorical columns imbalanced?
  5. Relationships - Correlations, group comparisons, time trends if a date column exists.
  6. 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.

Versions

  • v0.1.0 Imported from the upstream source.