agent-instructions
Use when writing project instructions for a coding agent (CLAUDE.md, AGENTS.md, or equivalent). Covers what belongs in them, what does not, structure, and…
Use when analyzing or transforming tabular data in Python. Covers vectorized operations, memory-efficient dtypes, correct joins, groupby patterns, and avoiding the silent errors pandas makes easy.
$ npx -y skills add nimadorostkar/Claude-Skills-collection --skill pandas --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pandasContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when analyzing or transforming tabular data in Python. Covers vectorized operations, memory-efficient dtypes, correct joins, groupby patterns, and avoiding the silent errors pandas makes easy.
name: pandas description: Use when analyzing or transforming tabular data in Python. Covers vectorized operations, memory-efficient dtypes, correct joins, groupby patterns, and avoiding the silent errors pandas makes easy. metadata: category: data version: 1.0.0 tags: [pandas, python, dataframe, analysis, polars]
Transform and analyze tabular data correctly and at speed. Pandas makes it easy to write code that is slow, and easier still to write code that is silently wrong.
1. **Set dtypes at read time** — Reading a CSV without `dtype` gives you `object` columns and `float64` for everything numeric. This is usually a 5-10x memory difference. 2. **Vectorize** — Any `for` loop or `iterrows` over a DataFrame should be a vectorized expression, a `groupby`, or a `merge`. `apply` is a loop with better syntax. 3. **Verify every join** — `merge(..., validate="one_to_many")`. An unvalidated join that is secretly many-to-many silently multiplies your rows, and the resulting totals will be wrong in a way that is hard to notice. 4. **Aggregate with groupby, not with loops** — And use named aggregation so the output columns are readable. 5. **Chunk or switch when it does not fit** — Pandas holds everything in memory, typically at several times the file size. Above a few gigabytes, use chunked processing, Polars, or DuckDB.
**Reading efficiently, and joining safely:**
import pandas as pd
orders = pd.read_csv(
"orders.csv",
usecols=["order_id", "customer_id", "status", "total_cents", "created_at"],
dtype={
"order_id": "string",
"customer_id": "string",
"status": "category", # 4 distinct values: 90% less memory than object
"total_cents": "int64",
},
parse_dates=["created_at"],
)
customers = pd.read_csv("customers.csv", usecols=["customer_id", "segment"],
dtype={"customer_id": "string", "segment": "category"})
# validate= turns a silent row explosion into a loud, immediate error.
enriched = orders.merge(
customers,
on="customer_id",
how="left",
validate="many_to_one", # many orders, one customer. Anything else raises.
)**Vectorized instead of looped — and correct:**
# Slow (~100x) and easy to get wrong.
for idx, row in df.iterrows():
df.at[idx, "band"] = "high" if row["total_cents"] > 10_000 else "low"
# Vectorized, readable, and it does not mutate while iterating.
df["band"] = pd.cut(
df["total_cents"],
bins=[0, 10_000, 50_000, float("inf")],
labels=["low", "mid", "high"],
)
# Named aggregation: the output columns are named, not a MultiIndex to unpick.
summary = (
df.groupby(["segment", "band"], observed=True)
.agg(
order_count=("order_id", "count"),
revenue_cents=("total_cents", "sum"),
median_cents=("total_cents", "median"),
)
.reset_index()
)A curated library of 137 production-grade skills for Claude and other AI coding agents. Every skill follows one structure, speaks with one voice, and earns its place by changing what the agent does.
Repo: nimadorostkar/Claude-Skills-collection
Use when writing project instructions for a coding agent (CLAUDE.md, AGENTS.md, or equivalent). Covers what belongs in them, what does not, structure, and…
Use when an agent needs state that survives a session or a context compaction. Covers what to persist, file-based memory, structuring notes for retrieval, and…
Use when automating agent behavior with lifecycle hooks. Covers hook events, deterministic enforcement of rules the model should not be trusted to remember,…
Use when packaging skills, commands, hooks, and MCP servers into a distributable plugin. Covers manifest structure, bundling, versioning, testing, and…
Use when writing a new skill for an AI agent. Covers scoping, description writing for reliable triggering, progressive disclosure, and the difference between a…
Use when reviewing or improving an existing agent skill. Covers triggering accuracy, content quality, redundancy with the base model, and measuring whether the…