For those that have adopted App Intents in their apps, or are considering it: What are the main frustrations / limitations you have hit? FB numbers are great, but in this case not required!
@mgorbach I have an enum that conforms to AppEnum but it was silently breaking in Xcode 14 due to the fact that it was in a local swift package. In Xcode 15 it’s been a runtime error so the project can’t run.
@rwitherspoon Huh, did you take an enum that is defined in a Swift package (a framework build product I assume) and conform it to AppEnum within your app in an extension?

@mgorbach that’s finally what I had to do to get everything working. I figured shortcuts may be generated during compile time or app install based on the contents of the app target- not the packages.

The worst of it was that a “ghost” shortcut was still showing in Shortcuts.app before I finally did this. I had to rerun over and over again while changing the shortcut title to finally notice what was going on.