App Intents: How to test intent donation using IntentDonationManager?

Hello!

I'm trying to donate an Intent to iOS using IntentDonationManager, following the methods described in the documentaion.

try await IntentDonationManager.shared.donate(intent: MyIntent()) // succeeded

However, I'm not seeing any effect of this action anywhere in the system (iOS 17 and 16). I have debugged it on both the simulator and a physical device, and I have also enabled the "Display Recent Shortcuts" toggle in the developer settings, but I still don't see any relevant suggestions appearing.

Similarly, the issue also occurs with the old SiriKit framework, where INInteraction.donate(completion:) doesn't seem to have any observable effect. I recall that in iOS 15, the simulator would immediately present the donated Shortcut action on the lock screen and Spotlight page. However, starting from iOS 16 and continuing to the current iOS 17 beta 1/2, I haven't been able to achieve the same behavior using the same code.

Another similar report: https://developer.apple.com/forums/thread/723109

So is there any way to test or verify the results of this donation action?