Skip to main content

Agent-friendly helpers for the xmACIS2Py climate library — station discovery, multi-station fetch, and seasonal/monthly composites. Ships with the acis-weather skill.

Project description

acis2llm

Agent-friendly helpers for the xmACIS2Py climate library — plus the acis-weather skill that teaches an LLM how to use them.

acis2llm adds three things on top of xmacis2py:

  1. Station discovery — resolve "10001" (ZIP) / "KNYC" (station ID) / "4600 Silver Hill Rd, Washington, DC" (street address) → ACIS station ID
  2. Multi-station fetch — comma-aggregate ("KNYC,KJFK") and plus-backfill ("KNYC+OLDER") syntax
  3. Composite analyses — seasonal/monthly aggregates and threshold frequencies, computed across many years in one call

The bulk of the value lives in skills/acis-weather/ — a complete agent skill with an agentskills.io-compliant SKILL.md and 5 reference docs covering xmACIS2Py + the helpers + worked recipes.


Install

This project uses uv. Install it first if you don't have it.

uv pip install xmacis2py acis2llm

Or for one-off scripts without managing a venv:

uv run --with xmacis2py --with acis2llm python your_script.py

Requires Python 3.10+ and network access to data.rcc-acis.org, geocoding.geo.census.gov, and api.zippopotam.us. No API keys.


Use the skill (the agent path)

If you're driving an LLM agent (Claude Code, Cursor, Gemini CLI, OpenCode, etc.), point it at the skill and it will know what to do:

# Copy or symlink skills/acis-weather into your client's skills directory.
# For Claude Code:
ln -s "$PWD/skills/acis-weather" ~/.claude/skills/acis-weather

# For project-scoped use, drop it under .claude/skills/ in your repo:
ln -s "$(pwd)/skills/acis-weather" /path/to/project/.claude/skills/acis-weather

The skill is a single SKILL.md (under 500 lines) plus references/ files the agent loads on demand. See the agentskills.io spec for the format.


Use the library directly (the human path)

import xmacis2py
import acis2llm

# 1. Resolve a ZIP / station ID / street address → station metadata
stn = acis2llm.find_best_station("80202")
# {'station_id': 'KDEN', 'name': 'DENVER INTL ARPT, CO', 'data_start': 1948, ...}
# Note: "City, State" alone does not resolve — pass a ZIP, a station ID
# (e.g. "KDEN"), or a full street address.

# 2. Single-station fetch
df = xmacis2py.get_single_station_acis_data(
    stn["station_id"],
    start_date="2023-06-01",
    end_date="2023-08-31",
)

# 3. Multi-station aggregate (comma) or backfill (plus)
df = acis2llm.fetch_stations(
    "KNYC,KBOS,KORD",
    start_date="2024-06-01",
    end_date="2024-06-30",
)

# 4. Cross-year composite — "snowiest winters in Buffalo"
result = acis2llm.seasonal_summary(
    station="KBUF",
    variable="snow",
    season="winter",
    aggregation="sum",
)
top5 = sorted(result["table"], key=lambda r: r["value"] or 0, reverse=True)[:5]

# 5. Threshold frequency — "100°F+ days each summer at Phoenix"
result = acis2llm.frequency_of_occurrence(
    station="KPHX",
    variable="tmax",
    threshold=100,
    comparison=">=",          # also accepts "at_or_above"
    season="summer",
    start_year=2015,
    end_year=2023,
)

For the full API surface see skills/acis-weather/references/acis2llm-api.md. For end-to-end recipes see skills/acis-weather/references/recipes.md.


Variables

Short Full xmACIS2Py column Unit
tmax Maximum Temperature °F
tmin Minimum Temperature °F
tavg Average Temperature °F
tdpa Average Temperature Departure °F
prcp Precipitation inches
snow Snowfall inches
snow_depth Snow Depth inches
hdd / cdd / gdd Heating / Cooling / Growing Degree Days base 65/65/32°F
awdb Average Daily Water Balance inches

acis2llm's composite functions accept short codes; xmACIS2Py's analysis functions take the full column names. acis2llm.VARIABLE_COLUMN_MAP exports the mapping.


Development

uv sync --extra dev
uv run pytest

Layout

.
├── src/acis2llm/
│   ├── __init__.py             public API re-exports
│   ├── geocoding.py            find_best_station, geocode_census, is_zip_code
│   ├── composites.py           seasonal_summary, monthly_totals_by_year, ...
│   └── multi_station.py        fetch_stations (comma + plus syntax)
├── skills/acis-weather/
│   ├── SKILL.md                agent-facing playbook (agentskills.io v1)
│   └── references/             vendored xmACIS2Py docs + recipes + API ref
└── tests/
    ├── test_composites.py
    └── test_multi_station.py

Credits

  • Data: Regional Climate Centers via the Applied Climate Information System.
  • Engine: xmACIS2Py by Eric J. Drewitz (@edrewitz) — MIT-licensed. Documentation in skills/acis-weather/references/xmacis2py-*.md is vendored from upstream and reformatted; original copyright preserved.

License: MIT — see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

acis2llm-0.2.1.tar.gz (19.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

acis2llm-0.2.1-py3-none-any.whl (14.5 kB view details)

Uploaded Python 3

File details

Details for the file acis2llm-0.2.1.tar.gz.

File metadata

  • Download URL: acis2llm-0.2.1.tar.gz
  • Upload date:
  • Size: 19.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for acis2llm-0.2.1.tar.gz
Algorithm Hash digest
SHA256 878cb210211dd37133c4ba75142716552d3c9b8b5865dac3b1ad38150d3a4211
MD5 6168842abf68ae857e27194a6c572203
BLAKE2b-256 928d9843841d2acb02399156095bdb8afcbbc6a9ec9b1a6dc1390ea07e49e0ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for acis2llm-0.2.1.tar.gz:

Publisher: publish.yml on yenba/ACIS2LLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file acis2llm-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: acis2llm-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for acis2llm-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7a53d7370a5421a4914cba83576a8860a54b9b2a3a35de31479d14d5c42f4cf7
MD5 905040577e3ad51fcc72d8fef53ada62
BLAKE2b-256 65f8bcc0e761c2e97c7dd5db7cfac4be547e0c70560bb20cfd3957fc2ffd148b

See more details on using hashes here.

Provenance

The following attestation bundles were made for acis2llm-0.2.1-py3-none-any.whl:

Publisher: publish.yml on yenba/ACIS2LLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page