I used to do this relatively often with Alexa and have been missing it, then I just realized how easy it was to implement.
alias: voice spelling
description: ""
triggers:
- trigger: conversation
command:
- spell {word}
- how do you spell {word}
conditions: []
actions:
- set_conversation_response: "{{ trigger.slots.word | list | join(' ') }}"
mode: single
I feel like this is so simple that it should just be a baked in sentence!