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 @@
1
+ {"generated_at":"2026-06-15T00:00:00Z","minimumMacOSMajor":27,"observedShortcutFileCount":63,"observedToolkitTriggerCount":42,"policy":"Static authoring metadata only. Use this to emit a top-level WFWorkflowTriggers array in shortcut XML for OS 27 targets. Do not read from or write to the live Shortcuts database. Always generate a fresh WFTriggerUUID. Entries marked requires-user-values contain only redacted local picker placeholders or lossy exported carriers; user-specific Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, network, file, folder, and drive payloads must be supplied from a complete Apple export format or selected manually in Shortcuts. Mac file/folder/drive picker triggers observed so far are not copyable from WFWorkflowTriggers alone.","rootKey":"WFWorkflowTriggers","scope":"Sanitized WFWorkflowTriggers metadata observed in exported OS 27 Shortcuts XML. This catalog keeps portable trigger identifiers, Python names, parameter keys, output types, and generic state values; local picker payloads are intentionally redacted.","source":"Maintainer-exported OS 27 automation shortcut XML files, sanitized","sourceFileCount":93,"toolkitTriggerCount":42,"toolkitVersion":"toolkit-v78-trigger-parameter-keys","triggers":{"com.apple.shortcuts.WFAirplaneModeTrigger.changes":{"displayName":"Airplane Mode","notes":["The UI “changes” option is serialized as the string value \"both\" for on/off or connect/disconnect variants."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_airplane_mode_changes","serializedParameterKeys":["WFAirplaneModeType"],"serializedParameterShape":{"WFAirplaneModeType":{"type":"string"}},"sourceFiles":["SP27 Auto 01 Airplane Mode Changes.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFAirplaneModeType"],"toolkitTriggerId":"com.apple.shortcuts.WFAirplaneModeTrigger.changes","workflowTrigger":{"WFTriggerIdentifier":"WFAirplaneModeTrigger","WFTriggerSerializedParameters":{"WFAirplaneModeType":"both"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFAlarmTrigger.any_alarm":{"displayName":"Alarm","notes":[],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_alarm_any_alarm","serializedParameterKeys":["WFAlarmState"],"serializedParameterShape":{"WFAlarmState":{"type":"string"}},"sourceFiles":["SP27 Auto 02 Alarm Any Alarm.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFAlarmState"],"toolkitTriggerId":"com.apple.shortcuts.WFAlarmTrigger.any_alarm","workflowTrigger":{"WFTriggerIdentifier":"WFAlarmTrigger","WFTriggerSerializedParameters":{"WFAlarmState":"stopped"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFAlarmTrigger.specific_alarm":{"displayName":"Alarm","notes":["Selected app/device/account/network/merchant values are local picker payloads; use a user-provided exported value for production generation.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_alarm_specific_alarm","serializedParameterKeys":["WFAlarms"],"serializedParameterShape":{"WFAlarms":{"type":"redacted-local-alarm-token"}},"sourceFiles":["SP27 Auto 03 Alarm Specific Alarm.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFAlarms","WFAlarmState"],"toolkitTriggerId":"com.apple.shortcuts.WFAlarmTrigger.specific_alarm","workflowTrigger":{"WFTriggerIdentifier":"WFAlarmTrigger","WFTriggerSerializedParameters":{"WFAlarms":{"$placeholder":"user-selected alarm token","$shape":{"type":"redacted-local-alarm-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFAppInFocusTrigger.opened":{"displayName":"App","notes":["Selected app/device/account/network/merchant values are local picker payloads; use a user-provided exported value for production generation.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_app_opened","serializedParameterKeys":["WFSelectedApps"],"serializedParameterShape":{"WFSelectedApps":{"type":"redacted-local-app-token"}},"sourceFiles":["SP27 Auto 04 App Opened.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFSelectedApps","WFAppState"],"toolkitTriggerId":"com.apple.shortcuts.WFAppInFocusTrigger.opened","workflowTrigger":{"WFTriggerIdentifier":"WFAppInFocusTrigger","WFTriggerSerializedParameters":{"WFSelectedApps":{"$placeholder":"user-selected app token","$shape":{"type":"redacted-local-app-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFArriveLocationTrigger.enter_location":{"displayName":"Arrive","notes":["Location payloads are user-specific placemark dictionaries and must be supplied from an exported/user-selected value.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_arrive_enter_location","serializedParameterKeys":["WFArriveLocation"],"serializedParameterShape":{"WFArriveLocation":{"type":"redacted-local-location-token"}},"sourceFiles":["SP27 Auto 07 Arrive Enter Location.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFArriveLocation"],"toolkitTriggerId":"com.apple.shortcuts.WFArriveLocationTrigger.enter_location","workflowTrigger":{"WFTriggerIdentifier":"WFArriveLocationTrigger","WFTriggerSerializedParameters":{"WFArriveLocation":{"$placeholder":"user-selected arrive location token","$shape":{"type":"redacted-local-location-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFArriveLocationTrigger.enter_location_between":{"displayName":"Arrive","notes":["Location payloads are user-specific placemark dictionaries and must be supplied from an exported/user-selected value.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_arrive_enter_location_between","serializedParameterKeys":["WFArriveEndTime","WFArriveLocation","WFArriveStartTime","WFArriveTime"],"serializedParameterShape":{"WFArriveEndTime":{"type":"date"},"WFArriveLocation":{"type":"redacted-local-location-token"},"WFArriveStartTime":{"type":"date"},"WFArriveTime":{"type":"string"}},"sourceFiles":["SP27 Auto 08 Arrive Enter Location Between.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFArriveLocation","WFArriveStartTime","WFArriveEndTime"],"toolkitTriggerId":"com.apple.shortcuts.WFArriveLocationTrigger.enter_location_between","workflowTrigger":{"WFTriggerIdentifier":"WFArriveLocationTrigger","WFTriggerSerializedParameters":{"WFArriveEndTime":{"$placeholder":"replace with requested trigger date/time","$type":"date","example":"2026-06-14T15:09:10"},"WFArriveLocation":{"$placeholder":"user-selected arrive location token","$shape":{"type":"redacted-local-location-token"}},"WFArriveStartTime":{"$placeholder":"replace with requested trigger date/time","$type":"date","example":"2026-06-14T14:10:05"},"WFArriveTime":"specific"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFBatteryLevelTrigger.equal":{"displayName":"Battery Level","notes":["Exported shortcut stores this trigger with an empty WFTriggerSerializedParameters dictionary."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_battery_level_equal","serializedParameterKeys":[],"serializedParameterShape":{},"sourceFiles":["SP27 Auto 09 Battery Level Equal.xml","SP27 Handler 09 Battery Level Equal.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFBatteryLevel","WFBatteryLevelComparison"],"toolkitTriggerId":"com.apple.shortcuts.WFBatteryLevelTrigger.equal","workflowTrigger":{"WFTriggerIdentifier":"WFBatteryLevelTrigger","WFTriggerSerializedParameters":{},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFBluetoothTrigger.any_connection_changes":{"displayName":"Bluetooth","notes":["The UI “changes” option is serialized as the string value \"both\" for on/off or connect/disconnect variants."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_bluetooth_any_connection_changes","serializedParameterKeys":["WFBluetoothConnectionType"],"serializedParameterShape":{"WFBluetoothConnectionType":{"type":"string"}},"sourceFiles":["SP27 Auto 10 Bluetooth Any Connection Changes.xml","SP27 Handler 10 Bluetooth Any Connection Changes.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFBluetoothConnectionType"],"toolkitTriggerId":"com.apple.shortcuts.WFBluetoothTrigger.any_connection_changes","workflowTrigger":{"WFTriggerIdentifier":"WFBluetoothTrigger","WFTriggerSerializedParameters":{"WFBluetoothConnectionType":"both"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFBluetoothTrigger.selected_connection_changes":{"displayName":"Bluetooth","notes":["The UI “changes” option is serialized as the string value \"both\" for on/off or connect/disconnect variants.","Selected app/device/account/network/merchant values are local picker payloads; use a user-provided exported value for production generation.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_bluetooth_selected_connection_changes","serializedParameterKeys":["WFBluetoothConnectionType","WFSelectedDevices"],"serializedParameterShape":{"WFBluetoothConnectionType":{"type":"string"},"WFSelectedDevices":{"type":"redacted-local-device-token"}},"sourceFiles":["SP27 Auto 11 Bluetooth Selected Connection Changes.xml","SP27 Handler 11 Bluetooth Selected Connection Changes.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFBluetoothConnectionType","WFSelectedDevices"],"toolkitTriggerId":"com.apple.shortcuts.WFBluetoothTrigger.selected_connection_changes","workflowTrigger":{"WFTriggerIdentifier":"WFBluetoothTrigger","WFTriggerSerializedParameters":{"WFBluetoothConnectionType":"both","WFSelectedDevices":{"$placeholder":"user-selected Bluetooth device token","$shape":{"type":"redacted-local-device-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFCarPlayConnectionTrigger.changes":{"displayName":"CarPlay","notes":["The UI “changes” option is serialized as the string value \"both\" for on/off or connect/disconnect variants."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_car_play_changes","serializedParameterKeys":["WFCarPlayConnectionType"],"serializedParameterShape":{"WFCarPlayConnectionType":{"type":"string"}},"sourceFiles":["SP27 Auto 12 CarPlay Car Play Changes.xml","SP27 Handler 12 CarPlay Car Play Changes.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFCarPlayConnectionType"],"toolkitTriggerId":"com.apple.shortcuts.WFCarPlayConnectionTrigger.changes","workflowTrigger":{"WFTriggerIdentifier":"WFCarPlayConnectionTrigger","WFTriggerSerializedParameters":{"WFCarPlayConnectionType":"both"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFDiskMountTrigger.external_drive":{"displayName":"External Drive","notes":["Exported Specific Drive Disconnected.xml stores this trigger as WFDiskMountTrigger with an empty serialized-parameters dictionary.","A second Specific Drive Disconnected export made after connecting a drive matched the same empty serialized-parameters payload.","ToolKit exposes no serialized parameters for this trigger. The exported Any Drive Connected.xml file did not include WFWorkflowTriggers, so do not infer hidden connection-state fields.","Importing the bare WFDiskMountTrigger carrier rendered as an invalid automation in macOS 27 Shortcuts even though the editor showed default Any External Drive / Is Connected choices.","The required drive picker/state appears to be stored outside the portable WFWorkflowTriggers dictionary; generate this only from a future export format that preserves that state, or have the user configure it manually in Shortcuts."],"observed":true,"outputTypeIdentifiers":["file"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_external_drive_external_drive","serializedParameterKeys":[],"serializedParameterShape":{},"sourceFiles":["Specific Drive Disconnected.xml","Specific Drive Disconnected (New).xml"],"templateStatus":"requires-user-values","toolkitParameterKeys":[],"toolkitTriggerId":"com.apple.shortcuts.WFDiskMountTrigger.external_drive","workflowTrigger":{"WFTriggerIdentifier":"WFDiskMountTrigger","WFTriggerSerializedParameters":{},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFEmailTrigger.senders_are":{"displayName":"Email","notes":["Filter rows are serialized as WFContentPredicateTableTemplate values inside the trigger parameter dictionary.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["com.apple.shortcuts.WFEmailContentItem"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_email_senders_are","serializedParameterKeys":["WFEmailConditions"],"serializedParameterShape":{"WFEmailConditions":{"type":"redacted-local-email-predicate-table"}},"sourceFiles":["SP27 Auto 15 Email Senders Are.xml","SP27 Handler 15 Email Senders Are.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFEmailSender","WFEmailAccount","WFEmailRecipient"],"toolkitTriggerId":"com.apple.shortcuts.WFEmailTrigger.senders_are","workflowTrigger":{"WFTriggerIdentifier":"WFEmailTrigger","WFTriggerSerializedParameters":{"WFEmailConditions":{"$placeholder":"user-configured email filter table","$shape":{"type":"redacted-local-email-predicate-table"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFEmailTrigger.senders_are_and_subject_contains":{"displayName":"Email","notes":["Filter rows are serialized as WFContentPredicateTableTemplate values inside the trigger parameter dictionary.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["com.apple.shortcuts.WFEmailContentItem"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_email_senders_are_and_subject_contains","serializedParameterKeys":["WFEmailConditions"],"serializedParameterShape":{"WFEmailConditions":{"type":"redacted-local-email-predicate-table"}},"sourceFiles":["SP27 Handler 16 Email Senders Are And Subject Contains.xml"],"sourceKind":"Handler","templateStatus":"requires-user-values","toolkitParameterKeys":["WFEmailSender","WFEmailSubjectContains","WFEmailAccount","WFEmailRecipient"],"toolkitTriggerId":"com.apple.shortcuts.WFEmailTrigger.senders_are_and_subject_contains","workflowTrigger":{"WFTriggerIdentifier":"WFEmailTrigger","WFTriggerSerializedParameters":{"WFEmailConditions":{"$placeholder":"user-configured email filter table","$shape":{"type":"redacted-local-email-predicate-table"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFEmailTrigger.subject_contains":{"displayName":"Email","notes":["Filter rows are serialized as WFContentPredicateTableTemplate values inside the trigger parameter dictionary.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["com.apple.shortcuts.WFEmailContentItem"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_email_subject_contains","serializedParameterKeys":["WFEmailConditions"],"serializedParameterShape":{"WFEmailConditions":{"type":"redacted-local-email-predicate-table"}},"sourceFiles":["SP27 Auto 17 Email Subject Contains.xml","SP27 Handler 17 Email Subject Contains.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFEmailSubjectContains","WFEmailAccount","WFEmailRecipient"],"toolkitTriggerId":"com.apple.shortcuts.WFEmailTrigger.subject_contains","workflowTrigger":{"WFTriggerIdentifier":"WFEmailTrigger","WFTriggerSerializedParameters":{"WFEmailConditions":{"$placeholder":"user-configured email filter table","$shape":{"type":"redacted-local-email-predicate-table"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFExternalDisplayTrigger.":{"displayName":"Display","notes":["Exported Display Automation.xml stores this trigger as WFExternalDisplayTrigger with WFConnectionType=\"both\".","ToolKit enum confirms WFConnectionType accepts connect, disconnect, and both for Is Connected / Is Disconnected / Is Connected or Disconnected."],"observed":true,"outputTypeIdentifiers":["com.apple.shortcuts.WFDisplayContentItem"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_display_wfexternaldisplaytrigger","serializedParameterKeys":["WFConnectionType"],"serializedParameterShape":{"WFConnectionType":{"type":"string","allowedValues":["connect","disconnect","both"],"observedValue":"both"}},"sourceFiles":["Display Automation.xml"],"templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFConnectionType"],"toolkitTriggerId":"com.apple.shortcuts.WFExternalDisplayTrigger.","workflowTrigger":{"WFTriggerIdentifier":"WFExternalDisplayTrigger","WFTriggerSerializedParameters":{"WFConnectionType":"both"},"WFTriggerUUID":"<generate with uuidgen>"},"sourceKind":"User Export"},"com.apple.shortcuts.WFFileTrigger.file_modified":{"displayName":"File","notes":["Exported File Modified.xml stores this trigger as WFFileTrigger with an empty serialized-parameters dictionary.","ToolKit exposes no serialized parameters for the file-modified trigger; the monitored file/picker state is not encoded in the observed WFWorkflowTriggers payload.","Importing the bare WFFileTrigger carrier rendered as an invalid automation with No File Selected in macOS 27 Shortcuts.","The required file picker state appears to be stored outside the portable WFWorkflowTriggers dictionary; generate this only from a future export format that preserves that state, or have the user configure it manually in Shortcuts."],"observed":true,"outputTypeIdentifiers":["file"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_file_file_modified","serializedParameterKeys":[],"serializedParameterShape":{},"sourceFiles":["File Modified.xml"],"templateStatus":"requires-user-values","toolkitParameterKeys":[],"toolkitTriggerId":"com.apple.shortcuts.WFFileTrigger.file_modified","workflowTrigger":{"WFTriggerIdentifier":"WFFileTrigger","WFTriggerSerializedParameters":{},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFFolderTrigger.folder_changed":{"displayName":"Folder","notes":["Exported folder Item Added, Item Removed, and Item Modified samples all store WFFolderTrigger with an empty serialized-parameters dictionary.","The ignore-subfolders setting and added/removed/modified UI choices are not represented in the observed WFWorkflowTriggers payload; do not invent hidden serialized keys.","Importing the bare WFFolderTrigger carrier rendered as an invalid automation until a folder and event were selected in the Shortcuts editor.","After manual editor configuration, the folder path/bookmarks, ignoreSubfolders boolean, and fileChangeTypes value were stored outside the portable WFWorkflowTriggers dictionary.","Folder exports also included a documentpicker.open action with only a UUID, which appears to be action/context payload rather than trigger configuration."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_folder_folder_changed","serializedParameterKeys":[],"serializedParameterShape":{},"sourceFiles":["Folder, Ignore Subfolders, Item Added.xml","Folder, Ignore Subfolders, Item Removed.xml","Folder, Not Ignore Subfolders, Item Modified.xml"],"templateStatus":"requires-user-values","toolkitParameterKeys":[],"toolkitTriggerId":"com.apple.shortcuts.WFFolderTrigger.folder_changed","workflowTrigger":{"WFTriggerIdentifier":"WFFolderTrigger","WFTriggerSerializedParameters":{},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFKeyboardTrigger.connection_changes":{"displayName":"Keyboard","notes":["The UI “changes” option is serialized as the string value \"both\" for on/off or connect/disconnect variants."],"observed":true,"outputTypeIdentifiers":["bool"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_keyboard_connection_changes","serializedParameterKeys":["WFConnectionType"],"serializedParameterShape":{"WFConnectionType":{"type":"string"}},"sourceFiles":["SP27 Auto 22 Keyboard Connection Changes.xml","SP27 Handler 22 Keyboard Connection Changes.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFConnectionType"],"toolkitTriggerId":"com.apple.shortcuts.WFKeyboardTrigger.connection_changes","workflowTrigger":{"WFTriggerIdentifier":"WFKeyboardTrigger","WFTriggerSerializedParameters":{"WFConnectionType":"both"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFLeaveLocationTrigger.leave_location":{"displayName":"Leave","notes":["Location payloads are user-specific placemark dictionaries and must be supplied from an exported/user-selected value.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_leave_leave_location","serializedParameterKeys":["WFLeaveLocation"],"serializedParameterShape":{"WFLeaveLocation":{"type":"redacted-local-location-token"}},"sourceFiles":["SP27 Auto 23 Leave Leave Location.xml","SP27 Handler 23 Leave Leave Location.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFLeaveLocation"],"toolkitTriggerId":"com.apple.shortcuts.WFLeaveLocationTrigger.leave_location","workflowTrigger":{"WFTriggerIdentifier":"WFLeaveLocationTrigger","WFTriggerSerializedParameters":{"WFLeaveLocation":{"$placeholder":"user-selected leave location token","$shape":{"type":"redacted-local-location-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFLeaveLocationTrigger.leave_location_between":{"displayName":"Leave","notes":["Location payloads are user-specific placemark dictionaries and must be supplied from an exported/user-selected value.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_leave_leave_location_between","serializedParameterKeys":["WFLeaveEndTime","WFLeaveLocation","WFLeaveStartTime","WFLeaveTime"],"serializedParameterShape":{"WFLeaveEndTime":{"type":"date"},"WFLeaveLocation":{"type":"redacted-local-location-token"},"WFLeaveStartTime":{"type":"date"},"WFLeaveTime":{"type":"string"}},"sourceFiles":["SP27 Auto 24 Leave Leave Location Between.xml","SP27 Handler 24 Leave Leave Location Between.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFLeaveLocation","WFLeaveStartTime","WFLeaveEndTime"],"toolkitTriggerId":"com.apple.shortcuts.WFLeaveLocationTrigger.leave_location_between","workflowTrigger":{"WFTriggerIdentifier":"WFLeaveLocationTrigger","WFTriggerSerializedParameters":{"WFLeaveEndTime":{"$placeholder":"replace with requested trigger date/time","$type":"date","example":"2026-06-14T16:14:05"},"WFLeaveLocation":{"$placeholder":"user-selected leave location token","$shape":{"type":"redacted-local-location-token"}},"WFLeaveStartTime":{"$placeholder":"replace with requested trigger date/time","$type":"date","example":"2026-06-14T15:14:01"},"WFLeaveTime":"specific"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFLowPowerModeTrigger.changes":{"displayName":"Low Power Mode","notes":["The UI “changes” option is serialized as the string value \"both\" for on/off or connect/disconnect variants."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_low_power_mode_changes","serializedParameterKeys":["WFLowPowerModeType"],"serializedParameterShape":{"WFLowPowerModeType":{"type":"string"}},"sourceFiles":["SP27 Auto 25 Low Power Mode Changes.xml","SP27 Handler 25 Low Power Mode Changes.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFLowPowerModeType"],"toolkitTriggerId":"com.apple.shortcuts.WFLowPowerModeTrigger.changes","workflowTrigger":{"WFTriggerIdentifier":"WFLowPowerModeTrigger","WFTriggerSerializedParameters":{"WFLowPowerModeType":"both"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFMessageTrigger.contains":{"displayName":"Message","notes":["Filter rows are serialized as WFContentPredicateTableTemplate values inside the trigger parameter dictionary.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["com.apple.shortcuts.WFMessageContentItem"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_message_contains","serializedParameterKeys":["WFMessageConditions"],"serializedParameterShape":{"WFMessageConditions":{"type":"redacted-local-message-predicate-table"}},"sourceFiles":["SP27 Auto 26 Message Contains.xml","SP27 Handler 26 Message Contains.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFMessageContains"],"toolkitTriggerId":"com.apple.shortcuts.WFMessageTrigger.contains","workflowTrigger":{"WFTriggerIdentifier":"WFMessageTrigger","WFTriggerSerializedParameters":{"WFMessageConditions":{"$placeholder":"user-configured message filter table","$shape":{"type":"redacted-local-message-predicate-table"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFMessageTrigger.senders_are":{"displayName":"Message","notes":["Filter rows are serialized as WFContentPredicateTableTemplate values inside the trigger parameter dictionary.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["com.apple.shortcuts.WFMessageContentItem"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_message_senders_are","serializedParameterKeys":["WFMessageConditions"],"serializedParameterShape":{"WFMessageConditions":{"type":"redacted-local-message-predicate-table"}},"sourceFiles":["SP27 Auto 27 Message Senders Are.xml","SP27 Handler 27 Message Senders Are.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFMessageSender"],"toolkitTriggerId":"com.apple.shortcuts.WFMessageTrigger.senders_are","workflowTrigger":{"WFTriggerIdentifier":"WFMessageTrigger","WFTriggerSerializedParameters":{"WFMessageConditions":{"$placeholder":"user-configured message filter table","$shape":{"type":"redacted-local-message-predicate-table"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFMessageTrigger.senders_are_and_contains":{"displayName":"Message","notes":["Filter rows are serialized as WFContentPredicateTableTemplate values inside the trigger parameter dictionary.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["com.apple.shortcuts.WFMessageContentItem"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_message_senders_are_and_contains","serializedParameterKeys":["WFMessageConditions"],"serializedParameterShape":{"WFMessageConditions":{"type":"redacted-local-message-predicate-table"}},"sourceFiles":["SP27 Auto 28 Message Senders Are And Contains.xml","SP27 Handler 28 Message Senders Are And Contains.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFMessageSender","WFMessageContains"],"toolkitTriggerId":"com.apple.shortcuts.WFMessageTrigger.senders_are_and_contains","workflowTrigger":{"WFTriggerIdentifier":"WFMessageTrigger","WFTriggerSerializedParameters":{"WFMessageConditions":{"$placeholder":"user-configured message filter table","$shape":{"type":"redacted-local-message-predicate-table"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFNFCTrigger.scan_tag":{"displayName":"NFC","notes":["Exported shortcut stores this trigger with an empty WFTriggerSerializedParameters dictionary."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_nfc_scan_tag","serializedParameterKeys":[],"serializedParameterShape":{},"sourceFiles":["SP27 Auto 29 NFC Scan Tag.xml","SP27 Handler 29 NFC Scan Tag.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFNFCTag"],"toolkitTriggerId":"com.apple.shortcuts.WFNFCTrigger.scan_tag","workflowTrigger":{"WFTriggerIdentifier":"WFNFCTrigger","WFTriggerSerializedParameters":{},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFNotificationTrigger.received":{"displayName":"Notification","notes":["Filter rows are serialized as WFContentPredicateTableTemplate values inside the trigger parameter dictionary.","Selected app/device/account/network/merchant values are local picker payloads; use a user-provided exported value for production generation.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["com.apple.shortcuts.WFNotificationContentItem"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_notification_received","serializedParameterKeys":["Conditions","SelectedApps"],"serializedParameterShape":{"Conditions":{"type":"redacted-local-notification-predicate-table"},"SelectedApps":{"type":"redacted-local-app-token"}},"sourceFiles":["SP27 Auto 30 Notification Received.xml","SP27 Handler 30 Notification Received.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["SelectedApps"],"toolkitTriggerId":"com.apple.shortcuts.WFNotificationTrigger.received","workflowTrigger":{"WFTriggerIdentifier":"WFNotificationTrigger","WFTriggerSerializedParameters":{"Conditions":{"$placeholder":"user-configured notification filter table","$shape":{"type":"redacted-local-notification-predicate-table"}},"SelectedApps":{"$placeholder":"user-selected notification app token","$shape":{"type":"redacted-local-app-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFPlugInTrigger.changes":{"displayName":"Charger","notes":["The UI “changes” option is serialized as the string value \"both\" for on/off or connect/disconnect variants."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_charger_changes","serializedParameterKeys":["WFConnectionType"],"serializedParameterShape":{"WFConnectionType":{"type":"string"}},"sourceFiles":["SP27 Auto 13 Charger Changes.xml","SP27 Handler 13 Charger Changes.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFConnectionType"],"toolkitTriggerId":"com.apple.shortcuts.WFPlugInTrigger.changes","workflowTrigger":{"WFTriggerIdentifier":"WFPlugInTrigger","WFTriggerSerializedParameters":{"WFConnectionType":"both"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFScreenshotTrigger.saved":{"displayName":"Screenshot","notes":["Exported shortcut stores this trigger with an empty WFTriggerSerializedParameters dictionary."],"observed":true,"outputTypeIdentifiers":["file"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_screenshot_saved","serializedParameterKeys":[],"serializedParameterShape":{},"sourceFiles":["SP27 Auto 31 Screenshot Saved.xml","SP27 Handler 31 Screenshot Saved.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["ScreenshotLocations"],"toolkitTriggerId":"com.apple.shortcuts.WFScreenshotTrigger.saved","workflowTrigger":{"WFTriggerIdentifier":"WFScreenshotTrigger","WFTriggerSerializedParameters":{},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFSleepTrigger.":{"displayName":"Sleep","notes":[],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_sleep_wfsleeptrigger","serializedParameterKeys":["WFSleepMode"],"serializedParameterShape":{"WFSleepMode":{"type":"string"}},"sourceFiles":["SP27 Handler 32 Sleep Wfsleeptrigger.xml"],"sourceKind":"Handler","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFSleepMode"],"toolkitTriggerId":"com.apple.shortcuts.WFSleepTrigger.","workflowTrigger":{"WFTriggerIdentifier":"WFSleepTrigger","WFTriggerSerializedParameters":{"WFSleepMode":"bedtime"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFSoundRecognitionTrigger.sound_recognition":{"displayName":"Sound Recognition","notes":["Selected app/device/account/network/merchant values are local picker payloads; use a user-provided exported value for production generation.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_sound_recognition_sound_recognition","serializedParameterKeys":["WFSounds"],"serializedParameterShape":{"WFSounds":{"type":"redacted-local-sound-token"}},"sourceFiles":["SP27 Handler 33 Sound Recognition Sound Recognition.xml"],"sourceKind":"Handler","templateStatus":"requires-user-values","toolkitParameterKeys":["WFSounds"],"toolkitTriggerId":"com.apple.shortcuts.WFSoundRecognitionTrigger.sound_recognition","workflowTrigger":{"WFTriggerIdentifier":"WFSoundRecognitionTrigger","WFTriggerSerializedParameters":{"WFSounds":{"$placeholder":"user-selected sound recognition token","$shape":{"type":"redacted-local-sound-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFStageManagerTrigger.on":{"displayName":"Stage Manager","notes":["Exported Stage Manager Automation.xml stores this trigger as WFStageManagerTrigger with WFStageManagerType=\"both\".","ToolKit enum confirms WFStageManagerType accepts on, off, and both for Is Turned On / Is Turned Off / Is Turned On or Off.","The same export confirms Set Multitasking Mode can serialize mode as an AppEnum-style dictionary for Windowed Apps."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_stage_manager_on","serializedParameterKeys":["WFStageManagerType"],"serializedParameterShape":{"WFStageManagerType":{"type":"string","allowedValues":["on","off","both"],"observedValue":"both"}},"sourceFiles":["Stage Manager Automation.xml"],"templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFStageManagerType"],"toolkitTriggerId":"com.apple.shortcuts.WFStageManagerTrigger.on","workflowTrigger":{"WFTriggerIdentifier":"WFStageManagerTrigger","WFTriggerSerializedParameters":{"WFStageManagerType":"both"},"WFTriggerUUID":"<generate with uuidgen>"},"sourceKind":"User Export"},"com.apple.shortcuts.WFTimeOfDayTrigger.around_sunrise_on_recurring_day":{"displayName":"Time of Day","notes":["Time-of-day exports only include the selected time event/date; recurrence defaults are not serialized in the observed sample."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_time_of_day_around_sunrise_on_recurring_day","serializedParameterKeys":["WFTimeEvent"],"serializedParameterShape":{"WFTimeEvent":{"type":"string"}},"sourceFiles":["SP27 Handler 35 Time of Day Around Sunrise On Recurring Day.xml"],"sourceKind":"Handler","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFTimeOffset","WFRecurrence"],"toolkitTriggerId":"com.apple.shortcuts.WFTimeOfDayTrigger.around_sunrise_on_recurring_day","workflowTrigger":{"WFTriggerIdentifier":"WFTimeOfDayTrigger","WFTriggerSerializedParameters":{"WFTimeEvent":"sunrise"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFTimeOfDayTrigger.around_sunset_on_recurring_day":{"displayName":"Time of Day","notes":["Time-of-day exports only include the selected time event/date; recurrence defaults are not serialized in the observed sample."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_time_of_day_around_sunset_on_recurring_day","serializedParameterKeys":["WFTimeEvent"],"serializedParameterShape":{"WFTimeEvent":{"type":"string"}},"sourceFiles":["SP27 Handler 36 Time of Day Around Sunset On Recurring Day.xml"],"sourceKind":"Handler","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFTimeOffset","WFRecurrence"],"toolkitTriggerId":"com.apple.shortcuts.WFTimeOfDayTrigger.around_sunset_on_recurring_day","workflowTrigger":{"WFTriggerIdentifier":"WFTimeOfDayTrigger","WFTriggerSerializedParameters":{"WFTimeEvent":"sunset"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFTimeOfDayTrigger.at_time_on_recurring_day":{"displayName":"Time of Day","notes":["Time-of-day exports only include the selected time event/date; recurrence defaults are not serialized in the observed sample.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_time_of_day_at_time_on_recurring_day","serializedParameterKeys":["WFTime"],"serializedParameterShape":{"WFTime":{"type":"date"}},"sourceFiles":["SP27 Handler 37 Time of Day At Time On Recurring Day.xml"],"sourceKind":"Handler","templateStatus":"requires-user-values","toolkitParameterKeys":["WFTime","WFRecurrence"],"toolkitTriggerId":"com.apple.shortcuts.WFTimeOfDayTrigger.at_time_on_recurring_day","workflowTrigger":{"WFTriggerIdentifier":"WFTimeOfDayTrigger","WFTriggerSerializedParameters":{"WFTime":{"$placeholder":"replace with requested trigger date/time","$type":"date","example":"2026-06-14T12:30:11"}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFUserFocusActivityTrigger.enable":{"displayName":"Focus","notes":["Selected app/device/account/network/merchant values are local picker payloads; use a user-provided exported value for production generation.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_focus_enable","serializedParameterKeys":["WFFocusMode"],"serializedParameterShape":{"WFFocusMode":{"type":"redacted-local-focus-token"}},"sourceFiles":["SP27 Auto 20 Focus Enable.xml","SP27 Handler 20 Focus Enable.xml"],"sourceKind":"Auto","templateStatus":"requires-user-values","toolkitParameterKeys":["WFFocusMode","WFFocusEvent"],"toolkitTriggerId":"com.apple.shortcuts.WFUserFocusActivityTrigger.enable","workflowTrigger":{"WFTriggerIdentifier":"WFUserFocusActivityTrigger","WFTriggerSerializedParameters":{"WFFocusMode":{"$placeholder":"user-selected Focus mode token","$shape":{"type":"redacted-local-focus-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFWalletTransactionTrigger.tap":{"displayName":"Wallet","notes":["Selected app/device/account/network/merchant values are local picker payloads; use a user-provided exported value for production generation.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["com.apple.shortcuts.WFWalletTransactionContentItem"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_wallet_tap","serializedParameterKeys":["WFWalletMerchantTypes","WFWalletMerchants"],"serializedParameterShape":{"WFWalletMerchantTypes":{"type":"redacted-local-wallet-token"},"WFWalletMerchants":{"type":"redacted-local-wallet-token"}},"sourceFiles":["SP27 Handler 38 Wallet Tap.xml"],"sourceKind":"Handler","templateStatus":"requires-user-values","toolkitParameterKeys":["WFWalletCards","WFWalletMerchantTypes","WFWalletMerchants"],"toolkitTriggerId":"com.apple.shortcuts.WFWalletTransactionTrigger.tap","workflowTrigger":{"WFTriggerIdentifier":"WFWalletTransactionTrigger","WFTriggerSerializedParameters":{"WFWalletMerchantTypes":{"$placeholder":"user-selected Wallet merchant category token","$shape":{"type":"redacted-local-wallet-token"}},"WFWalletMerchants":{"$placeholder":"user-selected Wallet merchant token","$shape":{"type":"redacted-local-wallet-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFWifiTrigger.connect_to_any":{"displayName":"Wi-Fi","notes":["Exported shortcut stores this trigger with an empty WFTriggerSerializedParameters dictionary."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_wi_fi_connect_to_any","serializedParameterKeys":[],"serializedParameterShape":{},"sourceFiles":["SP27 Handler 39 Wi-Fi Wi Fi Connect To Any.xml"],"sourceKind":"Handler","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFRunAfterConnectionInterruption"],"toolkitTriggerId":"com.apple.shortcuts.WFWifiTrigger.connect_to_any","workflowTrigger":{"WFTriggerIdentifier":"WFWifiTrigger","WFTriggerSerializedParameters":{},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFWifiTrigger.connect_to_selected":{"displayName":"Wi-Fi","notes":["Selected app/device/account/network/merchant values are local picker payloads; use a user-provided exported value for production generation.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_wi_fi_connect_to_selected","serializedParameterKeys":["WFNetworks"],"serializedParameterShape":{"WFNetworks":{"type":"redacted-local-network-token"}},"sourceFiles":["SP27 Handler 40 Wi-Fi Wi Fi Connect To Selected.xml"],"sourceKind":"Handler","templateStatus":"requires-user-values","toolkitParameterKeys":["WFNetworks","WFRunAfterConnectionInterruption"],"toolkitTriggerId":"com.apple.shortcuts.WFWifiTrigger.connect_to_selected","workflowTrigger":{"WFTriggerIdentifier":"WFWifiTrigger","WFTriggerSerializedParameters":{"WFNetworks":{"$placeholder":"user-selected Wi-Fi network token","$shape":{"type":"redacted-local-network-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFWifiTrigger.disconnect_from_any":{"displayName":"Wi-Fi","notes":["The UI “changes” option is serialized as the string value \"both\" for on/off or connect/disconnect variants."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_wi_fi_disconnect_from_any","serializedParameterKeys":["WFConnectionType"],"serializedParameterShape":{"WFConnectionType":{"type":"string"}},"sourceFiles":["SP27 Handler 41 Wi-Fi Wi Fi Disconnect From Any.xml"],"sourceKind":"Handler","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":[],"toolkitTriggerId":"com.apple.shortcuts.WFWifiTrigger.disconnect_from_any","workflowTrigger":{"WFTriggerIdentifier":"WFWifiTrigger","WFTriggerSerializedParameters":{"WFConnectionType":"disconnected"},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFWifiTrigger.disconnect_from_selected":{"displayName":"Wi-Fi","notes":["The UI “changes” option is serialized as the string value \"both\" for on/off or connect/disconnect variants.","Selected app/device/account/network/merchant values are local picker payloads; use a user-provided exported value for production generation.","User-local picker payloads are intentionally redacted; do not ship raw exported Contacts, Mail, Messages, account, device, app, location, Wallet, Focus, alarm, or network values."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_wi_fi_disconnect_from_selected","serializedParameterKeys":["WFConnectionType","WFNetworks"],"serializedParameterShape":{"WFConnectionType":{"type":"string"},"WFNetworks":{"type":"redacted-local-network-token"}},"sourceFiles":["SP27 Handler 42 Wi-Fi Wi Fi Disconnect From Selected.xml"],"sourceKind":"Handler","templateStatus":"requires-user-values","toolkitParameterKeys":["WFNetworks"],"toolkitTriggerId":"com.apple.shortcuts.WFWifiTrigger.disconnect_from_selected","workflowTrigger":{"WFTriggerIdentifier":"WFWifiTrigger","WFTriggerSerializedParameters":{"WFConnectionType":"disconnected","WFNetworks":{"$placeholder":"user-selected Wi-Fi network token","$shape":{"type":"redacted-local-network-token"}}},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFWorkoutTrigger.any":{"displayName":"Apple Watch Workout","notes":["Exported shortcut stores this trigger with an empty WFTriggerSerializedParameters dictionary."],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_apple_watch_workout_any","serializedParameterKeys":[],"serializedParameterShape":{},"sourceFiles":["SP27 Auto 05 Apple Watch Workout Any.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFWorkoutEvent"],"toolkitTriggerId":"com.apple.shortcuts.WFWorkoutTrigger.any","workflowTrigger":{"WFTriggerIdentifier":"WFWorkoutTrigger","WFTriggerSerializedParameters":{},"WFTriggerUUID":"<generate with uuidgen>"}},"com.apple.shortcuts.WFWorkoutTrigger.specific":{"displayName":"Apple Watch Workout","notes":[],"observed":true,"outputTypeIdentifiers":["none"],"platforms":["iOS 27 Simulator","macOS 27"],"pythonName":"when_apple_watch_workout_specific","serializedParameterKeys":["WFWorkoutTypes"],"serializedParameterShape":{"WFWorkoutTypes":{"activityType":{"type":"integer"}}},"sourceFiles":["SP27 Auto 06 Apple Watch Workout Specific.xml"],"sourceKind":"Auto","templateStatus":"copyable-with-fresh-uuid","toolkitParameterKeys":["WFWorkoutEvent","WFWorkoutTypes"],"toolkitTriggerId":"com.apple.shortcuts.WFWorkoutTrigger.specific","workflowTrigger":{"WFTriggerIdentifier":"WFWorkoutTrigger","WFTriggerSerializedParameters":{"WFWorkoutTypes":{"activityType":1}},"WFTriggerUUID":"<generate with uuidgen>"}}},"unobservedToolkitTriggerCount":0,"version":"macos27-workflow-trigger-samples"}