usgs-earthquake-geojson

usgs-earthquake-geojson is a skill for Claude Code, Codex from cxcscmu/SkillLearnBench. It costs 33 tokens per session (520 once invoked), scanned A, original, MIT.

A guide to reading earthquake records in USGS GeoJSON, a map-data format published by the U.S. Geological Survey. It extracts each event’s identifier, magnitude, location, depth, time, and place description.

In plain words
What is it for?
Use it to load earthquake event files, convert records into a GeoPandas table, and prepare their locations and details for analysis.
Why use it?
It removes the need to repeatedly navigate nested GeoJSON fields and convert timestamps or coordinates by hand.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to load earthquake event files, convert records into a GeoPandas table, and prepare their locations and details for analysis.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cxcscmu/skilllearnbench/usgs-earthquake-geojson
Install

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.

Any agent
npx skills add cxcscmu/SkillLearnBench --skill usgs-earthquake-geojson
Clone the repo
git clone --depth 1 https://github.com/cxcscmu/SkillLearnBench

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for usgs-earthquake-geojson

README.md
[![agentmods](https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/usgs-earthquake-geojson/github.svg)](https://agentmods.dev/skills/cxcscmu/skilllearnbench/usgs-earthquake-geojson)
Your own site
<a href="https://agentmods.dev/skills/cxcscmu/skilllearnbench/usgs-earthquake-geojson"><img src="https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/usgs-earthquake-geojson/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.

agentmods 80×15 button for usgs-earthquake-geojson

Your own site · 80×15
<a href="https://agentmods.dev/skills/cxcscmu/skilllearnbench/usgs-earthquake-geojson"><img src="https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/usgs-earthquake-geojson.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 520 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00033 $0.00520
Opus 5 $0.00016 $0.00260
Sonnet 5 $0.00007 $0.00104
Haiku 4.5 $0.00003 $0.00052

Measured 7d ago against content hash 90152081d8de, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

usgs-earthquake-geojson 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 7d 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.

skills/b1-one-shot-claude-sonnet-4-6/earthquake-plate-calculation/usgs-earthquake-geojson/SKILL.md · 68 lines

What it actually says

USGS Earthquake GeoJSON Parsing

Data Structure

USGS earthquake GeoJSON follows the standard FeatureCollection format:

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "mag": 5.1,
        "place": "13 km NW of Port-Vila, Vanuatu",
        "time": 1735537742808,   // Unix timestamp in milliseconds
        "mag": 5.1,
        "magType": "mww"
      },
      "geometry": {
        "type": "Point",
        "coordinates": [168.2183, -17.6555, 66.612]  // [lon, lat, depth_km]
      },
      "id": "us6000pgf9"
    }
  ]
}

Loading into GeoDataFrame

import geopandas as gpd
import json
from datetime import datetime, timezone

with open("earthquakes_2024.json") as f:
    eq_data = json.load(f)

records = []
for feat in eq_data["features"]:
    props = feat["properties"]
    coords = feat["geometry"]["coordinates"]
    time_ms = props["time"]
    time_iso = datetime.fromtimestamp(time_ms / 1000, tz=timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ")
    records.append({
        "id": feat["id"],
        "place": props["place"],
        "time": time_iso,
        "magnitude": props["mag"],
        "longitude": coords[0],
        "latitude": coords[1],
    })

gdf = gpd.GeoDataFrame(
    records,
    geometry=gpd.points_from_xy([r["longitude"] for r in records], [r["latitude"] for r in records]),
    crs="EPSG:4326"
)

Key Notes

  • time field is Unix timestamp in milliseconds (divide by 1000 for seconds)
  • geometry.coordinates is [longitude, latitude, depth_km] — NOT [lat, lon]
  • Use datetime.fromtimestamp(ms/1000, tz=timezone.utc) for ISO 8601 UTC formatting
Changes

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.

  1. 7d ago First seen · 68 lines · 33 tokens per session scan A 90152081d8de

Subscribe to this mod's changes

usgs-earthquake-geojson is a skill published in the GitHub repository cxcscmu/SkillLearnBench (83 stars, last pushed 2mo ago), licensed MIT. It adds 33 tokens to every session and 520 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

rdkit

Cheminformatics toolkit for fine-grained molecular control. SMILES/SDF parsing, descriptors (MW, LogP, TPSA), fingerprints, substructure search, 2D/3D generation, similarity, reactions. For standard workflows with simpler interface, use datamol (wrapper around RDKit). Use rdkit for advanced control, custom…

benchflow-ai/skillsbench · 80 tokens

logistics-rules-to-optimization

Translate logistics and operations rules into optimization variables and constraints. Use when an operations problem describes vehicles, routes, depots, pickups, dropoffs, inventory, capacity, assignments, time windows, service targets, penalties, resource limits, or other business rules that need to become an…

benchflow-ai/skillsbench · 66 tokens

mip-solver-and-solution-audit

Operational workflow for hard integer-programming optimization tasks: selecting an installed solver, preserving solver/incumbent certificates, extracting feasible schedules, recomputing metrics from final outputs, and writing consistent reports. Use when a task requires a MIP, solver status, objective value, bound…

benchflow-ai/skillsbench · 77 tokens

lab-unit-harmonization

Comprehensive clinical laboratory data harmonization for multi-source healthcare analytics. Convert between US conventional and SI units, standardize numeric formats, and clean data quality issues. This skill should be used when you need to harmonize lab values from different sources, convert units for clinical…

benchflow-ai/skillsbench · 82 tokens

routing-subtour-elimination

Subtour-elimination methods for TSP, VRP, pickup/dropoff routing, and routing MIPs with binary arc variables. Use when route-continuity constraints may permit disconnected cycles and the model needs MTZ constraints, flow-based connectivity constraints, DFJ subset cuts, or lazy/iterative subtour cuts.

benchflow-ai/skillsbench · 70 tokens

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…

benchflow-ai/skillsbench · 88 tokens