From influx-weather
Generate a comprehensive weather summary report combining all metrics. Use when the user asks for a weather overview, full report, daily summary, or "what was the weather like" for a period.
How this skill is triggered — by the user, by Claude, or both
Slash command
/influx-weather:search-summaryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run these queries via `query_weather` and compile a unified report:
Run these queries via query_weather and compile a unified report:
Current conditions (last reading):
SELECT last(tempf), last(humidity), last(baromrelin), last(windspeedmph),
last(windgustmph), last(winddir), last(hourlyrainin), last(uv), last(solarradiation)
FROM weather WHERE time > now() - 10m
Period highs/lows (adjust time range):
SELECT max(tempf), min(tempf), max(windgustmph), max(uv), sum(hourlyrainin)
FROM weather WHERE time > now() - 24h
Present as a structured weather report with sections: Temperature, Humidity, Wind, Precipitation, Solar/UV, Pressure.
npx claudepluginhub pridkett/claude-plugins --plugin influx-weatherQueries New Zealand weather and marine data from the MetOcean API. Provides current conditions, hourly forecasts, 7-day outlooks, and wave/swell data via CLI.
Fetches current, hourly, and daily weather forecasts, alerts, and historical statistics from WeatherKit for iOS apps. Provides Swift API usage for weather data integration.
Searches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.