Going to Settings | Devices & Services | Devices presents a list of all devices. You can filter it by integration.
I’m trying to create the same list of devices with auto-entities. I envision something like you can do with wildcards. But I can’t find a way to enumerate over an integration’s devices. I’m assuming this is possible, but so far no bueno.
- type: custom:auto-entities
card:
type: entities
filter:
include:
- entity_id: scene.sutton_powerview*
Just to be clear, are you trying to list all the entities or all the devices? As its name implies, the Auto Entities card is for entities.
I’m trying to get all the entities per device of an integration
You could do something like:
type: custom:auto-entities
card:
type: entities
filter:
include: []
exclude: []
template: |
{% set integ = 'zha' %}
{{ integration_entities(integ)
| map('device_id') | unique
| map('device_entities') | flatten }}
1 Like
NathanCu
(Nathan Curtis)
April 15, 2026, 7:19pm
5
I walk the entity / device / integration tree in the Inspect tool for my ZenOS indexer…
###############################################################################
# ZenOS-AI DojoTools: Index Cluster
# Version: 4.5.5
#
# Scripts:
# zen_dojotools_query — ZQ-1 entity filter/query engine
# zen_dojotools_inspect — Entity expansion and drawer resolution
# zen_dojotools_index — Universal HyperGraph set-logic engine (with
# label_index drawer merge patch)
#
# Automations:
# DojoTools Zen Index Event Handler — async index_command event loop
#
# MIGRATED FROM: scripts.yaml + automations.yaml (2026-03-05)
#
# REPLACES:
# zen_dojotools_hyperindex (experimental branch, retired)
# dojotools_zen_index / dojotools_zen_index_backup (pre-RC1 legacy)
#
# NOTE: zen_dojotools_inspect is also called by dojotools_scheduler.yaml
This file has been truncated. show original