How can I make a weekly/recurring reminder via AppleScript?

Is there a way to access the recurring/repeating property of a reminder when making it in an AppleScript, like the following:

tell list chosenList
    make new reminder at end with properties {name:"Test", due date:date "6/9/2021 9:35 AM", repeat: weekly}
end tell

Where the part repeat: weekly won’t work …


Solution 1:

This doesn't look at all pretty, but it'd be worth testing to see if it works on current macOS...

https://macscripter.net/viewtopic.php?id=46061

Basically setting it with EventKit directly.