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,259 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>WFWorkflowActions</key>
6
+ <array>
7
+ <dict>
8
+ <key>WFWorkflowActionIdentifier</key>
9
+ <string>is.workflow.actions.comment</string>
10
+ <key>WFWorkflowActionParameters</key>
11
+ <dict>
12
+ <key>WFCommentActionText</key>
13
+ <string>Given a list of last and first names separated by a comma, the shortcut inverts their position and returns a plain text list of first names followed by last names.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.comment</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>WFCommentActionText</key>
22
+ <string>Create a list of names below. Last and first names have to be separated by a comma</string>
23
+ </dict>
24
+ </dict>
25
+ <dict>
26
+ <key>WFWorkflowActionIdentifier</key>
27
+ <string>is.workflow.actions.gettext</string>
28
+ <key>WFWorkflowActionParameters</key>
29
+ <dict>
30
+ <key>WFTextActionText</key>
31
+ <string>Gallagher, Liam
32
+ Appleseed, Alex
33
+ Fils-Aime,Reggie</string>
34
+ </dict>
35
+ </dict>
36
+ <dict>
37
+ <key>WFWorkflowActionIdentifier</key>
38
+ <string>is.workflow.actions.text.split</string>
39
+ <key>WFWorkflowActionParameters</key>
40
+ <dict/>
41
+ </dict>
42
+ <dict>
43
+ <key>WFWorkflowActionIdentifier</key>
44
+ <string>is.workflow.actions.repeat.each</string>
45
+ <key>WFWorkflowActionParameters</key>
46
+ <dict>
47
+ <key>GroupingIdentifier</key>
48
+ <string>4481A7D3-B521-445D-8D9B-04D1A9A41F5B</string>
49
+ <key>WFControlFlowMode</key>
50
+ <integer>0</integer>
51
+ </dict>
52
+ </dict>
53
+ <dict>
54
+ <key>WFWorkflowActionIdentifier</key>
55
+ <string>is.workflow.actions.text.match</string>
56
+ <key>WFWorkflowActionParameters</key>
57
+ <dict>
58
+ <key>WFMatchTextCaseSensitive</key>
59
+ <false/>
60
+ <key>WFMatchTextPattern</key>
61
+ <string>(.+),\s?(.+)</string>
62
+ </dict>
63
+ </dict>
64
+ <dict>
65
+ <key>WFWorkflowActionIdentifier</key>
66
+ <string>is.workflow.actions.setvariable</string>
67
+ <key>WFWorkflowActionParameters</key>
68
+ <dict>
69
+ <key>WFVariableName</key>
70
+ <string>Match</string>
71
+ </dict>
72
+ </dict>
73
+ <dict>
74
+ <key>WFWorkflowActionIdentifier</key>
75
+ <string>is.workflow.actions.text.match.getgroup</string>
76
+ <key>WFWorkflowActionParameters</key>
77
+ <dict/>
78
+ </dict>
79
+ <dict>
80
+ <key>WFWorkflowActionIdentifier</key>
81
+ <string>is.workflow.actions.setvariable</string>
82
+ <key>WFWorkflowActionParameters</key>
83
+ <dict>
84
+ <key>WFVariableName</key>
85
+ <string>Last</string>
86
+ </dict>
87
+ </dict>
88
+ <dict>
89
+ <key>WFWorkflowActionIdentifier</key>
90
+ <string>is.workflow.actions.getvariable</string>
91
+ <key>WFWorkflowActionParameters</key>
92
+ <dict>
93
+ <key>WFVariable</key>
94
+ <dict>
95
+ <key>Value</key>
96
+ <dict>
97
+ <key>Type</key>
98
+ <string>Variable</string>
99
+ <key>VariableName</key>
100
+ <string>Match</string>
101
+ <key>VariableUUID</key>
102
+ <string>BAB2FB4A-4584-43A2-81FF-662EC4750BD0</string>
103
+ </dict>
104
+ <key>WFSerializationType</key>
105
+ <string>WFTextTokenAttachment</string>
106
+ </dict>
107
+ </dict>
108
+ </dict>
109
+ <dict>
110
+ <key>WFWorkflowActionIdentifier</key>
111
+ <string>is.workflow.actions.text.match.getgroup</string>
112
+ <key>WFWorkflowActionParameters</key>
113
+ <dict>
114
+ <key>WFGroupIndex</key>
115
+ <real>2</real>
116
+ </dict>
117
+ </dict>
118
+ <dict>
119
+ <key>WFWorkflowActionIdentifier</key>
120
+ <string>is.workflow.actions.setvariable</string>
121
+ <key>WFWorkflowActionParameters</key>
122
+ <dict>
123
+ <key>WFVariableName</key>
124
+ <string>First</string>
125
+ </dict>
126
+ </dict>
127
+ <dict>
128
+ <key>WFWorkflowActionIdentifier</key>
129
+ <string>is.workflow.actions.gettext</string>
130
+ <key>WFWorkflowActionParameters</key>
131
+ <dict>
132
+ <key>WFTextActionText</key>
133
+ <dict>
134
+ <key>Value</key>
135
+ <dict>
136
+ <key>attachmentsByRange</key>
137
+ <dict>
138
+ <key>{0, 1}</key>
139
+ <dict>
140
+ <key>Type</key>
141
+ <string>Variable</string>
142
+ <key>VariableName</key>
143
+ <string>List</string>
144
+ <key>VariableUUID</key>
145
+ <string>AA7D1356-720D-4633-9514-F0D90488C8EE</string>
146
+ </dict>
147
+ <key>{2, 1}</key>
148
+ <dict>
149
+ <key>Type</key>
150
+ <string>Variable</string>
151
+ <key>VariableName</key>
152
+ <string>First</string>
153
+ <key>VariableUUID</key>
154
+ <string>07A487D7-3AE1-41B3-B80C-A89047CE76E4</string>
155
+ </dict>
156
+ <key>{4, 1}</key>
157
+ <dict>
158
+ <key>Type</key>
159
+ <string>Variable</string>
160
+ <key>VariableName</key>
161
+ <string>Last</string>
162
+ <key>VariableUUID</key>
163
+ <string>4AE627F8-32D2-4528-A0E3-43430942ADFB</string>
164
+ </dict>
165
+ </dict>
166
+ <key>string</key>
167
+ <string>
168
+  </string>
169
+ </dict>
170
+ <key>WFSerializationType</key>
171
+ <string>WFTextTokenString</string>
172
+ </dict>
173
+ </dict>
174
+ </dict>
175
+ <dict>
176
+ <key>WFWorkflowActionIdentifier</key>
177
+ <string>is.workflow.actions.setvariable</string>
178
+ <key>WFWorkflowActionParameters</key>
179
+ <dict>
180
+ <key>WFVariableName</key>
181
+ <string>List</string>
182
+ </dict>
183
+ </dict>
184
+ <dict>
185
+ <key>WFWorkflowActionIdentifier</key>
186
+ <string>is.workflow.actions.repeat.each</string>
187
+ <key>WFWorkflowActionParameters</key>
188
+ <dict>
189
+ <key>GroupingIdentifier</key>
190
+ <string>4481A7D3-B521-445D-8D9B-04D1A9A41F5B</string>
191
+ <key>WFControlFlowMode</key>
192
+ <integer>2</integer>
193
+ </dict>
194
+ </dict>
195
+ <dict>
196
+ <key>WFWorkflowActionIdentifier</key>
197
+ <string>is.workflow.actions.getvariable</string>
198
+ <key>WFWorkflowActionParameters</key>
199
+ <dict>
200
+ <key>WFVariable</key>
201
+ <dict>
202
+ <key>Value</key>
203
+ <dict>
204
+ <key>Type</key>
205
+ <string>Variable</string>
206
+ <key>VariableName</key>
207
+ <string>List</string>
208
+ <key>VariableUUID</key>
209
+ <string>AA7D1356-720D-4633-9514-F0D90488C8EE</string>
210
+ </dict>
211
+ <key>WFSerializationType</key>
212
+ <string>WFTextTokenAttachment</string>
213
+ </dict>
214
+ </dict>
215
+ </dict>
216
+ </array>
217
+ <key>WFWorkflowClientRelease</key>
218
+ <string>2.2</string>
219
+ <key>WFWorkflowClientVersion</key>
220
+ <string>770</string>
221
+ <key>WFWorkflowIcon</key>
222
+ <dict>
223
+ <key>WFWorkflowIconGlyphNumber</key>
224
+ <integer>59799</integer>
225
+ <key>WFWorkflowIconImageData</key>
226
+ <data>
227
+ </data>
228
+ <key>WFWorkflowIconStartColor</key>
229
+ <integer>431817727</integer>
230
+ </dict>
231
+ <key>WFWorkflowImportQuestions</key>
232
+ <array/>
233
+ <key>WFWorkflowInputContentItemClasses</key>
234
+ <array>
235
+ <string>WFAppStoreAppContentItem</string>
236
+ <string>WFArticleContentItem</string>
237
+ <string>WFContactContentItem</string>
238
+ <string>WFDateContentItem</string>
239
+ <string>WFEmailAddressContentItem</string>
240
+ <string>WFGenericFileContentItem</string>
241
+ <string>WFImageContentItem</string>
242
+ <string>WFiTunesProductContentItem</string>
243
+ <string>WFLocationContentItem</string>
244
+ <string>WFDCMapsLinkContentItem</string>
245
+ <string>WFAVAssetContentItem</string>
246
+ <string>WFPDFContentItem</string>
247
+ <string>WFPhoneNumberContentItem</string>
248
+ <string>WFRichTextContentItem</string>
249
+ <string>WFSafariWebPageContentItem</string>
250
+ <string>WFStringContentItem</string>
251
+ <string>WFURLContentItem</string>
252
+ </array>
253
+ <key>WFWorkflowTypes</key>
254
+ <array>
255
+ <string>NCWidget</string>
256
+ <string>WatchKit</string>
257
+ </array>
258
+ </dict>
259
+ </plist>
@@ -0,0 +1,420 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>WFWorkflowActions</key>
6
+ <array>
7
+ <dict>
8
+ <key>WFWorkflowActionIdentifier</key>
9
+ <string>is.workflow.actions.comment</string>
10
+ <key>WFWorkflowActionParameters</key>
11
+ <dict>
12
+ <key>WFCommentActionText</key>
13
+ <string>Get a list of upcoming calendar events that contain locations.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.filter.calendarevents</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>UUID</key>
22
+ <string>46189116-9BB9-4B92-BF8B-A8D06CF96360</string>
23
+ <key>WFContentItemFilter</key>
24
+ <dict>
25
+ <key>Value</key>
26
+ <dict>
27
+ <key>WFActionParameterFilterPrefix</key>
28
+ <integer>1</integer>
29
+ <key>WFActionParameterFilterTemplates</key>
30
+ <array>
31
+ <dict>
32
+ <key>Bounded</key>
33
+ <true/>
34
+ <key>Operator</key>
35
+ <integer>1000</integer>
36
+ <key>Property</key>
37
+ <string>Start Date</string>
38
+ <key>Removable</key>
39
+ <false/>
40
+ <key>Values</key>
41
+ <dict>
42
+ <key>Number</key>
43
+ <string>3</string>
44
+ <key>Unit</key>
45
+ <integer>16</integer>
46
+ </dict>
47
+ </dict>
48
+ </array>
49
+ <key>WFContentPredicateBoundedDate</key>
50
+ <false/>
51
+ </dict>
52
+ <key>WFSerializationType</key>
53
+ <string>WFContentPredicateTableTemplate</string>
54
+ </dict>
55
+ </dict>
56
+ </dict>
57
+ <dict>
58
+ <key>WFWorkflowActionIdentifier</key>
59
+ <string>is.workflow.actions.repeat.each</string>
60
+ <key>WFWorkflowActionParameters</key>
61
+ <dict>
62
+ <key>GroupingIdentifier</key>
63
+ <string>D5B6CE38-0C91-47AB-BFA7-75797668E1D5</string>
64
+ <key>WFControlFlowMode</key>
65
+ <integer>0</integer>
66
+ <key>WFInput</key>
67
+ <dict>
68
+ <key>Value</key>
69
+ <dict>
70
+ <key>OutputName</key>
71
+ <string>Calendar Events</string>
72
+ <key>OutputUUID</key>
73
+ <string>46189116-9BB9-4B92-BF8B-A8D06CF96360</string>
74
+ <key>Type</key>
75
+ <string>ActionOutput</string>
76
+ </dict>
77
+ <key>WFSerializationType</key>
78
+ <string>WFTextTokenAttachment</string>
79
+ </dict>
80
+ </dict>
81
+ </dict>
82
+ <dict>
83
+ <key>WFWorkflowActionIdentifier</key>
84
+ <string>is.workflow.actions.conditional</string>
85
+ <key>WFWorkflowActionParameters</key>
86
+ <dict>
87
+ <key>GroupingIdentifier</key>
88
+ <string>7D1340D6-86C1-4497-BD45-A716C97B9512</string>
89
+ <key>WFCondition</key>
90
+ <integer>100</integer>
91
+ <key>WFControlFlowMode</key>
92
+ <integer>0</integer>
93
+ <key>WFInput</key>
94
+ <dict>
95
+ <key>Type</key>
96
+ <string>Variable</string>
97
+ <key>Variable</key>
98
+ <dict>
99
+ <key>Value</key>
100
+ <dict>
101
+ <key>Aggrandizements</key>
102
+ <array>
103
+ <dict>
104
+ <key>PropertyName</key>
105
+ <string>Location</string>
106
+ <key>Type</key>
107
+ <string>WFPropertyVariableAggrandizement</string>
108
+ </dict>
109
+ </array>
110
+ <key>Type</key>
111
+ <string>Variable</string>
112
+ <key>VariableName</key>
113
+ <string>Repeat Item</string>
114
+ </dict>
115
+ <key>WFSerializationType</key>
116
+ <string>WFTextTokenAttachment</string>
117
+ </dict>
118
+ </dict>
119
+ </dict>
120
+ </dict>
121
+ <dict>
122
+ <key>WFWorkflowActionIdentifier</key>
123
+ <string>is.workflow.actions.appendvariable</string>
124
+ <key>WFWorkflowActionParameters</key>
125
+ <dict>
126
+ <key>WFInput</key>
127
+ <dict>
128
+ <key>Value</key>
129
+ <dict>
130
+ <key>Aggrandizements</key>
131
+ <array>
132
+ <dict>
133
+ <key>PropertyName</key>
134
+ <string>Location</string>
135
+ <key>Type</key>
136
+ <string>WFPropertyVariableAggrandizement</string>
137
+ </dict>
138
+ </array>
139
+ <key>Type</key>
140
+ <string>Variable</string>
141
+ <key>VariableName</key>
142
+ <string>Repeat Item</string>
143
+ </dict>
144
+ <key>WFSerializationType</key>
145
+ <string>WFTextTokenAttachment</string>
146
+ </dict>
147
+ <key>WFVariableName</key>
148
+ <string>Locations</string>
149
+ </dict>
150
+ </dict>
151
+ <dict>
152
+ <key>WFWorkflowActionIdentifier</key>
153
+ <string>is.workflow.actions.conditional</string>
154
+ <key>WFWorkflowActionParameters</key>
155
+ <dict>
156
+ <key>GroupingIdentifier</key>
157
+ <string>7D1340D6-86C1-4497-BD45-A716C97B9512</string>
158
+ <key>WFControlFlowMode</key>
159
+ <integer>1</integer>
160
+ </dict>
161
+ </dict>
162
+ <dict>
163
+ <key>WFWorkflowActionIdentifier</key>
164
+ <string>is.workflow.actions.conditional</string>
165
+ <key>WFWorkflowActionParameters</key>
166
+ <dict>
167
+ <key>GroupingIdentifier</key>
168
+ <string>7D1340D6-86C1-4497-BD45-A716C97B9512</string>
169
+ <key>UUID</key>
170
+ <string>29EC1BE8-5183-4E3F-B5EA-2F642870C154</string>
171
+ <key>WFControlFlowMode</key>
172
+ <integer>2</integer>
173
+ </dict>
174
+ </dict>
175
+ <dict>
176
+ <key>WFWorkflowActionIdentifier</key>
177
+ <string>is.workflow.actions.repeat.each</string>
178
+ <key>WFWorkflowActionParameters</key>
179
+ <dict>
180
+ <key>GroupingIdentifier</key>
181
+ <string>D5B6CE38-0C91-47AB-BFA7-75797668E1D5</string>
182
+ <key>UUID</key>
183
+ <string>86AC7EDC-4321-4F5E-A994-5405FA3A0176</string>
184
+ <key>WFControlFlowMode</key>
185
+ <integer>2</integer>
186
+ </dict>
187
+ </dict>
188
+ <dict>
189
+ <key>WFWorkflowActionIdentifier</key>
190
+ <string>is.workflow.actions.conditional</string>
191
+ <key>WFWorkflowActionParameters</key>
192
+ <dict>
193
+ <key>GroupingIdentifier</key>
194
+ <string>8C611BD0-B9A0-4C93-82D3-C6C55799C797</string>
195
+ <key>WFCondition</key>
196
+ <integer>100</integer>
197
+ <key>WFControlFlowMode</key>
198
+ <integer>0</integer>
199
+ <key>WFInput</key>
200
+ <dict>
201
+ <key>Type</key>
202
+ <string>Variable</string>
203
+ <key>Variable</key>
204
+ <dict>
205
+ <key>Value</key>
206
+ <dict>
207
+ <key>Type</key>
208
+ <string>Variable</string>
209
+ <key>VariableName</key>
210
+ <string>Locations</string>
211
+ </dict>
212
+ <key>WFSerializationType</key>
213
+ <string>WFTextTokenAttachment</string>
214
+ </dict>
215
+ </dict>
216
+ </dict>
217
+ </dict>
218
+ <dict>
219
+ <key>WFWorkflowActionIdentifier</key>
220
+ <string>is.workflow.actions.choosefromlist</string>
221
+ <key>WFWorkflowActionParameters</key>
222
+ <dict>
223
+ <key>UUID</key>
224
+ <string>C573081B-2C6B-4FD9-9DC6-0C7F715D3E44</string>
225
+ <key>WFChooseFromListActionPrompt</key>
226
+ <string>Locations</string>
227
+ <key>WFInput</key>
228
+ <dict>
229
+ <key>Value</key>
230
+ <dict>
231
+ <key>Type</key>
232
+ <string>Variable</string>
233
+ <key>VariableName</key>
234
+ <string>Locations</string>
235
+ </dict>
236
+ <key>WFSerializationType</key>
237
+ <string>WFTextTokenAttachment</string>
238
+ </dict>
239
+ </dict>
240
+ </dict>
241
+ <dict>
242
+ <key>WFWorkflowActionIdentifier</key>
243
+ <string>is.workflow.actions.gettraveltime</string>
244
+ <key>WFWorkflowActionParameters</key>
245
+ <dict>
246
+ <key>UUID</key>
247
+ <string>8431080E-3CC4-4644-BEAD-838761D5E39C</string>
248
+ <key>WFDestination</key>
249
+ <dict>
250
+ <key>Value</key>
251
+ <dict>
252
+ <key>OutputName</key>
253
+ <string>Selected Item</string>
254
+ <key>OutputUUID</key>
255
+ <string>C573081B-2C6B-4FD9-9DC6-0C7F715D3E44</string>
256
+ <key>Type</key>
257
+ <string>ActionOutput</string>
258
+ </dict>
259
+ <key>WFSerializationType</key>
260
+ <string>WFTextTokenAttachment</string>
261
+ </dict>
262
+ </dict>
263
+ </dict>
264
+ <dict>
265
+ <key>WFWorkflowActionIdentifier</key>
266
+ <string>is.workflow.actions.alert</string>
267
+ <key>WFWorkflowActionParameters</key>
268
+ <dict>
269
+ <key>WFAlertActionMessage</key>
270
+ <dict>
271
+ <key>Value</key>
272
+ <dict>
273
+ <key>attachmentsByRange</key>
274
+ <dict>
275
+ <key>{11, 1}</key>
276
+ <dict>
277
+ <key>Aggrandizements</key>
278
+ <array>
279
+ <dict>
280
+ <key>PropertyName</key>
281
+ <string>Travel Time</string>
282
+ <key>Type</key>
283
+ <string>WFPropertyVariableAggrandizement</string>
284
+ </dict>
285
+ </array>
286
+ <key>OutputName</key>
287
+ <string>Travel Time</string>
288
+ <key>OutputUUID</key>
289
+ <string>8431080E-3CC4-4644-BEAD-838761D5E39C</string>
290
+ <key>Type</key>
291
+ <string>ActionOutput</string>
292
+ </dict>
293
+ <key>{23, 1}</key>
294
+ <dict>
295
+ <key>Aggrandizements</key>
296
+ <array>
297
+ <dict>
298
+ <key>CoercionItemClass</key>
299
+ <string>WFLocationContentItem</string>
300
+ <key>Type</key>
301
+ <string>WFCoercionVariableAggrandizement</string>
302
+ </dict>
303
+ <dict>
304
+ <key>PropertyName</key>
305
+ <string>Street</string>
306
+ <key>PropertyUserInfo</key>
307
+ <string>street</string>
308
+ <key>Type</key>
309
+ <string>WFPropertyVariableAggrandizement</string>
310
+ </dict>
311
+ </array>
312
+ <key>OutputName</key>
313
+ <string>Selected Item</string>
314
+ <key>OutputUUID</key>
315
+ <string>C573081B-2C6B-4FD9-9DC6-0C7F715D3E44</string>
316
+ <key>Type</key>
317
+ <string>ActionOutput</string>
318
+ </dict>
319
+ <key>{29, 1}</key>
320
+ <dict>
321
+ <key>Aggrandizements</key>
322
+ <array>
323
+ <dict>
324
+ <key>PropertyName</key>
325
+ <string>Route Name</string>
326
+ <key>Type</key>
327
+ <string>WFPropertyVariableAggrandizement</string>
328
+ </dict>
329
+ </array>
330
+ <key>OutputName</key>
331
+ <string>Travel Time</string>
332
+ <key>OutputUUID</key>
333
+ <string>8431080E-3CC4-4644-BEAD-838761D5E39C</string>
334
+ <key>Type</key>
335
+ <string>ActionOutput</string>
336
+ </dict>
337
+ </dict>
338
+ <key>string</key>
339
+ <string>It'll take  to get to  via </string>
340
+ </dict>
341
+ <key>WFSerializationType</key>
342
+ <string>WFTextTokenString</string>
343
+ </dict>
344
+ </dict>
345
+ </dict>
346
+ <dict>
347
+ <key>WFWorkflowActionIdentifier</key>
348
+ <string>is.workflow.actions.conditional</string>
349
+ <key>WFWorkflowActionParameters</key>
350
+ <dict>
351
+ <key>GroupingIdentifier</key>
352
+ <string>8C611BD0-B9A0-4C93-82D3-C6C55799C797</string>
353
+ <key>WFControlFlowMode</key>
354
+ <integer>1</integer>
355
+ </dict>
356
+ </dict>
357
+ <dict>
358
+ <key>WFWorkflowActionIdentifier</key>
359
+ <string>is.workflow.actions.showresult</string>
360
+ <key>WFWorkflowActionParameters</key>
361
+ <dict>
362
+ <key>Text</key>
363
+ <string>You have no events with locations in the next three days.</string>
364
+ </dict>
365
+ </dict>
366
+ <dict>
367
+ <key>WFWorkflowActionIdentifier</key>
368
+ <string>is.workflow.actions.conditional</string>
369
+ <key>WFWorkflowActionParameters</key>
370
+ <dict>
371
+ <key>GroupingIdentifier</key>
372
+ <string>8C611BD0-B9A0-4C93-82D3-C6C55799C797</string>
373
+ <key>WFControlFlowMode</key>
374
+ <integer>2</integer>
375
+ </dict>
376
+ </dict>
377
+ </array>
378
+ <key>WFWorkflowClientRelease</key>
379
+ <string>3.0</string>
380
+ <key>WFWorkflowClientVersion</key>
381
+ <string>1030.2</string>
382
+ <key>WFWorkflowIcon</key>
383
+ <dict>
384
+ <key>WFWorkflowIconGlyphNumber</key>
385
+ <integer>59768</integer>
386
+ <key>WFWorkflowIconStartColor</key>
387
+ <integer>4251333119</integer>
388
+ </dict>
389
+ <key>WFWorkflowImportQuestions</key>
390
+ <array/>
391
+ <key>WFWorkflowInputContentItemClasses</key>
392
+ <array>
393
+ <string>WFAppStoreAppContentItem</string>
394
+ <string>WFArticleContentItem</string>
395
+ <string>WFContactContentItem</string>
396
+ <string>WFDateContentItem</string>
397
+ <string>WFEmailAddressContentItem</string>
398
+ <string>WFGenericFileContentItem</string>
399
+ <string>WFImageContentItem</string>
400
+ <string>WFiTunesProductContentItem</string>
401
+ <string>WFLocationContentItem</string>
402
+ <string>WFDCMapsLinkContentItem</string>
403
+ <string>WFAVAssetContentItem</string>
404
+ <string>WFPDFContentItem</string>
405
+ <string>WFPhoneNumberContentItem</string>
406
+ <string>WFRichTextContentItem</string>
407
+ <string>WFSafariWebPageContentItem</string>
408
+ <string>WFStringContentItem</string>
409
+ <string>WFURLContentItem</string>
410
+ </array>
411
+ <key>WFWorkflowMinimumClientVersion</key>
412
+ <integer>900</integer>
413
+ <key>WFWorkflowMinimumClientVersionString</key>
414
+ <string>900</string>
415
+ <key>WFWorkflowTypes</key>
416
+ <array>
417
+ <string>WatchKit</string>
418
+ </array>
419
+ </dict>
420
+ </plist>