I'm trying to write an automaton to export certain calendar events to my todo list. The rub is when I try to check the todo list to see if that event already exists; for some reason it doesn't work.
Full automaton: https://bin.lain.pw/upload/otter-whale-sheep
Looking at the trace, the first step produces:
tasklist:
todo.recurring:
items:
- summary: Take out the trash
uid: 8a9f0514-4634-11f0-8c3e-107b44913c19
status: needs_action
due: '2025-06-10'
But by the time we get to setting task_exists, the loop always fails. I've tried simlifying it to the point it always sets true as long as we iterate even once, but even that fails, so it implies I'm either constructing the loop wrong, or we're losing tasklist before we get there.
What am I doing wrong?
