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 agentmods add skills/cxcscmu/skilllearnbench/csv-data-handlingnpx skills add cxcscmu/SkillLearnBench --skill csv-data-handlinggit clone --depth 1 https://github.com/cxcscmu/SkillLearnBenchWhat 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 | $0.00022 | $0.01387 |
| Opus 5 | $0.00011 | $0.00694 |
| Sonnet 5 | $0.00004 | $0.00277 |
| Haiku 4.5 | $0.00002 | $0.00139 |
Grade A, and why
csv-data-handling 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 3d 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 — 237 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CSV Data Handling with D3.js
Overview
D3.js provides built-in CSV parsing. Understanding type coercion and data transformation is essential for visualization.
1. Loading CSV Files
Basic CSV Load
d3.csv("data.csv").then(data => {
console.log(data); // Array of objects
// [{ key1: value1, key2: value2 }, ...]
});
With Error Handling
d3.csv("data.csv")
.then(data => {
console.log("Data loaded:", data.length, "rows");
processData(data);
})
.catch(error => {
console.error("Error loading CSV:", error);
});
With Type Accessor
D3 can automatically convert types:
d3.csv("data.csv", row => {
return {
ticker: row.ticker,
marketCap: +row.marketCap, // convert to number
sector: row.sector,
value: parseFloat(row.value)
};
}).then(processData);
2. Data Transformation
Parsing Numeric Values
data.forEach(d => {
d.marketCap = +d.marketCap; // unary + operator
d.employees = parseInt(d.employees, 10);
d.yield = parseFloat(d.yield);
});
Handling Missing Values
data = data.filter(d => {
// Keep only rows with required data
return d.marketCap && d.sector;
});
// Or replace missing with default
data.forEach(d => {
d.marketCap = d.marketCap || 0;
d.website = d.website || "N/A";
});
Filtering and Sorting
// Filter by sector
const tech = data.filter(d => d.sector === "Information Technology");
// Sort by market cap
data.sort((a, b) => b.marketCap - a.marketCap);
// Top 50 by market cap
const top50 = data.sort((a, b) => b.marketCap - a.marketCap).slice(0, 50);
3. Loading Multiple Files
Sequential Loading
Promise.all([
d3.csv("companies.csv"),
d3.csv("prices.csv")
]).then(([companies, prices]) => {
// Both loaded
const merged = mergeData(companies, prices);
visualize(merged);
});
Loading Individual Stock Data
// Load main data
d3.csv("data/stock-descriptions.csv").then(stocks => {
// For each stock, load price history
const pricePromises = stocks.map(stock =>
d3.csv(`data/indiv-stock/${stock.ticker}.csv`)
.then(prices => ({
ticker: stock.ticker,
prices: prices
}))
);
return Promise.all(pricePromises);
}).then(allData => {
// Process combined data
visualize(allData);
});
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.
- 3d ago First seen · 237 lines · 22 tokens per session scan A b1a81db5753d
csv-data-handling is a skill published in the GitHub repository cxcscmu/SkillLearnBench (82 stars, last pushed 1mo ago), licensed MIT. It adds 22 tokens to every session and 1,387 once invoked, about $0.0001 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
gpt-multimodal
Analyze images and multi-frame sequences using OpenAI GPT series.
Speaker Clustering Methods
Choose and implement clustering algorithms for grouping speaker embeddings after VAD and embedding extraction. Compare Hierarchical clustering (auto-tunes speaker count), KMeans (fast, requires known count), and Agglomerative clustering (fixed clusters). Use Hierarchical clustering when speaker count is unknown…
mhc-algorithm
Implement mHC (Manifold-Constrained Hyper-Connections) for stabilizing deep network training. Use when implementing residual connection improvements with doubly stochastic matrices via Sinkhorn-Knopp algorithm. Based on DeepSeek's 2025 paper (arXiv:2512.24880).
nanogpt-training
Train GPT-2 scale models (124M parameters) efficiently on a single GPU. Covers GPT-124M architecture, tokenized dataset loading (e.g., HuggingFace Hub shards), modern optimizers (Muon, AdamW), mixed precision training, and training loop implementation.
agentsop-dspy
Operating SOP for DSPy (Stanford NLP) — the declarative framework for "programming, not prompting" language models. Activate when the user says any of: "use DSPy", "compile a prompt", "optimize prompts/programs", "MIPRO/MIPROv2", "BootstrapFewShot", "GEPA", "Signatures + Modules", "teleprompter", "auto-tune prompts…
agentsop-per-model-artifacts
Lifecycle SOP for per-model prompt artifacts — the compiled prompts, instructions, few-shot demos, edit-format pins, and embedding-bound indices that change behavior when the underlying LM, dataset, or framework version changes. Activate when adopting compiled prompts (DSPy, GEPA, BootstrapFewShot output), when…