Get Automation Config
ha_config_get_automationRetrieve the full configuration of a Home Assistant automation, including triggers, conditions, actions, and mode settings. Provide an automation entity ID or unique ID to inspect its current definition.
Instructions
Retrieve Home Assistant automation configuration.
Returns the complete configuration including triggers, conditions, actions, and mode settings.
The returned config_hash is stable across consecutive reads of an unchanged config — compute_config_hash documents the underlying contract.
The returned automation_id is the resolved entity_id (canonical
form, e.g. automation.morning_routine) when the registry lookup
succeeds, falling back to the input identifier otherwise.
EXAMPLES:
Get automation: ha_config_get_automation("automation.morning_routine")
Get by unique_id: ha_config_get_automation("my_unique_automation_id")
For comprehensive automation documentation, use ha_get_skill_guide.
read inspect fetch view existing automation config triggers conditions actions get show detail
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes | Automation entity_id (e.g., 'automation.morning_routine') or unique_id |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||