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-weatherskill that teaches an LLM how to use them.
acis2llm adds three things on top of xmacis2py:
- Station discovery — resolve
"10001"(ZIP) /"KNYC"(station ID) /"4600 Silver Hill Rd, Washington, DC"(street address) → ACIS station ID - Multi-station fetch — comma-aggregate (
"KNYC,KJFK") and plus-backfill ("KNYC+OLDER") syntax - 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",
parameter="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",
parameter="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
Iterating on the skill
We improve acis-weather by driving real LLM agents through real weather queries and capturing what breaks. After a session that exercised the skill, paste the contents of docs/field-reports/DEBRIEF-PROMPT.md into the same chat. The agent will self-debrief and write either a one-line entry to docs/field-reports/log.md or a full structured report file alongside it. Works in any host (Claude Code, opencode, Gemini CLI, pi, etc.) — it's just a pasteable prompt.
The agent never edits the skill or the library; reports are triage input. To act on a report, either fix it directly or kick off a spec under docs/superpowers/specs/, then rename the report file with a RESOLVED- prefix to keep the historical trail.
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-*.mdis 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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file acis2llm-0.3.0.tar.gz.
File metadata
- Download URL: acis2llm-0.3.0.tar.gz
- Upload date:
- Size: 20.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de21e23a2341cdd44a434b2e58ade1348ec1efdcc28d1ecd74654e91804ab53c
|
|
| MD5 |
0d57278e2a23730d609164be33a1ac9c
|
|
| BLAKE2b-256 |
0a571bf37335d890bfb3eff7cb15a1f3f4e24e2249eb72d61c48fe59a2f97941
|
Provenance
The following attestation bundles were made for acis2llm-0.3.0.tar.gz:
Publisher:
publish.yml on yenba/ACIS2LLM
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
acis2llm-0.3.0.tar.gz -
Subject digest:
de21e23a2341cdd44a434b2e58ade1348ec1efdcc28d1ecd74654e91804ab53c - Sigstore transparency entry: 1398538974
- Sigstore integration time:
-
Permalink:
yenba/ACIS2LLM@d934d851e748c2838950728066ce1a202c6117bb -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/yenba
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d934d851e748c2838950728066ce1a202c6117bb -
Trigger Event:
push
-
Statement type:
File details
Details for the file acis2llm-0.3.0-py3-none-any.whl.
File metadata
- Download URL: acis2llm-0.3.0-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a558004ee46cf23b53960a2b98732c80c4aa28c4a5f750dacdc731752aa634d6
|
|
| MD5 |
57f7f26f4115a055a3057fb400b04fe8
|
|
| BLAKE2b-256 |
5dbe9746aa997ff98c6cca4d4c2fcf50f77681aa85ecb81fab612b4016065d85
|
Provenance
The following attestation bundles were made for acis2llm-0.3.0-py3-none-any.whl:
Publisher:
publish.yml on yenba/ACIS2LLM
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
acis2llm-0.3.0-py3-none-any.whl -
Subject digest:
a558004ee46cf23b53960a2b98732c80c4aa28c4a5f750dacdc731752aa634d6 - Sigstore transparency entry: 1398539160
- Sigstore integration time:
-
Permalink:
yenba/ACIS2LLM@d934d851e748c2838950728066ce1a202c6117bb -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/yenba
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d934d851e748c2838950728066ce1a202c6117bb -
Trigger Event:
push
-
Statement type: