From taxonomy-creation
Use when you need a canonical reference taxonomy — ISO 3166 countries, ISO 4217 currencies, ISO 639 languages, US states, Canadian provinces, IANA timezones, HTTP status codes, MIME types. Offline-first, cached.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin taxonomy-creationThis skill uses the workspace's default tool permissions.
Produce a ready-made standard taxonomy from authoritative public sources. Cache the dataset locally and export as canonical CSV + JSON in the plugin's data directory.
Prevents silent decimal mismatch bugs in EVM ERC-20 tokens via runtime decimals lookup, chain-aware caching, bridged-token handling, and normalization. For DeFi bots, dashboards using Python/Web3, TypeScript/ethers, Solidity.
Share bugs, ideas, or general feedback.
Produce a ready-made standard taxonomy from authoritative public sources. Cache the dataset locally and export as canonical CSV + JSON in the plugin's data directory.
${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/taxonomy-creation/cache/ for an existing cached dataset matching the standard and variant. If found and recent (< 30 days old), reuse it.https://datahub.io/core/country-list (CSV export) or iso-codes Debian package fallbackhttps://datahub.io/core/currency-codes or Debian iso-codes packageiso-codes package or https://iso639-3.sil.org/code_tables/download_tableshttps://raw.githubusercontent.com/jasonong/List-of-US-States-and-Territories/master/states.csv or hardcoded canonical listhttps://www.iana.org/time-zones (tzdata via python3 -m tzdata or system /usr/share/zoneinfo/)https://httpwg.org/specs/rfc9110.html or hardcoded canonical list (1xx–5xx)https://www.iana.org/assignments/media-types/ or system /etc/mime.typescache/<standard>-<variant>-<date>.csv.code (primary key, e.g., "US", "USD", "en"), name (human-readable label), optionally metadata (JSONB: region, symbol, etc.), source_url, generated_at.parent_code column.data/<standard>/<standard>-<variant>.csv and data/<standard>/<standard>-<variant>.json.README.md alongside with the source URL, fetch date, and recommended SQL schema (example: CREATE TABLE countries (code VARCHAR(3) PRIMARY KEY, name VARCHAR(255) UNIQUE NOT NULL, region VARCHAR(50), metadata JSONB);).data/<standard>/: a CSV (importable directly to any DB) and a JSON array (consumable by apps).cache/ (reusable for 30 days).data/<standard>/README.md.