shortcuts-playground 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/README.md +54 -0
  2. package/agents/shortcut-builder.md +172 -0
  3. package/agents/shortcut-remixer.md +239 -0
  4. package/commands/build-shortcut.md +32 -0
  5. package/commands/remix-shortcut.md +34 -0
  6. package/opencode.json +30 -0
  7. package/package.json +47 -0
  8. package/plugin/validator.ts +179 -0
  9. package/skills/shortcuts-playground/ACTIONS.md +713 -0
  10. package/skills/shortcuts-playground/APPINTENTS.md +2760 -0
  11. package/skills/shortcuts-playground/AUTOMATION_TRIGGERS.md +133 -0
  12. package/skills/shortcuts-playground/BEST_PRACTICES.md +357 -0
  13. package/skills/shortcuts-playground/CHANGELOG.md +585 -0
  14. package/skills/shortcuts-playground/CONTROL_FLOW.md +777 -0
  15. package/skills/shortcuts-playground/DATE_TIME.md +75 -0
  16. package/skills/shortcuts-playground/EXAMPLES.md +738 -0
  17. package/skills/shortcuts-playground/FILTERS.md +697 -0
  18. package/skills/shortcuts-playground/HEALTHKIT.md +317 -0
  19. package/skills/shortcuts-playground/ICONS_AND_COLORS.md +89 -0
  20. package/skills/shortcuts-playground/JAVASCRIPT_WEBPAGE.md +51 -0
  21. package/skills/shortcuts-playground/PARAMETER_TYPES.md +1117 -0
  22. package/skills/shortcuts-playground/PLIST_FORMAT.md +296 -0
  23. package/skills/shortcuts-playground/README.md +77 -0
  24. package/skills/shortcuts-playground/SKILL.md +459 -0
  25. package/skills/shortcuts-playground/THIRD_PARTY_ACTIONS.md +77 -0
  26. package/skills/shortcuts-playground/TOOLKIT_SNAPSHOT.md +62 -0
  27. package/skills/shortcuts-playground/URL_SCHEMES.md +59 -0
  28. package/skills/shortcuts-playground/VARIABLES.md +569 -0
  29. package/skills/shortcuts-playground/assets/shortcuts-small.svg +14 -0
  30. package/skills/shortcuts-playground/assets/shortcuts.png +0 -0
  31. package/skills/shortcuts-playground/data/healthkit-ios26.2-reference.json +2603 -0
  32. package/skills/shortcuts-playground/data/macos27-shortpy-grounding.json +4085 -0
  33. package/skills/shortcuts-playground/data/macos27-workflow-trigger-samples.json +1 -0
  34. package/skills/shortcuts-playground/data/shortcuts-glyph-synonyms.json +5102 -0
  35. package/skills/shortcuts-playground/data/shortcuts-icon-colors.json +107 -0
  36. package/skills/shortcuts-playground/data/shortcuts-official-glyph-mapping.json +509 -0
  37. package/skills/shortcuts-playground/data/toolkit-v63-tool-ids.json +1806 -0
  38. package/skills/shortcuts-playground/data/toolkit-v78-first-party-enum-cases.json +1 -0
  39. package/skills/shortcuts-playground/data/toolkit-v78-first-party-parameter-keys.json +1 -0
  40. package/skills/shortcuts-playground/data/toolkit-v78-ios27-tool-ids.json +1222 -0
  41. package/skills/shortcuts-playground/data/toolkit-v78-tool-ids.json +2745 -0
  42. package/skills/shortcuts-playground/data/toolkit-v78-trigger-parameter-keys.json +1051 -0
  43. package/skills/shortcuts-playground/golden-shortcuts/index.jsonl +19 -0
  44. package/skills/shortcuts-playground/golden-shortcuts/xml/1be4dde95b794253bf82438e201b33e7.xml +174 -0
  45. package/skills/shortcuts-playground/golden-shortcuts/xml/2e0fb675e45948aaacee7e534f910492.xml +1016 -0
  46. package/skills/shortcuts-playground/golden-shortcuts/xml/332c12a0060043b388b22b806be7ab58.xml +1924 -0
  47. package/skills/shortcuts-playground/golden-shortcuts/xml/3dd4ee24e43f464f92adaa70a0311eaa.xml +1177 -0
  48. package/skills/shortcuts-playground/golden-shortcuts/xml/4d102301c6e646faa7a8a221f4f4ec98.xml +321 -0
  49. package/skills/shortcuts-playground/golden-shortcuts/xml/51cc4e26d1044893a0c3f2f3630cf2d2.xml +1933 -0
  50. package/skills/shortcuts-playground/golden-shortcuts/xml/623e7f1ca5f948e2bd53811fec63e544.xml +136 -0
  51. package/skills/shortcuts-playground/golden-shortcuts/xml/6a18b76843ac45c384ac3400f3740997.xml +1791 -0
  52. package/skills/shortcuts-playground/golden-shortcuts/xml/71f0cacb0f604b399b76c5dcb7286e7c.xml +2228 -0
  53. package/skills/shortcuts-playground/golden-shortcuts/xml/807525ed9f974829bc8494defac923a8.xml +259 -0
  54. package/skills/shortcuts-playground/golden-shortcuts/xml/8ab0d39826ab4249be58672763caa3ba.xml +420 -0
  55. package/skills/shortcuts-playground/golden-shortcuts/xml/91c45fd3fd3b427897d9ba485efb1227.xml +800 -0
  56. package/skills/shortcuts-playground/golden-shortcuts/xml/97be626bb25c41709d175646a7f6d8f2.xml +424 -0
  57. package/skills/shortcuts-playground/golden-shortcuts/xml/ae59e10d409348f9bd33894f03f9beb4.xml +568 -0
  58. package/skills/shortcuts-playground/golden-shortcuts/xml/afa83b6be811483b9c32189c41eb9312.xml +391 -0
  59. package/skills/shortcuts-playground/golden-shortcuts/xml/cfdb083b857e4ac189629fa386d27cdc.xml +193 -0
  60. package/skills/shortcuts-playground/golden-shortcuts/xml/e01cebe192d64b2fbca80204d03d92ab.xml +111 -0
  61. package/skills/shortcuts-playground/golden-shortcuts/xml/ef669bcf8bad489d9ef4b88bfaf5772f.xml +780 -0
  62. package/skills/shortcuts-playground/golden-shortcuts/xml/f44f5caf5e3e48d4817e73af450c4404.xml +570 -0
  63. package/skills/shortcuts-playground/scripts/generate_healthkit_reference.py +394 -0
  64. package/skills/shortcuts-playground/scripts/lookup_action_grounding.py +1164 -0
  65. package/skills/shortcuts-playground/scripts/select_shortcut_icon_color.py +597 -0
  66. package/skills/shortcuts-playground/scripts/test_random_mixed_shortcuts.py +1067 -0
  67. package/skills/shortcuts-playground/scripts/test_wiring_regressions.py +2247 -0
  68. package/skills/shortcuts-playground/scripts/validate_shortcut.py +4526 -0
@@ -0,0 +1,1222 @@
1
+ {
2
+ "version": "toolkit-v78-ios27",
3
+ "generated_at": "2026-06-13T08:15:00Z",
4
+ "source": "iOS 27 Simulator Shortcuts ToolKit/Tools-prod.v78.sqlite",
5
+ "source_runtime": "iOS 27.0 Simulator",
6
+ "source_os_version": "24A5355p",
7
+ "platform": "iOS Simulator",
8
+ "ids": [
9
+ "com.agiletortoise.Drafts4.addto",
10
+ "com.agiletortoise.Drafts4.get",
11
+ "com.agiletortoise.Drafts4.open",
12
+ "com.agiletortoise.Drafts4.runAction",
13
+ "com.agiletortoise.Tally2.get",
14
+ "com.agiletortoise.Tally2.updatetally",
15
+ "com.apple.-Photos-AppIntents.PHWorkaroundFor146914251Intent",
16
+ "com.apple.AppKit.FetchIntelligenceCommands",
17
+ "com.apple.AppKit.InsertIntelligenceText",
18
+ "com.apple.AppKit.PresentWritingToolsResult",
19
+ "com.apple.AppKit.RequestEditingContext",
20
+ "com.apple.AppKit.RunIntelligenceCommand",
21
+ "com.apple.AppKit.RunIntelligenceCommandForKey",
22
+ "com.apple.AppKit.WindowTabActivateIntent",
23
+ "com.apple.AppKit.WindowTabEntity",
24
+ "com.apple.AppKit.WritingToolsCanPerformIntent",
25
+ "com.apple.AppKit.WritingToolsComposeIntent",
26
+ "com.apple.AppKit.WritingToolsOpenEndedIntent",
27
+ "com.apple.AppKit.WritingToolsPartnerIntent",
28
+ "com.apple.AppKit.WritingToolsProofreadIntent",
29
+ "com.apple.AppKit.WritingToolsRewriteIntent",
30
+ "com.apple.AppKit.WritingToolsSummarizeIntent",
31
+ "com.apple.AppKit.WritingToolsTransformKeyPointsIntent",
32
+ "com.apple.AppKit.WritingToolsTransformListIntent",
33
+ "com.apple.AppKit.WritingToolsTransformTableIntent",
34
+ "com.apple.AppStoreSettingsAppIntents.AppStoreSettingsAppIntents",
35
+ "com.apple.AppStoreSettingsAppIntents.AppStoreSettingsDeepLink",
36
+ "com.apple.AppStoreSettingsAppIntents.OpenAppStoreSettingsDeepLinkIntent",
37
+ "com.apple.BarcodeScanner.BarcodeScannerIntent",
38
+ "com.apple.Bridge.AboutDeepLinks",
39
+ "com.apple.Bridge.AccessibilityDeepLinks",
40
+ "com.apple.Bridge.ActionButtonDeepLinks",
41
+ "com.apple.Bridge.AppViewDeepLinks",
42
+ "com.apple.Bridge.AssistiveTouchDeepLinks",
43
+ "com.apple.Bridge.BoldTextEntity",
44
+ "com.apple.Bridge.BoldTextEntity-UpdatableEntity",
45
+ "com.apple.Bridge.CellularDeepLinks",
46
+ "com.apple.Bridge.DisplayBrightnessDeepLinks",
47
+ "com.apple.Bridge.EmergencySOSDeepLinks",
48
+ "com.apple.Bridge.GeneralDeepLinks",
49
+ "com.apple.Bridge.GesturesDeepLinks",
50
+ "com.apple.Bridge.NotificationsDeepLinks",
51
+ "com.apple.Bridge.OpenAboutDeepLinks",
52
+ "com.apple.Bridge.OpenAccessibilityDeepLinks",
53
+ "com.apple.Bridge.OpenActionButtonDeepLinks",
54
+ "com.apple.Bridge.OpenAppViewDeepLinks",
55
+ "com.apple.Bridge.OpenAssistiveTouchDeepLinks",
56
+ "com.apple.Bridge.OpenCellularDeepLinks",
57
+ "com.apple.Bridge.OpenDisplayBrightnessDeepLinks",
58
+ "com.apple.Bridge.OpenEmergencySOSDeepLinks",
59
+ "com.apple.Bridge.OpenGeneralDeepLinks",
60
+ "com.apple.Bridge.OpenGesturesDeepLinks",
61
+ "com.apple.Bridge.OpenNotificationsDeepLinks",
62
+ "com.apple.Bridge.OpenPasscodeDeepLinks",
63
+ "com.apple.Bridge.OpenPrivacyDeepLinks",
64
+ "com.apple.Bridge.OpenSiriDeepLinks",
65
+ "com.apple.Bridge.OpenSmartStackDeepLinks",
66
+ "com.apple.Bridge.OpenSoundsAndHapticsDeepLinks",
67
+ "com.apple.Bridge.OpenVoiceOverDeepLinks",
68
+ "com.apple.Bridge.OpenZoomDeepLinks",
69
+ "com.apple.Bridge.PasscodeDeepLinks",
70
+ "com.apple.Bridge.PingMyWatchControlIntent",
71
+ "com.apple.Bridge.PrivacyDeepLinks",
72
+ "com.apple.Bridge.SettingsNavigationEventDonationIntent",
73
+ "com.apple.Bridge.SiriDeepLinks",
74
+ "com.apple.Bridge.SmartStackDeepLinks",
75
+ "com.apple.Bridge.SoundsAndHapticsDeepLinks",
76
+ "com.apple.Bridge.VoiceOverDeepLinks",
77
+ "com.apple.Bridge.ZoomDeepLinks",
78
+ "com.apple.ClassKit.ClassKitAppIntents.OpenClassKitAppIntentsDeepLinks",
79
+ "com.apple.DocumentManagerUICore.RecentsAvocadoIntentHandler.DOCOpenLocationIntent",
80
+ "com.apple.Fitness.AwardedWorkoutIntent",
81
+ "com.apple.Fitness.INEndWorkoutIntent",
82
+ "com.apple.Fitness.INPauseWorkoutIntent",
83
+ "com.apple.Fitness.INResumeWorkoutIntent",
84
+ "com.apple.Fitness.INStartWorkoutIntent",
85
+ "com.apple.Fitness.MarkMirroredSegment",
86
+ "com.apple.Fitness.MoveStreakIntent",
87
+ "com.apple.Fitness.NextLimitedEditionAwardIntent",
88
+ "com.apple.Fitness.OpenActivityRingIntent",
89
+ "com.apple.Fitness.OpenAwardIntent",
90
+ "com.apple.Fitness.OpenFitnessAppSettingsDeepLinksIntent",
91
+ "com.apple.Fitness.OpenFitnessPlusForYouIntent",
92
+ "com.apple.Fitness.OpenHistoryIntent",
93
+ "com.apple.Fitness.OpenMindfulnessSessionIntent",
94
+ "com.apple.Fitness.OpenSettingsIntent",
95
+ "com.apple.Fitness.OpenSummaryCardIntent",
96
+ "com.apple.Fitness.OpenTrendIntent",
97
+ "com.apple.Fitness.OpenTrophyCaseIntent",
98
+ "com.apple.Fitness.OpenUnifiedWorkoutIntent",
99
+ "com.apple.Fitness.PauseMirroredWorkout",
100
+ "com.apple.Fitness.PauseYourRingsIntent",
101
+ "com.apple.Fitness.ResumeMirroredWorkout",
102
+ "com.apple.Fitness.ResumeRingsIntent",
103
+ "com.apple.Fitness.SearchFitnessPlusIntent",
104
+ "com.apple.Fitness.SetFitnessGoalIntent",
105
+ "com.apple.Fitness.SetFitnessGoalScheduleIntent",
106
+ "com.apple.Fitness.SetWorkoutEffortIntent",
107
+ "com.apple.Fitness.ShowActivityRingIntent",
108
+ "com.apple.Fitness.WorkoutExtremeStatIntent",
109
+ "com.apple.Fitness.WorkoutTotalDistanceIntent",
110
+ "com.apple.GameCenter.Settings.DeviceExpertExtension.OpenGameCenterSettingsDeepLinks",
111
+ "com.apple.HealthStandaloneIntents.HealthSettingsDeepLink",
112
+ "com.apple.HealthStandaloneIntents.OpenHealthSettingsIntent",
113
+ "com.apple.HearingApp.AdjustVolumeIntent",
114
+ "com.apple.HearingApp.MuteVolumeIntent",
115
+ "com.apple.HearingApp.SelectPresetIntent",
116
+ "com.apple.Maps.CalculateETAIntent",
117
+ "com.apple.Maps.CurrentLocationEntity",
118
+ "com.apple.Maps.DeleteParkingLocationsIntent",
119
+ "com.apple.Maps.DirectionsToParkedCarIntent",
120
+ "com.apple.Maps.MapsIntentsDebugDispatch",
121
+ "com.apple.Maps.MapsSettingsAppIntents.MapsSettingsDeepLink",
122
+ "com.apple.Maps.MapsSettingsAppIntents.OpenMapsSettingsDeepLink",
123
+ "com.apple.Maps.MapsShowPlacesInAppIntent",
124
+ "com.apple.Maps.NavigationSessionEntity",
125
+ "com.apple.Maps.ParkingLocationDataEntity",
126
+ "com.apple.Maps.ReportIncidentIntent",
127
+ "com.apple.Maps.SaveParkingLocationIntent",
128
+ "com.apple.Maps.SearchPlacesIntent",
129
+ "com.apple.Maps.ShareETAIntent",
130
+ "com.apple.Maps.ShowParkedCarIntent",
131
+ "com.apple.Maps.StartNavigationIntent",
132
+ "com.apple.Maps.StopNavigationIntent",
133
+ "com.apple.Maps.StopShareETAIntent",
134
+ "com.apple.Maps.TestStartNavigationIntent",
135
+ "com.apple.Maps.UpdateNavigationIntent",
136
+ "com.apple.Maps.UpdateParkingLocationIntent",
137
+ "com.apple.MediaRemoteAppIntentsExtension.ConnectToSpeakerIntent",
138
+ "com.apple.MobileAddressBook.ContactEntity",
139
+ "com.apple.MobileAddressBook.CreateContactIntent",
140
+ "com.apple.MobileAddressBook.DeleteContactIntent",
141
+ "com.apple.MobileAddressBook.FetchContactAvatarIntent",
142
+ "com.apple.MobileAddressBook.FetchContactIntent",
143
+ "com.apple.MobileAddressBook.OpenContactCardIntent",
144
+ "com.apple.MobileAddressBook.SearchInContactsIntent",
145
+ "com.apple.MobileAddressBook.UpdateContactIntent",
146
+ "com.apple.MobileAddressBook.ViewContactCardIntent",
147
+ "com.apple.MobileSMS.ChangeFilterModeIntent",
148
+ "com.apple.MobileSMS.ConversationEntity",
149
+ "com.apple.MobileSMS.ConversationListFocusFilterAction",
150
+ "com.apple.MobileSMS.DeleteConversationIntent",
151
+ "com.apple.MobileSMS.DeleteMessageIntent",
152
+ "com.apple.MobileSMS.DraftMessageIntent",
153
+ "com.apple.MobileSMS.EditSentMessageIntent",
154
+ "com.apple.MobileSMS.FetchConversationIdentifierIntent",
155
+ "com.apple.MobileSMS.FetchDowntimeConversationListIntent",
156
+ "com.apple.MobileSMS.FetchMutedConversationListIntent",
157
+ "com.apple.MobileSMS.INEditMessageIntent",
158
+ "com.apple.MobileSMS.INRequestPaymentIntent",
159
+ "com.apple.MobileSMS.INSearchForAccountsIntent",
160
+ "com.apple.MobileSMS.INSearchForMessagesIntent",
161
+ "com.apple.MobileSMS.INSendMessageIntent",
162
+ "com.apple.MobileSMS.INSendPaymentIntent",
163
+ "com.apple.MobileSMS.INSetMessageAttributeIntent",
164
+ "com.apple.MobileSMS.INUnsendMessagesIntent",
165
+ "com.apple.MobileSMS.MarkConversationAsUnreadIntent",
166
+ "com.apple.MobileSMS.MessageEntity",
167
+ "com.apple.MobileSMS.MuteConversationIntent",
168
+ "com.apple.MobileSMS.OpenConversationIntent",
169
+ "com.apple.MobileSMS.OpenConversationListIntent",
170
+ "com.apple.MobileSMS.OpenMessageIntent",
171
+ "com.apple.MobileSMS.RemoveTapbackIntent",
172
+ "com.apple.MobileSMS.SearchMessagesIntent",
173
+ "com.apple.MobileSMS.SendMessageIntent",
174
+ "com.apple.MobileSMS.SendMessageReactionIntent",
175
+ "com.apple.MobileSMS.SendReplyIntent",
176
+ "com.apple.MobileSMS.SetConversationReadStatusIntent",
177
+ "com.apple.MobileSMS.SetMessageReadStatusIntent",
178
+ "com.apple.MobileSMS.UnsendMessageIntent",
179
+ "com.apple.NanoSettings.NPRFPingMyPhoneIntent",
180
+ "com.apple.NanoSettings.NPRFSetAlwaysOnIntent",
181
+ "com.apple.NanoSettings.NPRFSetAutoLaunchAudioAppsIntent",
182
+ "com.apple.NanoSettings.NPRFSetFlashLightIntent",
183
+ "com.apple.NanoSettings.NPRFSetSchoolTimeIntent",
184
+ "com.apple.NanoSettings.NPRFSetSilentModeIntent",
185
+ "com.apple.NanoSettings.NPRFSetTheaterModeIntent",
186
+ "com.apple.NanoSettings.NPRFSetWakeOnWristRaiseIntent",
187
+ "com.apple.NanoSettings.NPRFSetWaterLockIntent",
188
+ "com.apple.PBBridgeSupport.BridgeIntents.COSGetCurrentGizmoFaceIntent",
189
+ "com.apple.PBBridgeSupport.BridgeIntents.COSListGizmoFacesIntent",
190
+ "com.apple.PBBridgeSupport.BridgeIntents.COSSetGizmoFaceIntent",
191
+ "com.apple.Passbook.AddMoneyIntent",
192
+ "com.apple.Passbook.AddPassIntent",
193
+ "com.apple.Passbook.AppleCardApplyIntent",
194
+ "com.apple.Passbook.AppleCardBillPayIntent",
195
+ "com.apple.Passbook.AppleCashBillSplitIntent",
196
+ "com.apple.Passbook.AppleCashRequestBillSplitIntent",
197
+ "com.apple.Passbook.AppleCashSendBillSplitIntent",
198
+ "com.apple.Passbook.CheckPaymentRequestCompatibilityIntent",
199
+ "com.apple.Passbook.CreateUserPassIntent",
200
+ "com.apple.Passbook.DeletePassIntent",
201
+ "com.apple.Passbook.GetDefaultCardIntent",
202
+ "com.apple.Passbook.GetPassesIntent",
203
+ "com.apple.Passbook.INRequestPaymentIntent",
204
+ "com.apple.Passbook.INSearchForAccountsIntent",
205
+ "com.apple.Passbook.INSendPaymentIntent",
206
+ "com.apple.Passbook.LaunchFromControlCenter",
207
+ "com.apple.Passbook.LiveActivityTapIntent",
208
+ "com.apple.Passbook.NearbyPeerPaymentFromControlCenter",
209
+ "com.apple.Passbook.OpenOrdersIntent",
210
+ "com.apple.Passbook.OpenPassIntent",
211
+ "com.apple.Passbook.OpenSavingsAccountEntity",
212
+ "com.apple.Passbook.OpenTransactionEntity",
213
+ "com.apple.Passbook.PeerPaymentTransferToBankIntent",
214
+ "com.apple.Passbook.SavingsAccountEntity",
215
+ "com.apple.Passbook.SearchTransactionsIntent",
216
+ "com.apple.Passbook.SetDefaultCardIntent",
217
+ "com.apple.Passbook.SharePassIntent",
218
+ "com.apple.Passbook.ShowExpiredPassesIntent",
219
+ "com.apple.Passbook.SmallWalletCardsBalanceWidgetConfiguration",
220
+ "com.apple.Passbook.SpendingInsightsIntent",
221
+ "com.apple.Passbook.TransferSavingsIntent",
222
+ "com.apple.Passbook.ViewBalanceIntent",
223
+ "com.apple.PassbookStub.CheckPaymentRequestCompatibilityIntent",
224
+ "com.apple.PeopleViewService.SelectPersonIntent",
225
+ "com.apple.PeopleViewService.URLAppIntent",
226
+ "com.apple.Preferences.AirDropBringDevicesTogetherEntity",
227
+ "com.apple.Preferences.AirDropBringDevicesTogetherEntity-UpdatableEntity",
228
+ "com.apple.Preferences.AirDropReceivingModeEntity",
229
+ "com.apple.Preferences.AirDropReceivingModeEntity-UpdatableEntity",
230
+ "com.apple.Preferences.AirDropUseCellularDataEntity",
231
+ "com.apple.Preferences.AirDropUseCellularDataEntity-UpdatableEntity",
232
+ "com.apple.Preferences.AlertHapticsEntity",
233
+ "com.apple.Preferences.AlertHapticsEntity-UpdatableEntity",
234
+ "com.apple.Preferences.AmbientSettingsDeepLink",
235
+ "com.apple.Preferences.AppearanceDeepLink",
236
+ "com.apple.Preferences.AskBeforeDeletingPreferenceEntity",
237
+ "com.apple.Preferences.BlockedSenderEnabledPreferenceEntity",
238
+ "com.apple.Preferences.BlockedSenderPreferenceEntity",
239
+ "com.apple.Preferences.BrandedCallingPrimaryToggleEntity",
240
+ "com.apple.Preferences.BrandedCallingPrimaryToggleEntity-UpdatableEntity",
241
+ "com.apple.Preferences.BrandedCallingSecondaryToggleEntity",
242
+ "com.apple.Preferences.BrandedCallingSecondaryToggleEntity-UpdatableEntity",
243
+ "com.apple.Preferences.BusinessConnectCallingToggleEntity",
244
+ "com.apple.Preferences.BusinessConnectCallingToggleEntity-UpdatableEntity",
245
+ "com.apple.Preferences.CameraSettingsDeepLink",
246
+ "com.apple.Preferences.CollapsedReadMessagesPreferenceEntity",
247
+ "com.apple.Preferences.DefaultAppsSettingsDeepLink",
248
+ "com.apple.Preferences.DisplayAndBrightnessDeepLink",
249
+ "com.apple.Preferences.FTSilenceUnknownCallersToggleEntity",
250
+ "com.apple.Preferences.FTSilenceUnknownCallersToggleEntity-UpdatableEntity",
251
+ "com.apple.Preferences.FaceTimeSettingsDynamicDeepLinks",
252
+ "com.apple.Preferences.FamilyMemberDetailsDeepLink",
253
+ "com.apple.Preferences.FamilySettingsDeepLink",
254
+ "com.apple.Preferences.FamilySubscriptionsDeepLink",
255
+ "com.apple.Preferences.FitnessSettingsDeepLink",
256
+ "com.apple.Preferences.FitnessSettingsIntents",
257
+ "com.apple.Preferences.FocusEntity",
258
+ "com.apple.Preferences.HomeScreenAndAppLibraryDeepLink",
259
+ "com.apple.Preferences.IncludeAttachmentRepliesPreferenceEntity",
260
+ "com.apple.Preferences.KeyboardSettingsDeepLink",
261
+ "com.apple.Preferences.LiveVoicemailToggleEntity",
262
+ "com.apple.Preferences.LiveVoicemailToggleEntity-UpdatableEntity",
263
+ "com.apple.Preferences.MPSilenceUnknownCallersToggleEntity",
264
+ "com.apple.Preferences.MPSilenceUnknownCallersToggleEntity-UpdatableEntity",
265
+ "com.apple.Preferences.MatterAccessoriesSettingsDeepLink",
266
+ "com.apple.Preferences.MatterAccessoriesSettingsIntents",
267
+ "com.apple.Preferences.MessageListPreviewLinesPreferenceEntity",
268
+ "com.apple.Preferences.MobilePhoneSettingsDynamicDeepLinks",
269
+ "com.apple.Preferences.MultitaskingAndGesturesDeepLink",
270
+ "com.apple.Preferences.MusicSettingsDeepLink",
271
+ "com.apple.Preferences.OpenAirDropBringDevicesTogetherEntity",
272
+ "com.apple.Preferences.OpenAirDropReceivingModeEntity",
273
+ "com.apple.Preferences.OpenAirDropSettingsStaticLinks",
274
+ "com.apple.Preferences.OpenAirDropUseCellularDataEntity",
275
+ "com.apple.Preferences.OpenAmbientSettingsDeepLinks",
276
+ "com.apple.Preferences.OpenAppearanceDeepLink",
277
+ "com.apple.Preferences.OpenAppleIntelligenceExtensionsSettingsDeepLinks",
278
+ "com.apple.Preferences.OpenCameraSettingsDeepLinks",
279
+ "com.apple.Preferences.OpenContactsDynamicDeepLinks",
280
+ "com.apple.Preferences.OpenControlCenterDeepLinks",
281
+ "com.apple.Preferences.OpenDefaultAppsSettingsDeepLink",
282
+ "com.apple.Preferences.OpenDictionarySettingsDeepLinks",
283
+ "com.apple.Preferences.OpenDisplayAndBrightnessDeepLink",
284
+ "com.apple.Preferences.OpenFaceTimeSettingsDynamicDeepLinks",
285
+ "com.apple.Preferences.OpenFamilyMemberSettings",
286
+ "com.apple.Preferences.OpenFamilySettings",
287
+ "com.apple.Preferences.OpenFamilySetup",
288
+ "com.apple.Preferences.OpenFamilySubscriptions",
289
+ "com.apple.Preferences.OpenFindMySettingsDeepLinks",
290
+ "com.apple.Preferences.OpenFitnessSettingsDeepLinkIntent",
291
+ "com.apple.Preferences.OpenFocusSettingsDynamicDeepLinks",
292
+ "com.apple.Preferences.OpenFontSettingsStaticDeepLinks",
293
+ "com.apple.Preferences.OpenHomeScreenAndAppLibraryDeepLink",
294
+ "com.apple.Preferences.OpenInternationalSettingsDeepLink",
295
+ "com.apple.Preferences.OpenKeyboardSettingsDeepLink",
296
+ "com.apple.Preferences.OpenMailSettingsDeepLink",
297
+ "com.apple.Preferences.OpenMatterAccessoriesSettingsDeepLink",
298
+ "com.apple.Preferences.OpenMobilePhoneSettingsDynamicDeepLinks",
299
+ "com.apple.Preferences.OpenMultitaskingAndGesturesDeepLink",
300
+ "com.apple.Preferences.OpenMusicSettingsDeepLink",
301
+ "com.apple.Preferences.OpenNotificationsSettingsDeepLinks",
302
+ "com.apple.Preferences.OpenPasswordManagerDeepLinks",
303
+ "com.apple.Preferences.OpenPasswordSettingsDeepLinks",
304
+ "com.apple.Preferences.OpenPhotosDeepLinks",
305
+ "com.apple.Preferences.OpenSafetyCheckDeepLinks",
306
+ "com.apple.Preferences.OpenScreenTimeDeepLinksIntent",
307
+ "com.apple.Preferences.OpenScreenshotServicesSettingsDeepLinkIntent",
308
+ "com.apple.Preferences.OpenSettingsCellularDeepLinks",
309
+ "com.apple.Preferences.OpenSettingsDeepLink",
310
+ "com.apple.Preferences.OpenSettingsSOSDeepLinks",
311
+ "com.apple.Preferences.OpenSpotlightSettingsDeepLinks",
312
+ "com.apple.Preferences.OpenTVProviderDeepLinks",
313
+ "com.apple.Preferences.OpenTwentyFourHourTimeEntity",
314
+ "com.apple.Preferences.OpenWalletDeepLinksIntent",
315
+ "com.apple.Preferences.OpeniCloudCalendarSettingsDeepLinks",
316
+ "com.apple.Preferences.OpeniCloudMailSettingsDeepLinks",
317
+ "com.apple.Preferences.SOSSettingsDeepLink",
318
+ "com.apple.Preferences.SafetyCheckDeepLinks",
319
+ "com.apple.Preferences.ScreenTimeNotificationsAppIntent",
320
+ "com.apple.Preferences.ScreenTimeUsageAppIntent",
321
+ "com.apple.Preferences.ScreenshotServicesSettingsDeepLink",
322
+ "com.apple.Preferences.SetFocusState",
323
+ "com.apple.Preferences.SettingsCellularDeepLinks",
324
+ "com.apple.Preferences.SettingsDeepLink",
325
+ "com.apple.Preferences.SettingsNavigationEventDonationIntent",
326
+ "com.apple.Preferences.SetupFamilyDeepLink",
327
+ "com.apple.Preferences.ShowContactPhotosPreferenceEntity",
328
+ "com.apple.Preferences.ShowInStatusBarEntity",
329
+ "com.apple.Preferences.ShowInStatusBarEntity-UpdatableEntity",
330
+ "com.apple.Preferences.SilenceJunkCallersToggleEntity",
331
+ "com.apple.Preferences.SilenceJunkCallersToggleEntity-UpdatableEntity",
332
+ "com.apple.Preferences.SilentModeEntity",
333
+ "com.apple.Preferences.SilentModeEntity-UpdatableEntity",
334
+ "com.apple.Preferences.SpotlightSettingsDeepLinks",
335
+ "com.apple.Preferences.TVProviderDeepLinks",
336
+ "com.apple.Preferences.TwentyFourHourTimeEntity",
337
+ "com.apple.Preferences.TwentyFourHourTimeEntity-UpdatableEntity",
338
+ "com.apple.Preferences.UndoSendDelayPreferenceEntity",
339
+ "com.apple.Preferences.iCloudCalendarSettingsAppIntentsExtensionDeepLinks",
340
+ "com.apple.Preferences.iCloudMailSettingsAppIntentsExtensionDeepLinks",
341
+ "com.apple.Preview.CloseIntent",
342
+ "com.apple.Preview.DocumentEntity",
343
+ "com.apple.Preview.FlipIntent",
344
+ "com.apple.Preview.OpenIntent",
345
+ "com.apple.Preview.RemoveBackgroundIntent",
346
+ "com.apple.Preview.ResizeIntent",
347
+ "com.apple.Preview.RotateIntent",
348
+ "com.apple.Preview.SearchIntent",
349
+ "com.apple.SafetyMonitorApp.SafetyMonitorIntent",
350
+ "com.apple.SensitiveContentAnalysis.SensitiveContentAnalysisConfigurationExtension.SensitiveContentAnalysisConfigurationExtension",
351
+ "com.apple.SharingUIService.ShareIntent",
352
+ "com.apple.ShortcutsActions.CellularPlanEntity",
353
+ "com.apple.ShortcutsActions.ChargeLimit",
354
+ "com.apple.ShortcutsActions.GetMultitaskingModeAction",
355
+ "com.apple.ShortcutsActions.GetOrientationAction",
356
+ "com.apple.ShortcutsActions.GetPhysicalActivity",
357
+ "com.apple.ShortcutsActions.PlayMusicTopHitAction",
358
+ "com.apple.ShortcutsActions.PlayPodcastTopHitAction",
359
+ "com.apple.ShortcutsActions.ResetCellularDataStatisticsAction",
360
+ "com.apple.ShortcutsActions.SetBatteryChargeLimitAction",
361
+ "com.apple.ShortcutsActions.SetDataRoamingAction",
362
+ "com.apple.ShortcutsActions.SetDefaultCellularPlanAction",
363
+ "com.apple.ShortcutsActions.SetMultitaskingModeAction",
364
+ "com.apple.ShortcutsActions.SetSilentModeAction",
365
+ "com.apple.ShortcutsActions.SetVoiceDataModeAction",
366
+ "com.apple.ShortcutsActions.ShowControlCenterAction",
367
+ "com.apple.ShortcutsActions.StartCallTopHitAction",
368
+ "com.apple.ShortcutsActions.StartFaceTimeAudioCallTopHitAction",
369
+ "com.apple.ShortcutsActions.StartFaceTimeCallTopHitAction",
370
+ "com.apple.ShortcutsActions.StartFaceTimeVideoCallTopHitAction",
371
+ "com.apple.ShortcutsActions.TimeMachineAction",
372
+ "com.apple.ShortcutsActions.ToggleCellularPlanAction",
373
+ "com.apple.ShortcutsActions.TranscribeAudioAction",
374
+ "com.apple.ShortcutsActions._DummyIntent",
375
+ "com.apple.SystemIntents.CloseApplicationIntent",
376
+ "com.apple.SystemIntents.CloseSceneIntent",
377
+ "com.apple.SystemIntents.LaunchApplicationIntent",
378
+ "com.apple.SystemIntents.ShowHomeScreenIntent",
379
+ "com.apple.TVRemoteApp.LaunchAppIntent",
380
+ "com.apple.TVRemoteUIService.LaunchApplicationIntent",
381
+ "com.apple.TVRemoteUIService.LaunchRemoteIntent",
382
+ "com.apple.TVRemoteUIService.LaunchScreenSaverIntent",
383
+ "com.apple.TVRemoteUIService.PauseContentIntent",
384
+ "com.apple.TVRemoteUIService.ReduceLoudSoundsIntent",
385
+ "com.apple.TVRemoteUIService.SkipContentIntent",
386
+ "com.apple.TVRemoteUIService.SleepAppleTVIntent",
387
+ "com.apple.TVRemoteUIService.SwitchUserAccountIntent",
388
+ "com.apple.TVRemoteUIService.ToggleCaptionsIntent",
389
+ "com.apple.TVRemoteUIService.ToggleSystemAppearanceIntent",
390
+ "com.apple.TVRemoteUIService.WakeAppleTVIntent",
391
+ "com.apple.TransparencySettingsIntents.OpenTransparencyPublicVerificationCodeDeepLink",
392
+ "com.apple.TransparencySettingsIntents.OpenTransparencyStatusDeepLink",
393
+ "com.apple.TransparencySettingsIntents.TransparencyPublicVerificationCodeEntity",
394
+ "com.apple.TransparencySettingsIntents.TransparencySettingsIntents",
395
+ "com.apple.TransparencySettingsIntents.TransparencyStatusEntity",
396
+ "com.apple.calls.PhoneAppIntentsExtension.AnswerCallIntent",
397
+ "com.apple.calls.PhoneAppIntentsExtension.CallEmergencyDestination",
398
+ "com.apple.calls.PhoneAppIntentsExtension.CallMessage",
399
+ "com.apple.calls.PhoneAppIntentsExtension.CallRecord",
400
+ "com.apple.calls.PhoneAppIntentsExtension.CreateConferenceCallIntent",
401
+ "com.apple.calls.PhoneAppIntentsExtension.EndCallIntent",
402
+ "com.apple.calls.PhoneAppIntentsExtension.PrepareCallMessagesIntent",
403
+ "com.apple.calls.PhoneAppIntentsExtension.PrepareReadCallRecordsIntent",
404
+ "com.apple.calls.PhoneAppIntentsExtension.SearchInRecentsIntent",
405
+ "com.apple.calls.PhoneAppIntentsExtension.SetCallAudioRouteIntent",
406
+ "com.apple.calls.PhoneAppIntentsExtension.StartEmergencyCallIntent",
407
+ "com.apple.calls.PhoneAppIntentsExtension.StartFaceTimeCallIntent",
408
+ "com.apple.calls.PhoneAppIntentsExtension.StartTelephonyCallIntent",
409
+ "com.apple.compass.CompassSettingsAppIntents.CompassSettingsDeepLink",
410
+ "com.apple.compass.CompassSettingsAppIntents.OpenCompassSettingsDeepLink",
411
+ "com.apple.contacts.autocomplete.appintentextension.CompleteNameDataIntent",
412
+ "com.apple.contacts.autocomplete.appintentextension.CompleteNameIntent",
413
+ "com.apple.contacts.autocomplete.appintentextension.FetchHandleAvailabilityIntent",
414
+ "com.apple.facetime.facetime",
415
+ "com.apple.gms.GenerativePartnerPrototypeExtension.GenerativePartnerPrototypeIntent",
416
+ "com.apple.gms.GenerativePartnerPrototypeExtension.GenerativePartnerPrototypeIntentChatGPT",
417
+ "com.apple.gms.GenerativePartnerPrototypeExtension.GenerativePartnerPrototypeIntentMultimodal",
418
+ "com.apple.iBooks.openin",
419
+ "com.apple.intelligenceflow.IntelligenceFlowAppIntentsExtension.OpenApplication",
420
+ "com.apple.intelligenceflow.IntelligenceFlowAppIntentsExtension.OpenFile",
421
+ "com.apple.intelligenceflow.IntelligenceFlowAppIntentsExtension.OpenURL",
422
+ "com.apple.intelligenceplatform.IntelligencePlatform.IntelligencePlatformDataActionsAppIntentsExtension.CalculateAppUsageIntent",
423
+ "com.apple.intelligenceplatform.IntelligencePlatform.IntelligencePlatformDataActionsAppIntentsExtension.FindSportsEvents",
424
+ "com.apple.intelligenceplatformd.PersonalKnowledgeTool",
425
+ "com.apple.mobilecal.CreateCalendarIntent",
426
+ "com.apple.mobilecal.CreateEventIntent",
427
+ "com.apple.mobilecal.DeleteCalendarsIntent",
428
+ "com.apple.mobilecal.DeleteEventIntent",
429
+ "com.apple.mobilecal.EditEventIntent",
430
+ "com.apple.mobilecal.EmailAttendeesIntent",
431
+ "com.apple.mobilecal.EmailOrganizerIntent",
432
+ "com.apple.mobilecal.EventEntity",
433
+ "com.apple.mobilecal.FetchTransferableEventByURLIntent",
434
+ "com.apple.mobilecal.FetchTransferableEventsInRangeIntent",
435
+ "com.apple.mobilecal.HighlightEventIntent",
436
+ "com.apple.mobilecal.InboxItemEntity",
437
+ "com.apple.mobilecal.JoinEventIntent",
438
+ "com.apple.mobilecal.ListEventsIntent",
439
+ "com.apple.mobilecal.LocationSearchIntent",
440
+ "com.apple.mobilecal.OpenCalendarEditorIntent",
441
+ "com.apple.mobilecal.OpenCalendarViewIntent",
442
+ "com.apple.mobilecal.OpenDateIntent",
443
+ "com.apple.mobilecal.OpenEventDetailsIntent",
444
+ "com.apple.mobilecal.OpenEventEditorIntent",
445
+ "com.apple.mobilecal.OpenSettingsCalendarStaticDeepLinks",
446
+ "com.apple.mobilecal.RespondToInboxItemIntent",
447
+ "com.apple.mobilecal.SetCalendarFocusConfiguration",
448
+ "com.apple.mobilecal.SettingsAllDayDefaultAlertTimesEntity",
449
+ "com.apple.mobilecal.SettingsAllDayDefaultAlertTimesEntity-UpdatableEntity",
450
+ "com.apple.mobilecal.SettingsAlternateCalendarEntity",
451
+ "com.apple.mobilecal.SettingsAlternateCalendarEntity-UpdatableEntity",
452
+ "com.apple.mobilecal.SettingsBirthdaysDefaultAlertTimesEntity",
453
+ "com.apple.mobilecal.SettingsBirthdaysDefaultAlertTimesEntity-UpdatableEntity",
454
+ "com.apple.mobilecal.SettingsDurationForNewEventsEntity",
455
+ "com.apple.mobilecal.SettingsDurationForNewEventsEntity-UpdatableEntity",
456
+ "com.apple.mobilecal.SettingsEventsDefaultAlertTimesEntity",
457
+ "com.apple.mobilecal.SettingsEventsDefaultAlertTimesEntity-UpdatableEntity",
458
+ "com.apple.mobilecal.SettingsShowInviteeDeclinesEntity",
459
+ "com.apple.mobilecal.SettingsShowInviteeDeclinesEntity-UpdatableEntity",
460
+ "com.apple.mobilecal.SettingsShowLocationSuggestionsEntity",
461
+ "com.apple.mobilecal.SettingsShowLocationSuggestionsEntity-UpdatableEntity",
462
+ "com.apple.mobilecal.SettingsShowWeekNumbersEntity",
463
+ "com.apple.mobilecal.SettingsShowWeekNumbersEntity-UpdatableEntity",
464
+ "com.apple.mobilecal.SettingsStartWeekOnEntity",
465
+ "com.apple.mobilecal.SettingsStartWeekOnEntity-UpdatableEntity",
466
+ "com.apple.mobilecal.SettingsSyncDurationsEntity",
467
+ "com.apple.mobilecal.SettingsSyncDurationsEntity-UpdatableEntity",
468
+ "com.apple.mobilecal.SettingsTimeToLeaveEntity",
469
+ "com.apple.mobilecal.SettingsTimeToLeaveEntity-UpdatableEntity",
470
+ "com.apple.mobilecal.SettingsWeekViewStartsOnTodayEntity",
471
+ "com.apple.mobilecal.SettingsWeekViewStartsOnTodayEntity-UpdatableEntity",
472
+ "com.apple.mobilecal.TestComposeEngineIntent",
473
+ "com.apple.mobilecal.TransferableCalendarEntity",
474
+ "com.apple.mobilecal.TransferableSourceEntity",
475
+ "com.apple.mobilecal.WFAppSettingEntityUpdaterAction",
476
+ "com.apple.mobilecal.WFGetAppSettingAction",
477
+ "com.apple.mobilephone.call",
478
+ "com.apple.mobilesafari.AddHistoryItem",
479
+ "com.apple.mobilesafari.AutoFillContactInfoEntity",
480
+ "com.apple.mobilesafari.AutoFillContactInfoEntity-UpdatableEntity",
481
+ "com.apple.mobilesafari.AutoFillCreditCardEntity",
482
+ "com.apple.mobilesafari.AutoFillCreditCardEntity-UpdatableEntity",
483
+ "com.apple.mobilesafari.BlockPopUpsEntity",
484
+ "com.apple.mobilesafari.BlockPopUpsEntity-UpdatableEntity",
485
+ "com.apple.mobilesafari.BookmarkEntity",
486
+ "com.apple.mobilesafari.BookmarkTabIntent",
487
+ "com.apple.mobilesafari.BookmarkURLIntent",
488
+ "com.apple.mobilesafari.ChangeReaderModeState",
489
+ "com.apple.mobilesafari.ClearHistoryIntent",
490
+ "com.apple.mobilesafari.CloseTab",
491
+ "com.apple.mobilesafari.CloseTabsAssistantIntent",
492
+ "com.apple.mobilesafari.CloseTabsModeEntity",
493
+ "com.apple.mobilesafari.CloseTabsModeEntity-UpdatableEntity",
494
+ "com.apple.mobilesafari.CloseView",
495
+ "com.apple.mobilesafari.CloseWindowsIntent",
496
+ "com.apple.mobilesafari.CreateNewBookmark",
497
+ "com.apple.mobilesafari.CreateNewPrivateTab",
498
+ "com.apple.mobilesafari.CreateNewTab",
499
+ "com.apple.mobilesafari.CreateNewTabGroup",
500
+ "com.apple.mobilesafari.CreateNewWindow",
501
+ "com.apple.mobilesafari.CreateReadingListItem",
502
+ "com.apple.mobilesafari.CreateTabAssistantIntent",
503
+ "com.apple.mobilesafari.DeleteBookmarks",
504
+ "com.apple.mobilesafari.DeleteHistoryItems",
505
+ "com.apple.mobilesafari.DeleteTabGroups",
506
+ "com.apple.mobilesafari.FindOnPage",
507
+ "com.apple.mobilesafari.GetHistoryItems",
508
+ "com.apple.mobilesafari.HistoryEntity",
509
+ "com.apple.mobilesafari.LandscapeTabBarEntity",
510
+ "com.apple.mobilesafari.LandscapeTabBarEntity-UpdatableEntity",
511
+ "com.apple.mobilesafari.LoadURLInTab",
512
+ "com.apple.mobilesafari.MoveTabsToTabGroup",
513
+ "com.apple.mobilesafari.MoveTabsToWindowIntent",
514
+ "com.apple.mobilesafari.NavigateContinuousReadingList",
515
+ "com.apple.mobilesafari.NotifyUserForUpdatedPageIntent",
516
+ "com.apple.mobilesafari.OpenBookmark",
517
+ "com.apple.mobilesafari.OpenBookmarkAssistantIntent",
518
+ "com.apple.mobilesafari.OpenHistoryItem",
519
+ "com.apple.mobilesafari.OpenLinksInBackgroundEntity",
520
+ "com.apple.mobilesafari.OpenLinksInBackgroundEntity-UpdatableEntity",
521
+ "com.apple.mobilesafari.OpenReadingListItem",
522
+ "com.apple.mobilesafari.OpenSafariSettingDeepLinks",
523
+ "com.apple.mobilesafari.OpenTab",
524
+ "com.apple.mobilesafari.OpenTabGroup",
525
+ "com.apple.mobilesafari.OpenTabGroupForFocus",
526
+ "com.apple.mobilesafari.OpenView",
527
+ "com.apple.mobilesafari.PrivateSearchEngineEntity",
528
+ "com.apple.mobilesafari.PrivateSearchEngineEntity-UpdatableEntity",
529
+ "com.apple.mobilesafari.ReadingListItemEntity",
530
+ "com.apple.mobilesafari.ReportNotifyMeWhenAutomationResult",
531
+ "com.apple.mobilesafari.RequestWebPageContextIntent",
532
+ "com.apple.mobilesafari.SafariSettingsDeepLinks",
533
+ "com.apple.mobilesafari.SafariSuggestionsEntity",
534
+ "com.apple.mobilesafari.SafariSuggestionsEntity-UpdatableEntity",
535
+ "com.apple.mobilesafari.SearchEngineEntity",
536
+ "com.apple.mobilesafari.SearchEngineEntity-UpdatableEntity",
537
+ "com.apple.mobilesafari.SearchEngineSuggestionsEntity",
538
+ "com.apple.mobilesafari.SearchEngineSuggestionsEntity-UpdatableEntity",
539
+ "com.apple.mobilesafari.SearchTabs",
540
+ "com.apple.mobilesafari.SearchWebAssistantIntent",
541
+ "com.apple.mobilesafari.ShowWindowIntent",
542
+ "com.apple.mobilesafari.TabBarLayoutEntity",
543
+ "com.apple.mobilesafari.TabBarLayoutEntity-UpdatableEntity",
544
+ "com.apple.mobilesafari.TabEntity",
545
+ "com.apple.mobilesafari.TabGroupEntity",
546
+ "com.apple.mobilesafari.TabLayoutEntity",
547
+ "com.apple.mobilesafari.TabLayoutEntity-UpdatableEntity",
548
+ "com.apple.mobilesafari.WFAppSettingEntityUpdaterAction",
549
+ "com.apple.mobilesafari.WFGetAppSettingAction",
550
+ "com.apple.mobilesafari.WebSearch",
551
+ "com.apple.mobilesafari.WindowEntity",
552
+ "com.apple.mobileslideshow.AddAssetsToAlbumIntent",
553
+ "com.apple.mobileslideshow.AlbumEntity",
554
+ "com.apple.mobileslideshow.ApplyFilterIntent",
555
+ "com.apple.mobileslideshow.ApplyStyleIntent",
556
+ "com.apple.mobileslideshow.AssetEntity",
557
+ "com.apple.mobileslideshow.CleanupIntent",
558
+ "com.apple.mobileslideshow.CopyPasteEditsIntent",
559
+ "com.apple.mobileslideshow.CreateAlbumIntent",
560
+ "com.apple.mobileslideshow.CreateAssetsIntent",
561
+ "com.apple.mobileslideshow.CropIntent",
562
+ "com.apple.mobileslideshow.DeleteAlbumsIntent",
563
+ "com.apple.mobileslideshow.DeleteAssetsIntent",
564
+ "com.apple.mobileslideshow.DuplicateAssetsIntent",
565
+ "com.apple.mobileslideshow.EditAssetIntent",
566
+ "com.apple.mobileslideshow.EnableDepthIntent",
567
+ "com.apple.mobileslideshow.EnhanceIntent",
568
+ "com.apple.mobileslideshow.FavoriteAssetsIntent",
569
+ "com.apple.mobileslideshow.FavoriteMemoriesIntent",
570
+ "com.apple.mobileslideshow.FavoritePeopleIntent",
571
+ "com.apple.mobileslideshow.FilterLibraryIntent",
572
+ "com.apple.mobileslideshow.HideAssetsIntent",
573
+ "com.apple.mobileslideshow.HidePeopleIntent",
574
+ "com.apple.mobileslideshow.MarkupIntent",
575
+ "com.apple.mobileslideshow.MemoryEntity",
576
+ "com.apple.mobileslideshow.MoveAssetsToPersonalLibraryIntent",
577
+ "com.apple.mobileslideshow.MoveAssetsToSharedLibraryIntent",
578
+ "com.apple.mobileslideshow.OpenAlbumIntent",
579
+ "com.apple.mobileslideshow.OpenAssetIntent",
580
+ "com.apple.mobileslideshow.OpenCollectionIntent",
581
+ "com.apple.mobileslideshow.OpenDestinationIntent",
582
+ "com.apple.mobileslideshow.OpenMemoryCreationViewIntent",
583
+ "com.apple.mobileslideshow.OpenPersonIntent",
584
+ "com.apple.mobileslideshow.PLPhotosReliveWidgetConfigurationIntent",
585
+ "com.apple.mobileslideshow.PhotosAddAssetsToAlbumAssistantIntent",
586
+ "com.apple.mobileslideshow.PhotosAttributedSearchMediaAssistantIntent",
587
+ "com.apple.mobileslideshow.PhotosCleanupPhotoAssistantIntent",
588
+ "com.apple.mobileslideshow.PhotosCopyEditsAssistantIntent",
589
+ "com.apple.mobileslideshow.PhotosCreateAlbumAssistantIntent",
590
+ "com.apple.mobileslideshow.PhotosCreateAssetsAssistantIntent",
591
+ "com.apple.mobileslideshow.PhotosCropAssistantIntent",
592
+ "com.apple.mobileslideshow.PhotosDeleteAlbumsAssistantIntent",
593
+ "com.apple.mobileslideshow.PhotosDeleteAssetsAssistantIntent",
594
+ "com.apple.mobileslideshow.PhotosDuplicateAssetsAssistantIntent",
595
+ "com.apple.mobileslideshow.PhotosEditAssetAssistantIntent",
596
+ "com.apple.mobileslideshow.PhotosEntityCollectionSearchAssistantIntent",
597
+ "com.apple.mobileslideshow.PhotosFavoriteMemoriesAssistantIntent",
598
+ "com.apple.mobileslideshow.PhotosFilterLibraryAssistantIntent",
599
+ "com.apple.mobileslideshow.PhotosMoveAssetsToPersonalLibraryAssistantIntent",
600
+ "com.apple.mobileslideshow.PhotosMoveAssetsToSharedLibraryAssistantIntent",
601
+ "com.apple.mobileslideshow.PhotosOpenMemoryCreationViewAssistantIntent",
602
+ "com.apple.mobileslideshow.PhotosPasteEditsAssistantIntent",
603
+ "com.apple.mobileslideshow.PhotosReliveWidgetFeaturedConfiguration",
604
+ "com.apple.mobileslideshow.PhotosRemoveAssetsFromAlbumAssistantIntent",
605
+ "com.apple.mobileslideshow.PhotosSearchAssistantIntent",
606
+ "com.apple.mobileslideshow.PhotosSetDepthAssistantIntent",
607
+ "com.apple.mobileslideshow.PhotosSetExposureAssistantIntent",
608
+ "com.apple.mobileslideshow.PhotosSetFilterAssistantIntent",
609
+ "com.apple.mobileslideshow.PhotosSetRotationAssistantIntent",
610
+ "com.apple.mobileslideshow.PhotosSetSaturationAssistantIntent",
611
+ "com.apple.mobileslideshow.PhotosSetWarmthAssistantIntent",
612
+ "com.apple.mobileslideshow.PhotosStraightenAssistantIntent",
613
+ "com.apple.mobileslideshow.PhotosToggleDepthAssistantIntent",
614
+ "com.apple.mobileslideshow.PhotosToggleSuggestedEditsAssistantIntent",
615
+ "com.apple.mobileslideshow.PhotosUpdateAlbumAssistantIntent",
616
+ "com.apple.mobileslideshow.PhotosUpdateAssetAssistantIntent",
617
+ "com.apple.mobileslideshow.PhotosUpdateRecognizedPersonAssistantIntent",
618
+ "com.apple.mobileslideshow.RemoveAssetsFromAlbumIntent",
619
+ "com.apple.mobileslideshow.RenameAlbumIntent",
620
+ "com.apple.mobileslideshow.RenamePersonIntent",
621
+ "com.apple.mobileslideshow.RevealAlbumsIntent",
622
+ "com.apple.mobileslideshow.RevealAssetsIntent",
623
+ "com.apple.mobileslideshow.RotateIntent",
624
+ "com.apple.mobileslideshow.SetApertureIntent",
625
+ "com.apple.mobileslideshow.SetAudioMixIntent",
626
+ "com.apple.mobileslideshow.SetExposureIntent",
627
+ "com.apple.mobileslideshow.SetPlaybackRateIntent",
628
+ "com.apple.mobileslideshow.SetSaturationIntent",
629
+ "com.apple.mobileslideshow.SetWarmthIntent",
630
+ "com.apple.mobileslideshow.StraightenIntent",
631
+ "com.apple.mobileslideshow.StreamShareService",
632
+ "com.apple.musicrecognition.RecognizeAudioIntent",
633
+ "com.apple.musicrecognition.RecognizeMusicIntent",
634
+ "com.apple.musicrecognition.ToggleIntent",
635
+ "com.apple.news.AutoDownloadAudioStoriesEntity",
636
+ "com.apple.news.AutoDownloadAudioStoriesEntity-UpdatableEntity",
637
+ "com.apple.news.AutoDownloadEntity",
638
+ "com.apple.news.AutoDownloadEntity-UpdatableEntity",
639
+ "com.apple.news.AutoDownloadMagazineIssuesEntity",
640
+ "com.apple.news.AutoDownloadMagazineIssuesEntity-UpdatableEntity",
641
+ "com.apple.news.AutoDownloadPuzzlesEntity",
642
+ "com.apple.news.AutoDownloadPuzzlesEntity-UpdatableEntity",
643
+ "com.apple.news.AutoDownloadRecipesEntity",
644
+ "com.apple.news.AutoDownloadRecipesEntity-UpdatableEntity",
645
+ "com.apple.news.AutoDownloadSavedStoriesEntity",
646
+ "com.apple.news.AutoDownloadSavedStoriesEntity-UpdatableEntity",
647
+ "com.apple.news.AutoDownloadStoriesInFeedsEntity",
648
+ "com.apple.news.AutoDownloadStoriesInFeedsEntity-UpdatableEntity",
649
+ "com.apple.news.BlockIntent",
650
+ "com.apple.news.DecreaseTextSizeIntent",
651
+ "com.apple.news.FollowIntent",
652
+ "com.apple.news.GameCenterEntity",
653
+ "com.apple.news.GameCenterEntity-UpdatableEntity",
654
+ "com.apple.news.GetIngredientsAppIntent",
655
+ "com.apple.news.GetRecentRecipesAppIntent",
656
+ "com.apple.news.GetSavedRecipesAppIntent",
657
+ "com.apple.news.INPlayMediaIntent",
658
+ "com.apple.news.IncreaseTextSizeIntent",
659
+ "com.apple.news.NewsSettingsAutomaticDownloadDynamicDeepLinks",
660
+ "com.apple.news.NewsSettingsDynamicDeepLinks",
661
+ "com.apple.news.NewsTabDeepLink",
662
+ "com.apple.news.OpenArticleIntent",
663
+ "com.apple.news.OpenFeedIntent",
664
+ "com.apple.news.OpenHistoryIntent",
665
+ "com.apple.news.OpenNewsSettingsAutomaticDownloadDynamicDeepLinks",
666
+ "com.apple.news.OpenNewsSettingsDynamicDeepLinks",
667
+ "com.apple.news.OpenRecipeIntent",
668
+ "com.apple.news.OpenSavedIntent",
669
+ "com.apple.news.OpenSavedRecipesIntent",
670
+ "com.apple.news.OpenStaticFeed",
671
+ "com.apple.news.OptimizeStorageEntity",
672
+ "com.apple.news.OptimizeStorageEntity-UpdatableEntity",
673
+ "com.apple.news.PlayArticleIntent",
674
+ "com.apple.news.RestrictStoriesInTodaySettingEntity",
675
+ "com.apple.news.RestrictStoriesInTodaySettingEntity-UpdatableEntity",
676
+ "com.apple.news.SaveArticleIntent",
677
+ "com.apple.news.SaveRecipeAppIntent",
678
+ "com.apple.news.SelectIngredientAppIntent",
679
+ "com.apple.news.ShowDetailsAppIntent",
680
+ "com.apple.news.ShowIngredientsAppIntent",
681
+ "com.apple.news.ShowInstructionsAppIntent",
682
+ "com.apple.news.ShowNextStepAppIntent",
683
+ "com.apple.news.ShowPreviousStepAppIntent",
684
+ "com.apple.news.ShowSpecificStepIntent",
685
+ "com.apple.news.StartCookingAppIntent",
686
+ "com.apple.news.StopCookingAppIntent",
687
+ "com.apple.news.TagIntent",
688
+ "com.apple.news.TodayIntent",
689
+ "com.apple.news.ToggleAudioPlaybackIntent",
690
+ "com.apple.news.UnblockIntent",
691
+ "com.apple.news.UnsaveArticleIntent",
692
+ "com.apple.news.UnsaveRecipeAppIntent",
693
+ "com.apple.news.UnselectIngredientAppIntent",
694
+ "com.apple.news.WFAppSettingEntityUpdaterAction",
695
+ "com.apple.news.WFGetAppSettingAction",
696
+ "com.apple.omniSearch.SearchToolExtension.OpenFlightReservationEntityIntent",
697
+ "com.apple.omniSearch.SearchToolExtension.OpenGenericEventEntityIntent",
698
+ "com.apple.omniSearch.SearchToolExtension.OpenHotelReservationEntityIntent",
699
+ "com.apple.omniSearch.SearchToolExtension.OpenIDCardBusinessEntityIntent",
700
+ "com.apple.omniSearch.SearchToolExtension.OpenIDCardPersonalEntityIntent",
701
+ "com.apple.omniSearch.SearchToolExtension.OpenMediaEntityIntent",
702
+ "com.apple.omniSearch.SearchToolExtension.OpenRestaurantReservationEntityIntent",
703
+ "com.apple.omniSearch.SearchToolExtension.OpenSearchSpotlightEntityIntent",
704
+ "com.apple.omniSearch.SearchToolExtension.OpenTicketedShowEntityIntent",
705
+ "com.apple.omniSearch.SearchToolExtension.OpenTicketedTransportationEntityIntent",
706
+ "com.apple.omniSearch.SearchToolExtension.OpenVehicleReservationEntityIntent",
707
+ "com.apple.omniSearch.SearchToolExtension.SearchTool",
708
+ "com.apple.omniSearch.SearchToolExtension.SearchToolControl",
709
+ "com.apple.omniSearch.SearchToolExtension.SearchToolMCGrounding",
710
+ "com.apple.omniSearch.SearchToolExtension.SearchToolMCQU",
711
+ "com.apple.reminders.INAddTasksIntent",
712
+ "com.apple.reminders.INSetTaskAttributeIntent",
713
+ "com.apple.shortcuts.AddShortcutToHomeScreenAction",
714
+ "com.apple.shortcuts.ChangeShortcutIconAction",
715
+ "com.apple.shortcuts.CreateFolderAction",
716
+ "com.apple.shortcuts.CreateShortcutiCloudLinkAction",
717
+ "com.apple.shortcuts.CreateWorkflowAction",
718
+ "com.apple.shortcuts.DeleteWorkflowAction",
719
+ "com.apple.shortcuts.GetShortcutAttributesAction",
720
+ "com.apple.shortcuts.MoveShortcutToFolderAction",
721
+ "com.apple.shortcuts.OpenAppIntent",
722
+ "com.apple.shortcuts.OpenNavigationDestinationAction",
723
+ "com.apple.shortcuts.OpenShortcutsStaticDeepLinks",
724
+ "com.apple.shortcuts.OpenWorkflowAction",
725
+ "com.apple.shortcuts.RenameShortcutAction",
726
+ "com.apple.shortcuts.RunShortcutConfigurationIntent",
727
+ "com.apple.shortcuts.RunShortcutIntent",
728
+ "com.apple.shortcuts.SearchActionDrawerAction",
729
+ "com.apple.shortcuts.SearchShortcutsAction",
730
+ "com.apple.shortcuts.SetShortcutAttributesAction",
731
+ "com.apple.shortcuts.WFShortcutsSmallWidgetConfigurationIntent",
732
+ "com.apple.shortcuts.WFShortcutsWidgetConfigurationIntent",
733
+ "com.apple.siri.AssistantSettingsControls.AlwaysPrintSiriResponseEntity-UpdatableEntity",
734
+ "com.apple.siri.AssistantSettingsControls.AlwaysShowSpeechEntity-UpdatableEntity",
735
+ "com.apple.siri.AssistantSettingsControls.AnnounceCallsEntity-UpdatableEntity",
736
+ "com.apple.siri.AssistantSettingsControls.AnnounceNotificationEntity-UpdatableEntity",
737
+ "com.apple.siri.AssistantSettingsControls.AnnounceNotificationForAppEntity",
738
+ "com.apple.siri.AssistantSettingsControls.AnnounceNotificationForAppEntity-UpdatableEntity",
739
+ "com.apple.siri.AssistantSettingsControls.AssistantLockScreenAccessEntity",
740
+ "com.apple.siri.AssistantSettingsControls.AssistantUseAppleIntelligenceEntity",
741
+ "com.apple.siri.AssistantSettingsControls.AutoSendMessagesEntity-UpdatableEntity",
742
+ "com.apple.siri.AssistantSettingsControls.CallHangUpEntity",
743
+ "com.apple.siri.AssistantSettingsControls.CallHangUpEntity-UpdatableEntity",
744
+ "com.apple.siri.AssistantSettingsControls.MyInformationEntity",
745
+ "com.apple.siri.AssistantSettingsControls.OpenAlwaysPrintSiriResponseEntity",
746
+ "com.apple.siri.AssistantSettingsControls.OpenAlwaysShowSpeechEntity",
747
+ "com.apple.siri.AssistantSettingsControls.OpenAnnounceCallsEntity",
748
+ "com.apple.siri.AssistantSettingsControls.OpenAnnounceNotificationEntity",
749
+ "com.apple.siri.AssistantSettingsControls.OpenAnnounceNotificationForAppEntity",
750
+ "com.apple.siri.AssistantSettingsControls.OpenAssistantLockScreenAccessEntity",
751
+ "com.apple.siri.AssistantSettingsControls.OpenAssistantUseAppleIntelligenceEntity",
752
+ "com.apple.siri.AssistantSettingsControls.OpenAutoSendMessagesEntity",
753
+ "com.apple.siri.AssistantSettingsControls.OpenCallHangUpEntity",
754
+ "com.apple.siri.AssistantSettingsControls.OpenMyInformationEntity",
755
+ "com.apple.siri.AssistantSettingsControls.OpenSiriAndDictationHistoryEntity",
756
+ "com.apple.siri.AssistantSettingsControls.OpenSiriAppAccessEntity",
757
+ "com.apple.siri.AssistantSettingsControls.OpenSiriAppAccessForAppEntity",
758
+ "com.apple.siri.AssistantSettingsControls.OpenSiriAppClipsAccessEntity",
759
+ "com.apple.siri.AssistantSettingsControls.OpenSiriLanguageEntity",
760
+ "com.apple.siri.AssistantSettingsControls.OpenSiriRootSettingEntity",
761
+ "com.apple.siri.AssistantSettingsControls.OpenSiriSuggestionsShowInAppEntity",
762
+ "com.apple.siri.AssistantSettingsControls.OpenSiriVoiceEntity",
763
+ "com.apple.siri.AssistantSettingsControls.OpenSpokenResponsesEntity",
764
+ "com.apple.siri.AssistantSettingsControls.OpenTalkToSiriEntity",
765
+ "com.apple.siri.AssistantSettingsControls.SiriAndDictationHistoryEntity",
766
+ "com.apple.siri.AssistantSettingsControls.SiriAppAccessEntity",
767
+ "com.apple.siri.AssistantSettingsControls.SiriAppAccessForAppEntity",
768
+ "com.apple.siri.AssistantSettingsControls.SiriAppAccessForAppEntity-UpdatableEntity",
769
+ "com.apple.siri.AssistantSettingsControls.SiriAppClipsAccessEntity",
770
+ "com.apple.siri.AssistantSettingsControls.SiriAppClipsAccessEntity-UpdatableEntity",
771
+ "com.apple.siri.AssistantSettingsControls.SiriLanguageEntity",
772
+ "com.apple.siri.AssistantSettingsControls.SiriRootSettingEntity",
773
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsShowInAppEntity",
774
+ "com.apple.siri.AssistantSettingsControls.SiriSuggestionsShowInAppEntity-UpdatableEntity",
775
+ "com.apple.siri.AssistantSettingsControls.SiriVoiceEntity",
776
+ "com.apple.siri.AssistantSettingsControls.SpokenResponsesEntity-UpdatableEntity",
777
+ "com.apple.siri.AssistantSettingsControls.TalkToSiriEntity",
778
+ "com.apple.siri.AssistantSettingsControls.TalkToSiriEntity-UpdatableEntity",
779
+ "com.apple.siri.AudioAppIntentsExtension.SiriKitAddAudioToLibraryIntent",
780
+ "com.apple.siri.AudioAppIntentsExtension.SiriKitAddAudioToPlaylistIntent",
781
+ "com.apple.siri.AudioAppIntentsExtension.SiriKitPlayAudioIntent",
782
+ "com.apple.siri.AudioAppIntentsExtension.SiriKitUpdateAudioAffinityIntent",
783
+ "com.apple.siri.AudioAppIntentsExtension.WholeHouseAudioPlaceholderIntent",
784
+ "com.apple.siri.SiriCrisisAppIntentsExtension._SiriCrisisPlaceholderIntent",
785
+ "com.apple.siri.SiriGeo.SiriGeoAppIntentExtension.CurrentLocationEntity",
786
+ "com.apple.siri.SiriGeo.SiriGeoAppIntentExtension.GetElevationIntent",
787
+ "com.apple.siri.SiriGeo.SiriGeoAppIntentExtension.NavigationSessionEntity",
788
+ "com.apple.siri.SiriGeo.SiriGeoAppIntentExtension.SiriGeoAppIntent",
789
+ "com.apple.siri.SiriGeo.SiriGeoAppIntentExtension.ThirdPartyStartNavigationIntent",
790
+ "com.apple.siri.SiriNotebookAppIntentsExtension.SiriNotebookAppIntentsExtension",
791
+ "com.apple.siri.SiriPhoneAppIntentsExtension.ReadCallMessageIntent",
792
+ "com.apple.siri.SiriPhoneAppIntentsExtension.SiriKitStartCallIntent",
793
+ "com.apple.siri.SiriPhoneAppIntentsExtension.SiriPhonePunchoutIntent",
794
+ "com.apple.siri.SiriPhoneAppIntentsExtension.StartCrisisHelplineCallIntent",
795
+ "com.apple.siri.SiriVideoAppIntents.CrossDevicePlaceholderIntent",
796
+ "com.apple.siri.SiriVideoAppIntents.InternalFindFreeformVideoIntent",
797
+ "com.apple.siri.SiriVideoAppIntents.InternalFindVideoIntent",
798
+ "com.apple.siri.SiriVideoAppIntents.InternalPlayContentIntent",
799
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.MessagesPostReadActionAppIntent",
800
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.PrepareToReadConversationAppIntent",
801
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriKitEditLastMessageIntent",
802
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriKitPrepareMessagesForReadingIntent",
803
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriKitSendMessageIntent",
804
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriKitUnsendLastMessageIntent",
805
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.SiriMessagesAppIntent",
806
+ "com.apple.siri.messages.SiriMessagesAppIntentsExtension.UpdateDraftTool",
807
+ "com.apple.sociallayerd.CollaborationIntent",
808
+ "com.apple.springboard.Focus",
809
+ "com.apple.springboard.OpenCamera",
810
+ "com.apple.springboard.SetAppearanceStyleIntent",
811
+ "com.apple.springboard.SetFlashlightIntent",
812
+ "com.apple.springboard.SetSilentModeIntent",
813
+ "com.apple.springboard.ToggleFlashlight",
814
+ "com.apple.usernotificationsd.PrepareUserNotificationIntent",
815
+ "com.apple.usernotificationsd.UserNotificationEntity",
816
+ "com.blackfoggames.Schemes.schemes",
817
+ "com.blackfoggames.TextTool.transform",
818
+ "com.boonbits.captio.appendtonote",
819
+ "com.boonbits.captio.sendnote",
820
+ "com.burbn.instagram.openin",
821
+ "com.culturedcode.ThingsTouch.addtask",
822
+ "com.dayonelog.dayoneiphone.post",
823
+ "com.flexibits.fantastical2.addevent",
824
+ "com.flexibits.fantastical2.addreminder",
825
+ "com.flexibits.fantastical2.showinfantastical",
826
+ "com.google.chrome.ios.openurl",
827
+ "com.guidedways.2Do.add",
828
+ "com.omnigroup.OmniFocus2.iPhone.newitem",
829
+ "com.omnigroup.OmniFocus2.iPhone.pastetaskpaper",
830
+ "com.omz-software.Editorial.runworkflow",
831
+ "com.omz-software.Pythonista.editscript",
832
+ "com.omz-software.Pythonista.runscript",
833
+ "com.outerspaceapps.itranslate.translate",
834
+ "com.panic.iOS.Transmit.Share",
835
+ "com.phocusllp.due.add",
836
+ "com.potionfactory.TheHitListMobile.tasks",
837
+ "com.realmacsoftware.clear.createlist",
838
+ "com.realmacsoftware.clear.createtask",
839
+ "com.skype.skype.call",
840
+ "com.soulmen.ulysses.pad.attach",
841
+ "com.soulmen.ulysses.pad.insert",
842
+ "com.soulmen.ulysses.pad.new-group",
843
+ "com.soulmen.ulysses.pad.new-sheet",
844
+ "com.soulmen.ulysses.pad.open",
845
+ "com.soulmen.ulysses.pad.read-sheet",
846
+ "com.squibner.Blink.convert",
847
+ "com.squibner.Blink.search",
848
+ "com.tapbots.Tweetbot.opentweetbot",
849
+ "com.tapbots.Tweetbot.searchtext",
850
+ "com.tapbots.Tweetbot.tweet",
851
+ "com.tapbots.Tweetbot.viewprofile",
852
+ "com.tijo.opener.Opener.show-options",
853
+ "fm.overcast.overcast.add",
854
+ "is.workflow.actions.addframetogif",
855
+ "is.workflow.actions.additemtolist",
856
+ "is.workflow.actions.addmusictoupnext",
857
+ "is.workflow.actions.addnewcalendar",
858
+ "is.workflow.actions.addnewcontact",
859
+ "is.workflow.actions.addnewevent",
860
+ "is.workflow.actions.addnewreminder",
861
+ "is.workflow.actions.addquickreminder",
862
+ "is.workflow.actions.address",
863
+ "is.workflow.actions.addtoplaylist",
864
+ "is.workflow.actions.adjustdate",
865
+ "is.workflow.actions.airdropdocument",
866
+ "is.workflow.actions.airplanemode.set",
867
+ "is.workflow.actions.alert",
868
+ "is.workflow.actions.announcenotifications.set",
869
+ "is.workflow.actions.appearance",
870
+ "is.workflow.actions.appendvariable",
871
+ "is.workflow.actions.ask",
872
+ "is.workflow.actions.askllm",
873
+ "is.workflow.actions.avairyeditphoto",
874
+ "is.workflow.actions.base64encode",
875
+ "is.workflow.actions.bluetooth.set",
876
+ "is.workflow.actions.calculateexpression",
877
+ "is.workflow.actions.cellulardata.set",
878
+ "is.workflow.actions.choosefromlist",
879
+ "is.workflow.actions.clearupnext",
880
+ "is.workflow.actions.comment",
881
+ "is.workflow.actions.compresspdf",
882
+ "is.workflow.actions.contacts",
883
+ "is.workflow.actions.converttimezone",
884
+ "is.workflow.actions.correctspelling",
885
+ "is.workflow.actions.count",
886
+ "is.workflow.actions.createplaylist",
887
+ "is.workflow.actions.date",
888
+ "is.workflow.actions.delay",
889
+ "is.workflow.actions.deletephotos",
890
+ "is.workflow.actions.deletestoredcontent",
891
+ "is.workflow.actions.deskconnect.send",
892
+ "is.workflow.actions.detect.address",
893
+ "is.workflow.actions.detect.contacts",
894
+ "is.workflow.actions.detect.date",
895
+ "is.workflow.actions.detect.dictionary",
896
+ "is.workflow.actions.detect.emailaddress",
897
+ "is.workflow.actions.detect.images",
898
+ "is.workflow.actions.detect.link",
899
+ "is.workflow.actions.detect.number",
900
+ "is.workflow.actions.detect.phonenumber",
901
+ "is.workflow.actions.detect.text",
902
+ "is.workflow.actions.detectlanguage",
903
+ "is.workflow.actions.dictatetext",
904
+ "is.workflow.actions.dictionary",
905
+ "is.workflow.actions.dismisssiri",
906
+ "is.workflow.actions.display.always-on.set",
907
+ "is.workflow.actions.displaysleep",
908
+ "is.workflow.actions.dnd.getfocus",
909
+ "is.workflow.actions.dnd.set",
910
+ "is.workflow.actions.documentpicker.open",
911
+ "is.workflow.actions.documentpicker.save",
912
+ "is.workflow.actions.downloadurl",
913
+ "is.workflow.actions.dropbox.appendfile",
914
+ "is.workflow.actions.dropbox.open",
915
+ "is.workflow.actions.dropbox.savefile",
916
+ "is.workflow.actions.email",
917
+ "is.workflow.actions.encodemedia",
918
+ "is.workflow.actions.evernote.append",
919
+ "is.workflow.actions.evernote.delete",
920
+ "is.workflow.actions.evernote.get",
921
+ "is.workflow.actions.evernote.getlink",
922
+ "is.workflow.actions.evernote.new",
923
+ "is.workflow.actions.exit",
924
+ "is.workflow.actions.exportsong",
925
+ "is.workflow.actions.file",
926
+ "is.workflow.actions.file.append",
927
+ "is.workflow.actions.file.createfolder",
928
+ "is.workflow.actions.file.delete",
929
+ "is.workflow.actions.file.getfoldercontents",
930
+ "is.workflow.actions.file.getlink",
931
+ "is.workflow.actions.file.move",
932
+ "is.workflow.actions.file.rename",
933
+ "is.workflow.actions.file.select",
934
+ "is.workflow.actions.filter.apps",
935
+ "is.workflow.actions.filter.articles",
936
+ "is.workflow.actions.filter.calendarevents",
937
+ "is.workflow.actions.filter.contacts",
938
+ "is.workflow.actions.filter.displays",
939
+ "is.workflow.actions.filter.eventattendees",
940
+ "is.workflow.actions.filter.files",
941
+ "is.workflow.actions.filter.health.quantity",
942
+ "is.workflow.actions.filter.images",
943
+ "is.workflow.actions.filter.locations",
944
+ "is.workflow.actions.filter.music",
945
+ "is.workflow.actions.filter.photos",
946
+ "is.workflow.actions.filter.reminders",
947
+ "is.workflow.actions.filter.vpns",
948
+ "is.workflow.actions.filter.windows",
949
+ "is.workflow.actions.flashlight",
950
+ "is.workflow.actions.format.date",
951
+ "is.workflow.actions.format.filesize",
952
+ "is.workflow.actions.format.number",
953
+ "is.workflow.actions.generatebarcode",
954
+ "is.workflow.actions.get.playlist",
955
+ "is.workflow.actions.getarticle",
956
+ "is.workflow.actions.getbatterylevel",
957
+ "is.workflow.actions.getclassaction",
958
+ "is.workflow.actions.getclipboard",
959
+ "is.workflow.actions.getcurrentapp",
960
+ "is.workflow.actions.getcurrentlocation",
961
+ "is.workflow.actions.getcurrentsong",
962
+ "is.workflow.actions.getdevicedetails",
963
+ "is.workflow.actions.getdirections",
964
+ "is.workflow.actions.getdistance",
965
+ "is.workflow.actions.getepisodesforpodcast",
966
+ "is.workflow.actions.getframesfromimage",
967
+ "is.workflow.actions.gethalfwaypoint",
968
+ "is.workflow.actions.gethomeaccessorystate",
969
+ "is.workflow.actions.gethtmlfromrichtext",
970
+ "is.workflow.actions.getipaddress",
971
+ "is.workflow.actions.getitemfromlist",
972
+ "is.workflow.actions.getitemname",
973
+ "is.workflow.actions.getitemtype",
974
+ "is.workflow.actions.getlastphoto",
975
+ "is.workflow.actions.getlastscreenshot",
976
+ "is.workflow.actions.getlastvideo",
977
+ "is.workflow.actions.getlatestbursts",
978
+ "is.workflow.actions.getlatestlivephotos",
979
+ "is.workflow.actions.getlatestphotoimport",
980
+ "is.workflow.actions.getmapslink",
981
+ "is.workflow.actions.getmarkdownfromrichtext",
982
+ "is.workflow.actions.getmyworkflows",
983
+ "is.workflow.actions.getnameofemoji",
984
+ "is.workflow.actions.getonscreencontent",
985
+ "is.workflow.actions.getonscreencontext",
986
+ "is.workflow.actions.getparkedcarlocation",
987
+ "is.workflow.actions.getpodcastsfromlibrary",
988
+ "is.workflow.actions.getrichtextfromhtml",
989
+ "is.workflow.actions.getrichtextfrommarkdown",
990
+ "is.workflow.actions.getselectedtext",
991
+ "is.workflow.actions.getstoredcontent",
992
+ "is.workflow.actions.gettext",
993
+ "is.workflow.actions.gettextfrompdf",
994
+ "is.workflow.actions.gettimebetweendates",
995
+ "is.workflow.actions.gettraveltime",
996
+ "is.workflow.actions.gettypeaction",
997
+ "is.workflow.actions.getupcomingevents",
998
+ "is.workflow.actions.getupcomingreminders",
999
+ "is.workflow.actions.geturlcomponent",
1000
+ "is.workflow.actions.getvalueforkey",
1001
+ "is.workflow.actions.getvariable",
1002
+ "is.workflow.actions.getwebpagecontents",
1003
+ "is.workflow.actions.getwifi",
1004
+ "is.workflow.actions.giphy",
1005
+ "is.workflow.actions.goodreader.open",
1006
+ "is.workflow.actions.handoff",
1007
+ "is.workflow.actions.handoffplayback",
1008
+ "is.workflow.actions.hash",
1009
+ "is.workflow.actions.health.quantity.log",
1010
+ "is.workflow.actions.health.workout.log",
1011
+ "is.workflow.actions.homeaccessory",
1012
+ "is.workflow.actions.image.combine",
1013
+ "is.workflow.actions.image.convert",
1014
+ "is.workflow.actions.image.convert.finder",
1015
+ "is.workflow.actions.image.crop",
1016
+ "is.workflow.actions.image.flip",
1017
+ "is.workflow.actions.image.mask",
1018
+ "is.workflow.actions.image.removebackground",
1019
+ "is.workflow.actions.image.resize",
1020
+ "is.workflow.actions.image.rotate",
1021
+ "is.workflow.actions.imgur.upload",
1022
+ "is.workflow.actions.input",
1023
+ "is.workflow.actions.instapaper.add",
1024
+ "is.workflow.actions.instapaper.get",
1025
+ "is.workflow.actions.intercom",
1026
+ "is.workflow.actions.lightroom.import",
1027
+ "is.workflow.actions.list",
1028
+ "is.workflow.actions.listeningmode.set",
1029
+ "is.workflow.actions.location",
1030
+ "is.workflow.actions.lock.app",
1031
+ "is.workflow.actions.lockscreen",
1032
+ "is.workflow.actions.logout",
1033
+ "is.workflow.actions.lowpowermode.set",
1034
+ "is.workflow.actions.makegif",
1035
+ "is.workflow.actions.makeimagefrompdfpage",
1036
+ "is.workflow.actions.makeimagefromrichtext",
1037
+ "is.workflow.actions.makepdf",
1038
+ "is.workflow.actions.makespokenaudiofromtext",
1039
+ "is.workflow.actions.makevideofromgif",
1040
+ "is.workflow.actions.makezip",
1041
+ "is.workflow.actions.math",
1042
+ "is.workflow.actions.measurement.convert",
1043
+ "is.workflow.actions.measurement.create",
1044
+ "is.workflow.actions.nightshift.set",
1045
+ "is.workflow.actions.nothing",
1046
+ "is.workflow.actions.notification",
1047
+ "is.workflow.actions.number",
1048
+ "is.workflow.actions.number.random",
1049
+ "is.workflow.actions.openapp",
1050
+ "is.workflow.actions.openin",
1051
+ "is.workflow.actions.openpasswords",
1052
+ "is.workflow.actions.openurl",
1053
+ "is.workflow.actions.openxcallbackurl",
1054
+ "is.workflow.actions.orientationlock.set",
1055
+ "is.workflow.actions.output",
1056
+ "is.workflow.actions.overlayimageonimage",
1057
+ "is.workflow.actions.overlaytext",
1058
+ "is.workflow.actions.pausemusic",
1059
+ "is.workflow.actions.personalhotspot.password.get",
1060
+ "is.workflow.actions.personalhotspot.password.set",
1061
+ "is.workflow.actions.personalhotspot.set",
1062
+ "is.workflow.actions.phonenumber",
1063
+ "is.workflow.actions.photos.createalbum",
1064
+ "is.workflow.actions.pinboard.add",
1065
+ "is.workflow.actions.pinboard.get",
1066
+ "is.workflow.actions.playmusic",
1067
+ "is.workflow.actions.playpodcast",
1068
+ "is.workflow.actions.playsound",
1069
+ "is.workflow.actions.pocket.add",
1070
+ "is.workflow.actions.pocket.get",
1071
+ "is.workflow.actions.podcasts.subscribe",
1072
+ "is.workflow.actions.posters.get",
1073
+ "is.workflow.actions.posters.switch",
1074
+ "is.workflow.actions.postonfacebook",
1075
+ "is.workflow.actions.previewdocument",
1076
+ "is.workflow.actions.print",
1077
+ "is.workflow.actions.properties.appearance",
1078
+ "is.workflow.actions.properties.appstore",
1079
+ "is.workflow.actions.properties.articles",
1080
+ "is.workflow.actions.properties.calendarevents",
1081
+ "is.workflow.actions.properties.contacts",
1082
+ "is.workflow.actions.properties.eventattendees",
1083
+ "is.workflow.actions.properties.files",
1084
+ "is.workflow.actions.properties.health.quantity",
1085
+ "is.workflow.actions.properties.images",
1086
+ "is.workflow.actions.properties.itunesartist",
1087
+ "is.workflow.actions.properties.itunesstore",
1088
+ "is.workflow.actions.properties.locations",
1089
+ "is.workflow.actions.properties.music",
1090
+ "is.workflow.actions.properties.parkedcar",
1091
+ "is.workflow.actions.properties.podcast",
1092
+ "is.workflow.actions.properties.podcastshow",
1093
+ "is.workflow.actions.properties.reminders",
1094
+ "is.workflow.actions.properties.ridestatus",
1095
+ "is.workflow.actions.properties.safariwebpage",
1096
+ "is.workflow.actions.properties.shazam",
1097
+ "is.workflow.actions.properties.trello",
1098
+ "is.workflow.actions.properties.ulysses.sheet",
1099
+ "is.workflow.actions.properties.weather.conditions",
1100
+ "is.workflow.actions.properties.workflow",
1101
+ "is.workflow.actions.readinglist",
1102
+ "is.workflow.actions.reboot",
1103
+ "is.workflow.actions.recordaudio",
1104
+ "is.workflow.actions.reminders.showlist",
1105
+ "is.workflow.actions.removeevents",
1106
+ "is.workflow.actions.removefromalbum",
1107
+ "is.workflow.actions.removereminders",
1108
+ "is.workflow.actions.returntohomescreen",
1109
+ "is.workflow.actions.ride.requestride",
1110
+ "is.workflow.actions.round",
1111
+ "is.workflow.actions.rss",
1112
+ "is.workflow.actions.rss.extract",
1113
+ "is.workflow.actions.runextension",
1114
+ "is.workflow.actions.runjavascriptonwebpage",
1115
+ "is.workflow.actions.runshellscript",
1116
+ "is.workflow.actions.runsshscript",
1117
+ "is.workflow.actions.runworkflow",
1118
+ "is.workflow.actions.savetocameraroll",
1119
+ "is.workflow.actions.searchappstore",
1120
+ "is.workflow.actions.searchitunes",
1121
+ "is.workflow.actions.searchlocalbusinesses",
1122
+ "is.workflow.actions.searchmaps",
1123
+ "is.workflow.actions.searchpodcasts",
1124
+ "is.workflow.actions.searchweb",
1125
+ "is.workflow.actions.seek",
1126
+ "is.workflow.actions.selectcontacts",
1127
+ "is.workflow.actions.selectemail",
1128
+ "is.workflow.actions.selectphone",
1129
+ "is.workflow.actions.selectphoto",
1130
+ "is.workflow.actions.sendemail",
1131
+ "is.workflow.actions.sendmessage",
1132
+ "is.workflow.actions.setairdropreceiving",
1133
+ "is.workflow.actions.setbrightness",
1134
+ "is.workflow.actions.setclipboard",
1135
+ "is.workflow.actions.setitemname",
1136
+ "is.workflow.actions.setparkedcar",
1137
+ "is.workflow.actions.setplaybackdestination",
1138
+ "is.workflow.actions.setstoredcontent",
1139
+ "is.workflow.actions.setters.calendarevents",
1140
+ "is.workflow.actions.setters.contacts",
1141
+ "is.workflow.actions.setters.reminders",
1142
+ "is.workflow.actions.setvalueforkey",
1143
+ "is.workflow.actions.setvariable",
1144
+ "is.workflow.actions.setvolume",
1145
+ "is.workflow.actions.share",
1146
+ "is.workflow.actions.shazamMedia",
1147
+ "is.workflow.actions.showdefinition",
1148
+ "is.workflow.actions.showinblindsquare",
1149
+ "is.workflow.actions.showincalendar",
1150
+ "is.workflow.actions.showinstore",
1151
+ "is.workflow.actions.showresult",
1152
+ "is.workflow.actions.showwebpage",
1153
+ "is.workflow.actions.silenceunknowncallers.set",
1154
+ "is.workflow.actions.skipback",
1155
+ "is.workflow.actions.skipforward",
1156
+ "is.workflow.actions.sleep",
1157
+ "is.workflow.actions.speaktext",
1158
+ "is.workflow.actions.splitpdf",
1159
+ "is.workflow.actions.splitscreen",
1160
+ "is.workflow.actions.spotlightsearch",
1161
+ "is.workflow.actions.stagemanager.set",
1162
+ "is.workflow.actions.statistics",
1163
+ "is.workflow.actions.takephoto",
1164
+ "is.workflow.actions.takescreenshot",
1165
+ "is.workflow.actions.takevideo",
1166
+ "is.workflow.actions.text.changecase",
1167
+ "is.workflow.actions.text.combine",
1168
+ "is.workflow.actions.text.match",
1169
+ "is.workflow.actions.text.match.getgroup",
1170
+ "is.workflow.actions.text.replace",
1171
+ "is.workflow.actions.text.split",
1172
+ "is.workflow.actions.text.translate",
1173
+ "is.workflow.actions.text.trimwhitespace",
1174
+ "is.workflow.actions.todoist.add",
1175
+ "is.workflow.actions.trello.add.board",
1176
+ "is.workflow.actions.trello.add.card",
1177
+ "is.workflow.actions.trello.add.list",
1178
+ "is.workflow.actions.trello.get",
1179
+ "is.workflow.actions.trimvideo",
1180
+ "is.workflow.actions.truetone.set",
1181
+ "is.workflow.actions.tumblr.post",
1182
+ "is.workflow.actions.tweet",
1183
+ "is.workflow.actions.unzip",
1184
+ "is.workflow.actions.url",
1185
+ "is.workflow.actions.url.expand",
1186
+ "is.workflow.actions.url.getheaders",
1187
+ "is.workflow.actions.urlencode",
1188
+ "is.workflow.actions.venmo.pay",
1189
+ "is.workflow.actions.venmo.request",
1190
+ "is.workflow.actions.vibrate",
1191
+ "is.workflow.actions.viewresult",
1192
+ "is.workflow.actions.vpn.get",
1193
+ "is.workflow.actions.vpn.set",
1194
+ "is.workflow.actions.waittoreturn",
1195
+ "is.workflow.actions.wallpaper.set",
1196
+ "is.workflow.actions.weather.currentconditions",
1197
+ "is.workflow.actions.weather.forecast",
1198
+ "is.workflow.actions.wifi.set",
1199
+ "is.workflow.actions.wordpress.post",
1200
+ "is.workflow.actions.workout.end",
1201
+ "is.workflow.actions.workout.start",
1202
+ "jp.naver.line.message",
1203
+ "net.lickability.Quotebook.addquote",
1204
+ "net.shinyfrog.bear-IOS.add",
1205
+ "net.shinyfrog.bear-IOS.contents",
1206
+ "net.shinyfrog.bear-IOS.create",
1207
+ "net.shinyfrog.bear-IOS.grab",
1208
+ "net.shinyfrog.bear-IOS.open",
1209
+ "net.shinyfrog.bear-IOS.search",
1210
+ "net.whatsapp.WhatsApp.openin",
1211
+ "net.whatsapp.WhatsApp.send",
1212
+ "ph.telegra.Telegraph.msg",
1213
+ "squibner.AmazonLinker.convert",
1214
+ "squibner.AmazonLinker.search"
1215
+ ],
1216
+ "control_flow_exceptions_missing_from_tools_table": [
1217
+ "is.workflow.actions.conditional",
1218
+ "is.workflow.actions.repeat.count",
1219
+ "is.workflow.actions.repeat.each",
1220
+ "is.workflow.actions.choosefrommenu"
1221
+ ]
1222
+ }