Current HVAC setting?

In the developer tools → State I selected my climate.playroom and I get the settings below. I see hvac_modes, but I don’t see anywhere that the current mode is selected. I do see hvac_action, but this is only useful for my needs when the hvac is running, idle does me no good.

I’m pretty sure that what I need is there somehow, as the image below shows the current mode, even though the system is idle.

I have a few automations I want to create that requires me to know the current HVAC mode, but I don’t currently see how to get the current mode, given the data below that’s available.

My thermostats are imported using: Honeywell Total Connect Comfort (US) - Home Assistant

At one point in the past I was able to operation_mode

'{{ is_state_attr(''climate.master_bedroom'', ''operation_mode'', ''cool'') }} '

, but it appears that sometime after 12/20/2020 this attribute was removed.

Any assistance in getting at the current mode would be greatly appreciated.

hvac_modes:
  - 'off'
  - heat_cool
  - cool
  - heat
min_temp: 40
max_temp: 90
fan_modes:
  - 'on'
  - auto
preset_modes:
  - none
  - away
  - Hold
current_temperature: 73
temperature: 68
target_temp_high: null
target_temp_low: null
current_humidity: 128
fan_mode: auto
hvac_action: idle
preset_mode: null
aux_heat: 'off'
fan_action: idle
permanent_hold: false
dr_phase: -1
friendly_name: Playroom
supported_features: 91

image

Isn’t it just the state of the climate entity itself, rather than an attribute?
Like mine here, it’s idle right now but it does report that the operation mode is set to heat

OMG, how the hell have I missed that so many times when looking at the dev tools!

Thank you!