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.
npx skills add Jignesh-Ponamwar/skills-mcp --skill data-analysisgit clone --depth 1 https://github.com/Jignesh-Ponamwar/skills-mcpWrote 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.
[](https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/data-analysis)<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/data-analysis"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/data-analysis/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/data-analysis"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/data-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00062 | $0.01142 |
| Opus 5 | $0.00031 | $0.00571 |
| Sonnet 5 | $0.00012 | $0.00228 |
| Haiku 4.5 | $0.00006 | $0.00114 |
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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Data Analysis Skill
Overview
Perform structured exploratory data analysis (EDA) on tabular datasets. Covers loading, cleaning, profiling, statistical analysis, grouping, and communicating insights clearly.
Step-by-Step Process
Step 1: Load and Inspect the Data
import pandas as pd
import numpy as np
df = pd.read_csv("data.csv")
# Basic shape
print(f"Rows: {len(df):,}, Columns: {df.shape[1]}")
print(df.dtypes)
print(df.head(10))
For Excel: pd.read_excel("data.xlsx", sheet_name=0)
For JSON: pd.read_json("data.json")
For large files: use pd.read_csv("data.csv", chunksize=10000)
Step 2: Profile the Dataset
# Missing values
missing = df.isnull().sum()
print(missing[missing > 0])
# Descriptive statistics (numeric)
print(df.describe())
# Cardinality (categorical)
for col in df.select_dtypes("object").columns:
print(f"{col}: {df[col].nunique()} unique values")
if df[col].nunique() <= 20:
print(df[col].value_counts())
Step 3: Clean the Data
# Drop duplicate rows
df = df.drop_duplicates()
# Handle missing values
df["column"].fillna(df["column"].median(), inplace=True) # numeric
df["category"].fillna("Unknown", inplace=True) # categorical
# Fix data types
df["date"] = pd.to_datetime(df["date"])
df["price"] = df["price"].str.replace("$", "").astype(float)
# Strip whitespace in strings
df["name"] = df["name"].str.strip()
Step 4: Compute Key Statistics
# Central tendency and spread
df["revenue"].agg(["mean", "median", "std", "min", "max"])
# Percentiles
df["revenue"].quantile([0.25, 0.5, 0.75, 0.9, 0.99])
# Correlation matrix
corr = df.select_dtypes("number").corr()
Step 5: Group and Aggregate
# Group by one dimension
summary = df.groupby("region")["revenue"].agg(["sum", "mean", "count"])
# Group by multiple dimensions
pivot = df.groupby(["year", "product_category"])["sales"].sum().unstack()
# Top N
top_products = df.groupby("product")["revenue"].sum().nlargest(10)
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.
- 9d ago First seen · 150 lines · 62 tokens per session scan A a6879b3b6778
data-analysis is a skill published in the GitHub repository Jignesh-Ponamwar/skills-mcp (7 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 62 tokens to every session and 1,142 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-31.
Other skills, from other repositories
cloudflare-dns
Operational skill for agents to manage Cloudflare DNS - records, proxied vs DNS-only, TTL, API tokens, and safe cutover patterns.
agent-harness-fault-injection
Use when an agent workflow needs deterministic recovery evidence for sandbox, MCP/tool, worker, checkpoint, memory, or orchestration failures.
architecture-decision-records
Comprehensive patterns for creating, maintaining, and managing Architecture Decision Records (ADRs) that capture the context and rationale behind significant technical decisions.
aria
Designs the data model, API contracts, and structural foundation of the system.
autonomous-agent-patterns
Design patterns for building autonomous coding agents, inspired by Cline and OpenAI Codex.
peon-ping-log
Log exercise reps for the Peon Trainer. Use when user says they did pushups, squats, or wants to log reps. Examples - "/peon-ping-log 25 pushups", "/peon-ping-log 30 squats", "log 50 pushups".