From influx-weather
Search historical outdoor and indoor temperature data from the weather station. Use when the user asks about temperature, heat, cold, how hot/cold it was, daily highs and lows, or indoor vs outdoor temperature over a time range.
How this skill is triggered — by the user, by Claude, or both
Slash command
/influx-weather:search-temperatureThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
When the user asks about temperature data:
When the user asks about temperature data:
query_weather MCP tool with an InfluxQL query like:SELECT mean(tempf), min(tempf), max(tempf), mean(tempinf)
FROM weather
WHERE time > now() - 24h
GROUP BY time(1h)
Adjust the time window (now() - 24h, now() - 7d, etc.) to match the request.
For a specific date range use: WHERE time >= '2024-01-01T00:00:00Z' AND time <= '2024-01-31T23:59:59Z'
npx claudepluginhub pridkett/claude-plugins --plugin influx-weatherReads Home Assistant entity history, logbook timelines, and long-term statistics via HA NOVA Relay. Summarizes state transitions, events, and trends within bounded time windows.
Fetches weather/climate data via Earth2Studio data sources for specific variables and times. Verifies variable support and generates download scripts.
Provides Home Assistant YAML templates for sensor configurations including temperature averages, motion presence detection, door/window security groups, and air quality indexing. Useful for sensor entity setup and analytics.