data-analysis

data-analysis is a skill for Claude Code, Codex from sinaptik-ai/starpod. It costs 62 tokens per session (1,593 once invoked), scanned A, original, MIT.

A data-analysis skill for CSV, JSON, Excel, and database-export files. It can inspect, clean, analyse, visualise, and summarise structured data.

In plain words
What is it for?
Use it to profile a dataset, fix data types and missing values, calculate statistics, explore distributions and correlations, process large files in chunks, create charts, or build a concise findings report.
Why use it?
It reduces the manual work needed to understand messy datasets and find useful patterns, missing values, relationships, and statistical summaries.

Skill for Claude CodeCodex

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

Good fit Use it to profile a dataset, fix data types and missing values, calculate statistics, explore distributions and correlations, process large files in chunks, create charts, or build a concise findings report.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sinaptik-ai/starpod/data-analysis
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 sinaptik-ai/starpod --skill data-analysis
Clone the repo
git clone --depth 1 https://github.com/sinaptik-ai/starpod

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-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/sinaptik-ai/starpod/data-analysis.svg)](https://agentmods.dev/skills/sinaptik-ai/starpod/data-analysis)
Your own site
<a href="https://agentmods.dev/skills/sinaptik-ai/starpod/data-analysis"><img src="https://agentmods.dev/badge/skills/sinaptik-ai/starpod/data-analysis.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,593 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.00062 $0.01593
Opus 5 $0.00031 $0.00796
Sonnet 5 $0.00012 $0.00319
Haiku 4.5 $0.00006 $0.00159

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

Security

Grade A, and why

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

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/profile.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

crates/starpod/skills/data-analysis/SKILL.md · 212 lines

How it starts

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

Data Analysis

Workflow

  1. Load & inspect — read data, check shape, types, nulls
  2. Clean — handle missing values, fix types, remove duplicates
  3. Explore — summary stats, distributions, correlations
  4. Analyze — answer the specific question
  5. Visualize — create clear, labeled charts
  6. Report — summarize findings in plain language

Quick Start: Data Profiling

python scripts/profile.py data.csv                    # print profile to stdout
python scripts/profile.py data.xlsx --output report.md  # save to file
python scripts/profile.py data.xlsx --sheet "Sales"     # specific sheet

The profiler auto-detects file format and generates: row/column counts, types, null percentages, numeric statistics, and top categorical values.

Loading Data

import pandas as pd

# Auto-detect format
df = pd.read_csv("data.csv")
df = pd.read_excel("data.xlsx")
df = pd.read_json("data.json")
df = pd.read_csv("data.tsv", sep="\t")

# Handle encoding issues
df = pd.read_csv("data.csv", encoding="latin-1")

# Large files — read in chunks
for chunk in pd.read_csv("large.csv", chunksize=10000):
    process(chunk)

Inspection

df.shape                    # (rows, cols)
df.dtypes                   # column types
df.head(10)                 # first 10 rows
df.describe()               # numeric statistics
df.describe(include='all')  # include categorical
df.isnull().sum()           # missing values per column
df.nunique()                # unique values per column
df.duplicated().sum()       # duplicate rows

Cleaning

# Drop duplicates
df = df.drop_duplicates()

# Handle missing values
df['col'].fillna(df['col'].median(), inplace=True)  # fill with median
df = df.dropna(subset=['critical_col'])               # drop rows missing critical data

# Fix types
df['date'] = pd.to_datetime(df['date'])
df['amount'] = pd.to_numeric(df['amount'], errors='coerce')
df['category'] = df['category'].astype('category')

# Clean strings
df['name'] = df['name'].str.strip().str.lower()

# Rename columns
df.columns = df.columns.str.strip().str.lower().str.replace(' ', '_')

Read the full file on GitHub · 212 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 · 212 lines · 62 tokens per session scan A b1913b431ba7

Subscribe to this mod's changes

data-analysis is a skill published in the GitHub repository sinaptik-ai/starpod (78 stars, last pushed 5mo ago), licensed MIT. It adds 62 tokens to every session and 1,593 once invoked, about $0.0003 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-30.