Built in list of automations

I like the idea of the automation creator but currently its limited, my idea is that like a google or alex skill have a similar function to build an automation, you can still go in and manualy edit it but as confusing as yaml/ node red is this should allow non coders to create automation and see how there laid out.

Here what i did is think about the automation names

card:
  show_header_toggle: false
  title: Alexa Automations
  type: entities
filter:
  exclude:
    - state: unavailable
  include:
    - name: 'Alexa:*'
show_empty: false
sort:
  method: state
  reverse: false
type: 'custom:auto-entities'

create this
image

and i have

card:
  show_header_toggle: false
  title: Last 10 Automations
  type: entities
filter:
  template: |
    {{ states.automation
       | selectattr('attributes.last_triggered')
       | sort(attribute='attributes.last_triggered', reverse=true)
       | map(attribute='entity_id')
       | list | join(', ') }}
sort:
  attribute: last_triggered
  method: attribute
  reverse: last_triggered
  count: 10
type: 'custom:auto-entities'

1 Like

No point asking for node red functionality as it has nothing to do with home assistant.