ha-yaml-automations
Installation
SKILL.md
Home Assistant YAML Automations
YAML Style Rules
- 2-space indentation (never tabs)
- Lowercase booleans:
true/false - Entity IDs:
domain.entity_name(lowercase, underscores)
Automation Template
automation:
- id: "unique_automation_id"
alias: "Descriptive Name"
description: "What this does"
mode: single # single | restart | queued | parallel
trigger:
- trigger: state
entity_id: binary_sensor.front_door
Related skills