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/netcdf-processingnpx skills add cxcscmu/SkillLearnBench --skill netcdf-processinggit clone --depth 1 https://github.com/cxcscmu/SkillLearnBenchWrote 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/cxcscmu/skilllearnbench/netcdf-processing)<a href="https://agentmods.dev/skills/cxcscmu/skilllearnbench/netcdf-processing"><img src="https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/netcdf-processing.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.00017 | $0.00833 |
| Opus 5 | $0.00009 | $0.00417 |
| Sonnet 5 | $0.00003 | $0.00167 |
| Haiku 4.5 | $0.00002 | $0.00083 |
Grade A, and why
netcdf-processing 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 2d 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 — 127 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NetCDF Processing Skill
Overview
NetCDF (Network Common Data Form) is a self-describing binary format commonly used for scientific data. GLM outputs simulation results in NetCDF format containing temperature, mixing, and other variables across time and depth.
Installation & Setup
Required Libraries
pip install netCDF4 numpy pandas
Basic Reading
import netCDF4 as nc
import pandas as pd
# Open NetCDF file
ds = nc.Dataset('/path/to/output.nc', 'r')
# List variables
print(ds.variables.keys())
# List dimensions
print(ds.dimensions.keys())
# Read a variable
temp = ds.variables['temp'][:] # Returns numpy array
time = ds.variables['time'][:]
z = ds.variables['z'][:] # depth dimension
GLM-Specific Output Structure
Typical GLM NetCDF output contains:
- time: Time index (often hours since simulation start)
- z: Depth levels (m)
- temp: Temperature (°C) with shape [time, depth]
- Other variables: salinity, mixing rates, etc.
Data Extraction Example
import netCDF4 as nc
import pandas as pd
def extract_glm_temperatures(nc_file, start_date='2009-01-01'):
"""Extract temperature time series from GLM NetCDF output"""
ds = nc.Dataset(nc_file)
# Get data
temp = ds.variables['temp'][:] # [time, depth]
z = ds.variables['z'][:] # depth
time = ds.variables['time'][:] # time since reference
# Get reference date from time variable
time_var = ds.variables['time']
units = time_var.units # e.g., "seconds since 2009-01-01 00:00:00"
# Convert time to datetime
from netCDF4 import num2date
dates = num2date(time, units)
ds.close()
return temp, z, dates
Key Operations
Subsetting Data
# Get temperature at specific depth
depth_idx = 5 # 5m depth
temp_5m = temp[:, depth_idx]
# Get temperature at specific time
time_idx = 100 # Time step 100
temp_at_time = temp[time_idx, :]
Time Operations
from netCDF4 import num2date
from datetime import datetime
# Convert netCDF time to datetime
dates = num2date(time_values, time_units)
# Filter to specific date range
start = datetime(2009, 1, 1)
end = datetime(2015, 12, 31)
mask = (dates >= start) & (dates <= end)
filtered_temp = temp[mask, :]
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.
- 2d ago First seen · 127 lines · 17 tokens per session scan A afacbbeaae47
netcdf-processing is a skill published in the GitHub repository cxcscmu/SkillLearnBench (83 stars, last pushed 1mo ago), licensed MIT. It adds 17 tokens to every session and 833 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-09-03.
Other skills, from other repositories
seisbench-model-api
An overview of the core model API of SeisBench, a Python framework for training and applying machine learning algorithms to seismic data. It is useful for annotating waveforms using pretrained SOTA ML models, for tasks like phase picking, earthquake detection, waveform denoising and depth estimation. For any waveform…
jax-skills
High-performance numerical computing and machine learning workflows using JAX. Supports array operations, automatic differentiation, JIT compilation, RNN-style scans, map/reduce operations, and gradient computations. Ideal for scientific computing, ML models, and dynamic array transformations.
Multimodal Alignment
Align speech, text, image, or video signals for multimodal benchmarks.
embodied-eval-automation
Plan, explain, build, run, monitor, validate, transfer, and audit reproducible embodied-model studies and batch episode collection. Use when a user wants to connect a local, SSH, or cloud GPU host; understand and compare a policy, VLA, world model, world-action model, or hybrid with a benchmark; discover and reuse…
pick-a-pii-model
Select an on-device OpenMed PII model from the committed registry by language, runtime format, and size budget, then require recall validation before deployment. Use when an agent must choose a local PII detector for CPU, Apple Silicon, or a mobile export without relying on live model discovery.
esm
Comprehensive toolkit for protein language models including ESM3 (generative multimodal protein design across sequence, structure, and function) and ESM C (efficient protein embeddings and representations). Use this skill when working with protein sequences, structures, or function prediction; designing novel…