I’m newly on 2025.11.1. I can’t seem to be able to create any scripts. I removed the scripts.yaml from the configuration.yaml and rebooted. When I create to create a notification via Portal UI or via YAML, it give me a timeout for 1-2 seconds then it goes away I can save but it never actually saves it. When I go back into scripts it’s empty with a “Create your first script”.
I don’t see anything in ha core logs that would point to a disk issue. Other functions are all working. Disk is only 27% used so plenty of space.
Here is the more complex notification that I was trying to save, but a simple notify iphone via the UI didn’t work either:
alias: "Thermostat: notify"
mode: parallel
fields:
title:
description: Title
message:
description: Body
sequence:
- action: notify.mobile_app_iphone_awm_15
data:
title: "{{ title }}"
message: "{{ message }}"
- action: telegram_bot.send_message
response_variable: tg
data:
config_entry_id: "01K29XM7J88P3JQNZ8CG2XDWDX" # your bot’s entry id
target:
- 7938407510 # your chat_id
title: "{{ title }}"
message: "{{ message }}"
parse_mode: plain_text
- variables:
telegram_chats: "{{ tg.chats | default([]) }}"
If that’s not there, it might be why you are having problems…
I believe you need the scripts: key in configuration.yaml and/or a scripts.yaml file somewhere to contain the UI data.
That will work for having scripts, but you need to create your scripts using notepad++, vs code editor, file editor or something else, not the built-in UI script editor
(Same goes for automations, only /config/automations.yaml is accepted by the UI automations editor)
I knew that but I must have missed a restart between all of the different changes. Loaded the script into the yaml and restarted again and now it shows up. Thank you.