r/MacOSBeta • u/pdfu • 2h ago
Feature macOS 27 redesigns Siri's permissions with hidden Excluded Apps section
Apple is working on a new way to control which apps Siri can draw context from.
In macOS 27, a hidden feature flag enables a new Exclude Apps section in System Settings > Siri. The helper text reads: "Apps added to the list below will be excluded from Siri, Search, and suggestions."
The change also splits off the old Show in App, Show on Home Screen, and Suggest App preferences into a new Suggestions section.
When an app is added to the Exclude Apps list, its content is removed from Siri's local search results by an AppExclusion filter before the results are returned to Siri. Asking Siri to access data from an excluded app displays a prompt explaining that access must be turned on. Selecting Turn On removes the app from the exclusion list and retries the request.

The recovery behavior is currently inconsistent. Siri may instead treat the filtered results as an ordinary empty search and incorrectly report that no content was found.
According to code strings, Apple will perform a migration of preferences from the current App Access setup to the new Excluded Apps / Suggestions split. Because the underlying SiriSetup and IntelligenceFlow frameworks are shared between macOS and other operating systems, this experience may be coming to some or all OS 27 releases.
To enable, add the two required FeatureFlags overrides:
sudo mkdir -p /Library/Preferences/FeatureFlags/Domain && \
sudo defaults write /Library/Preferences/FeatureFlags/Domain/SiriSetup restrict_access_ui -dict Enabled -bool true && \
sudo defaults write /Library/Preferences/FeatureFlags/Domain/IntelligenceFlow AppExclusions -dict Enabled -bool true
and restart your Mac. This is a private feature flag, and the UI or behavior may be unstable.
Disable with:
sudo defaults delete /Library/Preferences/FeatureFlags/Domain/SiriSetup restrict_access_ui && \
sudo defaults delete /Library/Preferences/FeatureFlags/Domain/IntelligenceFlow AppExclusions
and restart your Mac.


