Verba Plugin profile

Events Query (Brief)

Automation tool that returns a very short summary of recent events (safe for dashboards). Can optionally write the summary into a Home Assistant input_text entity automatically.

events_query_brief Version 1.0.2
When to use

Best-fit scenarios

Automation tool that returns a very short summary of recent events (safe for dashboards).

How to call it

Execution guidance

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

Arguments

Input shape

  • area string

    front yard

  • timeframe string

    today|yesterday|last_24h|<date>

  • query string

    brief summary

  • input_text_entity string

    input_text.front_yard_events_brief

Settings

Required configuration

  • INPUT_TEXT_ENTITY string

    If set (example: input_text.event_brief), this plugin will write the summary into it.

Example call

Canonical usage JSON

{
  "function": "events_query_brief",
  "arguments": {
    "area": "front yard",
    "timeframe": "today|yesterday|last_24h|<date>",
    "query": "brief summary",
    "input_text_entity": "input_text.front_yard_events_brief"
  }
}