Verba Plugin profile

Weather Brief

Automation-only: returns a very short summary of recent weather conditions (temperature, wind, rain) over the last N hours using Home Assistant sensors.

weather_brief Version 1.0.2
When to use

Best-fit scenarios

Automation-only: returns a very short summary of recent weather conditions (temperature, wind, rain) over the last N hours using Home Assistant sensors.

How to call it

Execution guidance

Use the example call shape below and provide only the fields the plugin expects.

Arguments

Input shape

  • hours integer

    12

  • query string

    What was the weather like outside in the last 12 hours?

Settings

Required configuration

  • INPUT_TEXT_ENTITY string

    If set (e.g., input_text.weather_brief), the plugin will write the summary into this helper.

  • RAIN_ENTITY string

    Rain/precip sensor entity_id (optional).

    Default: sensor.outdoor_rain_rate
  • TEMP_ENTITY string

    Outdoor temperature sensor entity_id.

    Default: sensor.outdoor_temperature
  • WIND_ENTITY string

    Wind speed sensor entity_id (optional).

    Default: sensor.outdoor_wind_speed
Example call

Canonical usage JSON

{
  "function": "weather_brief",
  "arguments": {
    "hours": 12,
    "query": "What was the weather like outside in the last 12 hours?"
  }
}