Can my users get siri to use my app without specifying the app name?

I have a food logging app. I want my users to be able to say something like: "Hey siri, log chicken and rice for lunch"

But appshortcuts provider is forcing me to add the name of the app to the phrase so it becomes:

"Hey siri, log chicken and rice for lunch in FoodLogApp".

After running a quick survey, I've found that many users dislike having to say the name of the app, it makes it too cumbersome.

My question is: Is there a plan from apple 2026 so the users can converse with Siri and apps more naturally without having to say the name of the app? If so, is it already in Beta and can you point me towards it?

@available(iOS 17.0, *)
struct LogMealIntent: AppIntent {
    static var title: LocalizedStringResource = "Log Meal"
    static var description: LocalizedStringResource = "Log a meal"
    
    
    func perform() async throws -> some IntentResult {
       
        
        return .result()
    }
}

@available(iOS 17.0, *)
struct LogMealShortcutsProvider: AppShortcutsProvider {
    static var appShortcuts: [AppShortcut] {
        AppShortcut(
            intent: LogMealIntent(),
            phrases: [
                "Log chicken and rice for lunch in \(.applicationName)",
            ],
            shortTitle: "Log meal",
            systemImageName: "mic.fill"
        )
    }
} 

The \(.applicationName) token is required for App Shortcuts. If you omit it, you'll get compile errors about this requirement, including when building with Xcode 26 and running on iOS 26. If you'd like to see this requirement change in the future, please open an Enhancement Request through Feedback Assistants.

— Ed Ford,  DTS Engineer

Can my users get siri to use my app without specifying the app name?
 
 
Q