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 sinaptik-ai/starpod --skill data-analysisgit clone --depth 1 https://github.com/sinaptik-ai/starpodWrote 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/sinaptik-ai/starpod/data-analysis)<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>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.01593 |
| Opus 5 | $0.00031 | $0.00796 |
| Sonnet 5 | $0.00012 | $0.00319 |
| Haiku 4.5 | $0.00006 | $0.00159 |
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.
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 — 212 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Data Analysis
Workflow
- Load & inspect — read data, check shape, types, nulls
- Clean — handle missing values, fix types, remove duplicates
- Explore — summary stats, distributions, correlations
- Analyze — answer the specific question
- Visualize — create clear, labeled charts
- 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(' ', '_')
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.
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.
- 8d ago First seen · 212 lines · 62 tokens per session scan A b1913b431ba7
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.
Other skills, from other repositories
google-sheets
Google Sheets via gws: read/write cells, append rows, structured batch edits.
data-analysis
Analyze Excel/CSV files with DuckDB SQL via bash.
attendance-signin-sheet
A spreadsheet generator for printable attendance or meeting sign-in sheets. It turns a list of names into rows with columns such as signatures, dates, departments, or employee IDs.
document-processor
Guidance for processing documents, extracting content, and transforming structured information. Use when the user asks to process, parse, extract, or transform document content such as PDFs, Word files, or spreadsheets.
xlsx
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When GLM needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing…
xlsx
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify…