From influx-weather
Search rain and precipitation data from the weather station. Use when the user asks about rain, rainfall, precipitation, how much it rained, or daily/weekly/monthly rain totals.
How this skill is triggered — by the user, by Claude, or both
Slash command
/influx-weather:search-precipitationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. Parse the time range from the user's request.
Parse the time range from the user's request.
For daily/accumulated totals, prefer reading the pre-aggregated fields:
SELECT last(dailyrainin), last(weeklyrainin), last(monthlyrainin), last(totalrainin)
FROM weather WHERE time > now() - 1h
hourlyrainin which takes a point estimate of the rain at that sample and extrapolates to see how much rain would accrue if it kept raining at that rate for a full hour. For example, to get the heaviest rate of rain from the last 30 days:SELECT max(hourlyrainin) FROM weather WHERE time > now() - 30d
npx claudepluginhub pridkett/claude-plugins --plugin influx-weatherFetches weather/climate data via Earth2Studio data sources for specific variables and times. Verifies variable support and generates download scripts.
Queries real-time water level and flow data for Han River observation stations from HRFCO (Han River Flood Control Office) by station name or code via a proxy API. Useful for checking current river conditions at bridges like Hannam or Jamsu.
Queries New Zealand weather and marine data from the MetOcean API. Provides current conditions, hourly forecasts, 7-day outlooks, and wave/swell data via CLI.