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,568 @@
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>Parse any JSON feed and display a list of recent posts to choose from. You can pick any post from the list to instantly open it in Safari.</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>Enter the number of posts to fetch from the feed</string>
23
+ </dict>
24
+ </dict>
25
+ <dict>
26
+ <key>WFWorkflowActionIdentifier</key>
27
+ <string>is.workflow.actions.number</string>
28
+ <key>WFWorkflowActionParameters</key>
29
+ <dict>
30
+ <key>CustomOutputName</key>
31
+ <string>Posts</string>
32
+ <key>UUID</key>
33
+ <string>D0FDE40B-49DE-4CD9-A405-D670A6B96545</string>
34
+ <key>WFNumberActionNumber</key>
35
+ <real>10</real>
36
+ </dict>
37
+ </dict>
38
+ <dict>
39
+ <key>WFWorkflowActionIdentifier</key>
40
+ <string>is.workflow.actions.comment</string>
41
+ <key>WFWorkflowActionParameters</key>
42
+ <dict>
43
+ <key>WFCommentActionText</key>
44
+ <string>Choose a JSON feed below. You can add different feeds to the list as new Text items</string>
45
+ </dict>
46
+ </dict>
47
+ <dict>
48
+ <key>WFWorkflowActionIdentifier</key>
49
+ <string>is.workflow.actions.dictionary</string>
50
+ <key>WFWorkflowActionParameters</key>
51
+ <dict>
52
+ <key>UUID</key>
53
+ <string>296767F9-5FEE-467F-ADAF-4B5B83DF1176</string>
54
+ <key>WFItems</key>
55
+ <dict>
56
+ <key>Value</key>
57
+ <dict>
58
+ <key>WFDictionaryFieldValueItems</key>
59
+ <array>
60
+ <dict>
61
+ <key>WFItemType</key>
62
+ <integer>0</integer>
63
+ <key>WFKey</key>
64
+ <dict>
65
+ <key>Value</key>
66
+ <dict>
67
+ <key>attachmentsByRange</key>
68
+ <dict/>
69
+ <key>string</key>
70
+ <string>MacStories</string>
71
+ </dict>
72
+ <key>WFSerializationType</key>
73
+ <string>WFTextTokenString</string>
74
+ </dict>
75
+ <key>WFValue</key>
76
+ <dict>
77
+ <key>Value</key>
78
+ <dict>
79
+ <key>attachmentsByRange</key>
80
+ <dict/>
81
+ <key>string</key>
82
+ <string>https://macstories.net/feed/json</string>
83
+ </dict>
84
+ <key>WFSerializationType</key>
85
+ <string>WFTextTokenString</string>
86
+ </dict>
87
+ </dict>
88
+ <dict>
89
+ <key>WFItemType</key>
90
+ <integer>0</integer>
91
+ <key>WFKey</key>
92
+ <dict>
93
+ <key>Value</key>
94
+ <dict>
95
+ <key>attachmentsByRange</key>
96
+ <dict/>
97
+ <key>string</key>
98
+ <string>Daring Fireball</string>
99
+ </dict>
100
+ <key>WFSerializationType</key>
101
+ <string>WFTextTokenString</string>
102
+ </dict>
103
+ <key>WFValue</key>
104
+ <dict>
105
+ <key>Value</key>
106
+ <dict>
107
+ <key>attachmentsByRange</key>
108
+ <dict/>
109
+ <key>string</key>
110
+ <string>https://daringfireball.net/feeds/json</string>
111
+ </dict>
112
+ <key>WFSerializationType</key>
113
+ <string>WFTextTokenString</string>
114
+ </dict>
115
+ </dict>
116
+ </array>
117
+ </dict>
118
+ <key>WFSerializationType</key>
119
+ <string>WFDictionaryFieldValue</string>
120
+ </dict>
121
+ </dict>
122
+ </dict>
123
+ <dict>
124
+ <key>WFWorkflowActionIdentifier</key>
125
+ <string>is.workflow.actions.getvalueforkey</string>
126
+ <key>WFWorkflowActionParameters</key>
127
+ <dict>
128
+ <key>UUID</key>
129
+ <string>278DED14-4AAA-4CE6-A340-BF4C3B5549F4</string>
130
+ <key>WFGetDictionaryValueType</key>
131
+ <string>All Keys</string>
132
+ </dict>
133
+ </dict>
134
+ <dict>
135
+ <key>WFWorkflowActionIdentifier</key>
136
+ <string>is.workflow.actions.choosefromlist</string>
137
+ <key>WFWorkflowActionParameters</key>
138
+ <dict>
139
+ <key>UUID</key>
140
+ <string>6E14E336-9ECC-4187-83AB-0D26843AE523</string>
141
+ <key>WFChooseFromListActionPrompt</key>
142
+ <string>JSON Feeds</string>
143
+ </dict>
144
+ </dict>
145
+ <dict>
146
+ <key>WFWorkflowActionIdentifier</key>
147
+ <string>is.workflow.actions.getvariable</string>
148
+ <key>WFWorkflowActionParameters</key>
149
+ <dict>
150
+ <key>WFVariable</key>
151
+ <dict>
152
+ <key>Value</key>
153
+ <dict>
154
+ <key>OutputName</key>
155
+ <string>Dictionary</string>
156
+ <key>OutputUUID</key>
157
+ <string>296767F9-5FEE-467F-ADAF-4B5B83DF1176</string>
158
+ <key>Type</key>
159
+ <string>ActionOutput</string>
160
+ </dict>
161
+ <key>WFSerializationType</key>
162
+ <string>WFTextTokenAttachment</string>
163
+ </dict>
164
+ </dict>
165
+ </dict>
166
+ <dict>
167
+ <key>WFWorkflowActionIdentifier</key>
168
+ <string>is.workflow.actions.getvalueforkey</string>
169
+ <key>WFWorkflowActionParameters</key>
170
+ <dict>
171
+ <key>UUID</key>
172
+ <string>30B5DB3E-7CAD-425A-AFCD-CA4FB27AEB2D</string>
173
+ <key>WFDictionaryKey</key>
174
+ <dict>
175
+ <key>Value</key>
176
+ <dict>
177
+ <key>attachmentsByRange</key>
178
+ <dict>
179
+ <key>{0, 1}</key>
180
+ <dict>
181
+ <key>OutputName</key>
182
+ <string>Chosen Item</string>
183
+ <key>OutputUUID</key>
184
+ <string>6E14E336-9ECC-4187-83AB-0D26843AE523</string>
185
+ <key>Type</key>
186
+ <string>ActionOutput</string>
187
+ </dict>
188
+ </dict>
189
+ <key>string</key>
190
+ <string></string>
191
+ </dict>
192
+ <key>WFSerializationType</key>
193
+ <string>WFTextTokenString</string>
194
+ </dict>
195
+ </dict>
196
+ </dict>
197
+ <dict>
198
+ <key>WFWorkflowActionIdentifier</key>
199
+ <string>is.workflow.actions.url</string>
200
+ <key>WFWorkflowActionParameters</key>
201
+ <dict>
202
+ <key>UUID</key>
203
+ <string>FA62D11D-82BC-4D54-81E4-2461762D596B</string>
204
+ <key>WFURLActionURL</key>
205
+ <dict>
206
+ <key>Value</key>
207
+ <dict>
208
+ <key>attachmentsByRange</key>
209
+ <dict>
210
+ <key>{0, 1}</key>
211
+ <dict>
212
+ <key>OutputName</key>
213
+ <string>Dictionary Value</string>
214
+ <key>OutputUUID</key>
215
+ <string>30B5DB3E-7CAD-425A-AFCD-CA4FB27AEB2D</string>
216
+ <key>Type</key>
217
+ <string>ActionOutput</string>
218
+ </dict>
219
+ </dict>
220
+ <key>string</key>
221
+ <string></string>
222
+ </dict>
223
+ <key>WFSerializationType</key>
224
+ <string>WFTextTokenString</string>
225
+ </dict>
226
+ </dict>
227
+ </dict>
228
+ <dict>
229
+ <key>WFWorkflowActionIdentifier</key>
230
+ <string>is.workflow.actions.downloadurl</string>
231
+ <key>WFWorkflowActionParameters</key>
232
+ <dict>
233
+ <key>Advanced</key>
234
+ <true/>
235
+ <key>CustomOutputName</key>
236
+ <string>title</string>
237
+ <key>UUID</key>
238
+ <string>7F234436-022F-4829-8988-920A9F973C9E</string>
239
+ </dict>
240
+ </dict>
241
+ <dict>
242
+ <key>WFWorkflowActionIdentifier</key>
243
+ <string>is.workflow.actions.getvalueforkey</string>
244
+ <key>WFWorkflowActionParameters</key>
245
+ <dict>
246
+ <key>UUID</key>
247
+ <string>85E29551-E418-40DE-9DB8-0CA5C5ADD320</string>
248
+ <key>WFDictionaryKey</key>
249
+ <string>items</string>
250
+ </dict>
251
+ </dict>
252
+ <dict>
253
+ <key>WFWorkflowActionIdentifier</key>
254
+ <string>is.workflow.actions.getitemfromlist</string>
255
+ <key>WFWorkflowActionParameters</key>
256
+ <dict>
257
+ <key>WFItemRangeEnd</key>
258
+ <dict>
259
+ <key>Value</key>
260
+ <dict>
261
+ <key>OutputName</key>
262
+ <string>Posts</string>
263
+ <key>OutputUUID</key>
264
+ <string>D0FDE40B-49DE-4CD9-A405-D670A6B96545</string>
265
+ <key>Type</key>
266
+ <string>ActionOutput</string>
267
+ </dict>
268
+ <key>WFSerializationType</key>
269
+ <string>WFTextTokenAttachment</string>
270
+ </dict>
271
+ <key>WFItemSpecifier</key>
272
+ <string>Items in Range</string>
273
+ </dict>
274
+ </dict>
275
+ <dict>
276
+ <key>WFWorkflowActionIdentifier</key>
277
+ <string>is.workflow.actions.comment</string>
278
+ <key>WFWorkflowActionParameters</key>
279
+ <dict>
280
+ <key>WFCommentActionText</key>
281
+ <string>Use contact card method to assemble a rich list of posts with a URL as rather subtitle</string>
282
+ </dict>
283
+ </dict>
284
+ <dict>
285
+ <key>WFWorkflowActionIdentifier</key>
286
+ <string>is.workflow.actions.repeat.each</string>
287
+ <key>WFWorkflowActionParameters</key>
288
+ <dict>
289
+ <key>GroupingIdentifier</key>
290
+ <string>40E0E8E6-E42D-43CC-8E9C-50F42FEF00EA</string>
291
+ <key>WFControlFlowMode</key>
292
+ <integer>0</integer>
293
+ </dict>
294
+ </dict>
295
+ <dict>
296
+ <key>WFWorkflowActionIdentifier</key>
297
+ <string>is.workflow.actions.gettext</string>
298
+ <key>WFWorkflowActionParameters</key>
299
+ <dict>
300
+ <key>UUID</key>
301
+ <string>550E82E8-6FD1-4485-8CE9-712773F7D192</string>
302
+ <key>WFTextActionText</key>
303
+ <dict>
304
+ <key>Value</key>
305
+ <dict>
306
+ <key>attachmentsByRange</key>
307
+ <dict>
308
+ <key>{40, 1}</key>
309
+ <dict>
310
+ <key>Aggrandizements</key>
311
+ <array>
312
+ <dict>
313
+ <key>CoercionItemClass</key>
314
+ <string>WFDictionaryContentItem</string>
315
+ <key>Type</key>
316
+ <string>WFCoercionVariableAggrandizement</string>
317
+ </dict>
318
+ <dict>
319
+ <key>DictionaryKey</key>
320
+ <string>title</string>
321
+ <key>Type</key>
322
+ <string>WFDictionaryValueVariableAggrandizement</string>
323
+ </dict>
324
+ </array>
325
+ <key>Type</key>
326
+ <string>Variable</string>
327
+ <key>VariableName</key>
328
+ <string>Repeat Item</string>
329
+ </dict>
330
+ <key>{49, 1}</key>
331
+ <dict>
332
+ <key>Aggrandizements</key>
333
+ <array>
334
+ <dict>
335
+ <key>CoercionItemClass</key>
336
+ <string>WFDictionaryContentItem</string>
337
+ <key>Type</key>
338
+ <string>WFCoercionVariableAggrandizement</string>
339
+ </dict>
340
+ <dict>
341
+ <key>DictionaryKey</key>
342
+ <string>id</string>
343
+ <key>Type</key>
344
+ <string>WFDictionaryValueVariableAggrandizement</string>
345
+ </dict>
346
+ </array>
347
+ <key>Type</key>
348
+ <string>Variable</string>
349
+ <key>VariableName</key>
350
+ <string>Repeat Item</string>
351
+ </dict>
352
+ <key>{62, 1}</key>
353
+ <dict>
354
+ <key>Aggrandizements</key>
355
+ <array>
356
+ <dict>
357
+ <key>CoercionItemClass</key>
358
+ <string>WFDictionaryContentItem</string>
359
+ <key>Type</key>
360
+ <string>WFCoercionVariableAggrandizement</string>
361
+ </dict>
362
+ <dict>
363
+ <key>DictionaryKey</key>
364
+ <string>id</string>
365
+ <key>Type</key>
366
+ <string>WFDictionaryValueVariableAggrandizement</string>
367
+ </dict>
368
+ </array>
369
+ <key>Type</key>
370
+ <string>Variable</string>
371
+ <key>VariableName</key>
372
+ <string>Repeat Item</string>
373
+ </dict>
374
+ </dict>
375
+ <key>string</key>
376
+ <string>BEGIN:VCARD
377
+ VERSION:3.0
378
+ N;CHARSET=utf-8:;;;
379
+ ORG:;
380
+ item4.URL:
381
+ END:VCARD</string>
382
+ </dict>
383
+ <key>WFSerializationType</key>
384
+ <string>WFTextTokenString</string>
385
+ </dict>
386
+ </dict>
387
+ </dict>
388
+ <dict>
389
+ <key>WFWorkflowActionIdentifier</key>
390
+ <string>is.workflow.actions.setitemname</string>
391
+ <key>WFWorkflowActionParameters</key>
392
+ <dict>
393
+ <key>UUID</key>
394
+ <string>A7CBE6D9-BE25-423E-8D48-19D81C641D5F</string>
395
+ <key>WFName</key>
396
+ <string>Post.vcf</string>
397
+ </dict>
398
+ </dict>
399
+ <dict>
400
+ <key>WFWorkflowActionIdentifier</key>
401
+ <string>is.workflow.actions.appendvariable</string>
402
+ <key>WFWorkflowActionParameters</key>
403
+ <dict>
404
+ <key>WFVariableName</key>
405
+ <string>Feed Items</string>
406
+ </dict>
407
+ </dict>
408
+ <dict>
409
+ <key>WFWorkflowActionIdentifier</key>
410
+ <string>is.workflow.actions.repeat.each</string>
411
+ <key>WFWorkflowActionParameters</key>
412
+ <dict>
413
+ <key>GroupingIdentifier</key>
414
+ <string>40E0E8E6-E42D-43CC-8E9C-50F42FEF00EA</string>
415
+ <key>UUID</key>
416
+ <string>A53DB09A-41D5-404C-AB1D-7856C8BC0256</string>
417
+ <key>WFControlFlowMode</key>
418
+ <integer>2</integer>
419
+ </dict>
420
+ </dict>
421
+ <dict>
422
+ <key>WFWorkflowActionIdentifier</key>
423
+ <string>is.workflow.actions.list</string>
424
+ <key>WFWorkflowActionParameters</key>
425
+ <dict>
426
+ <key>WFItems</key>
427
+ <array>
428
+ <dict>
429
+ <key>WFItemType</key>
430
+ <integer>0</integer>
431
+ <key>WFValue</key>
432
+ <dict>
433
+ <key>Value</key>
434
+ <dict>
435
+ <key>attachmentsByRange</key>
436
+ <dict>
437
+ <key>{0, 1}</key>
438
+ <dict>
439
+ <key>Aggrandizements</key>
440
+ <array>
441
+ <dict>
442
+ <key>CoercionItemClass</key>
443
+ <string>WFContactContentItem</string>
444
+ <key>Type</key>
445
+ <string>WFCoercionVariableAggrandizement</string>
446
+ </dict>
447
+ </array>
448
+ <key>Type</key>
449
+ <string>Variable</string>
450
+ <key>VariableName</key>
451
+ <string>Feed Items</string>
452
+ </dict>
453
+ </dict>
454
+ <key>string</key>
455
+ <string></string>
456
+ </dict>
457
+ <key>WFSerializationType</key>
458
+ <string>WFTextTokenString</string>
459
+ </dict>
460
+ </dict>
461
+ </array>
462
+ </dict>
463
+ </dict>
464
+ <dict>
465
+ <key>WFWorkflowActionIdentifier</key>
466
+ <string>is.workflow.actions.choosefromlist</string>
467
+ <key>WFWorkflowActionParameters</key>
468
+ <dict>
469
+ <key>WFChooseFromListActionPrompt</key>
470
+ <dict>
471
+ <key>Value</key>
472
+ <dict>
473
+ <key>attachmentsByRange</key>
474
+ <dict>
475
+ <key>{0, 1}</key>
476
+ <dict>
477
+ <key>Aggrandizements</key>
478
+ <array>
479
+ <dict>
480
+ <key>CoercionItemClass</key>
481
+ <string>WFDictionaryContentItem</string>
482
+ <key>Type</key>
483
+ <string>WFCoercionVariableAggrandizement</string>
484
+ </dict>
485
+ <dict>
486
+ <key>DictionaryKey</key>
487
+ <string>title</string>
488
+ <key>Type</key>
489
+ <string>WFDictionaryValueVariableAggrandizement</string>
490
+ </dict>
491
+ </array>
492
+ <key>OutputName</key>
493
+ <string>title</string>
494
+ <key>OutputUUID</key>
495
+ <string>7F234436-022F-4829-8988-920A9F973C9E</string>
496
+ <key>Type</key>
497
+ <string>ActionOutput</string>
498
+ </dict>
499
+ </dict>
500
+ <key>string</key>
501
+ <string></string>
502
+ </dict>
503
+ <key>WFSerializationType</key>
504
+ <string>WFTextTokenString</string>
505
+ </dict>
506
+ </dict>
507
+ </dict>
508
+ <dict>
509
+ <key>WFWorkflowActionIdentifier</key>
510
+ <string>is.workflow.actions.properties.contacts</string>
511
+ <key>WFWorkflowActionParameters</key>
512
+ <dict>
513
+ <key>WFContentItemPropertyName</key>
514
+ <string>Company</string>
515
+ </dict>
516
+ </dict>
517
+ <dict>
518
+ <key>WFWorkflowActionIdentifier</key>
519
+ <string>is.workflow.actions.openurl</string>
520
+ <key>WFWorkflowActionParameters</key>
521
+ <dict/>
522
+ </dict>
523
+ </array>
524
+ <key>WFWorkflowClientRelease</key>
525
+ <string>2.2</string>
526
+ <key>WFWorkflowClientVersion</key>
527
+ <string>770</string>
528
+ <key>WFWorkflowIcon</key>
529
+ <dict>
530
+ <key>WFWorkflowIconGlyphNumber</key>
531
+ <integer>59497</integer>
532
+ <key>WFWorkflowIconImageData</key>
533
+ <data>
534
+ </data>
535
+ <key>WFWorkflowIconStartColor</key>
536
+ <integer>4282601983</integer>
537
+ </dict>
538
+ <key>WFWorkflowImportQuestions</key>
539
+ <array/>
540
+ <key>WFWorkflowInputContentItemClasses</key>
541
+ <array>
542
+ <string>WFAppStoreAppContentItem</string>
543
+ <string>WFArticleContentItem</string>
544
+ <string>WFContactContentItem</string>
545
+ <string>WFDateContentItem</string>
546
+ <string>WFEmailAddressContentItem</string>
547
+ <string>WFGenericFileContentItem</string>
548
+ <string>WFImageContentItem</string>
549
+ <string>WFiTunesProductContentItem</string>
550
+ <string>WFLocationContentItem</string>
551
+ <string>WFDCMapsLinkContentItem</string>
552
+ <string>WFAVAssetContentItem</string>
553
+ <string>WFPDFContentItem</string>
554
+ <string>WFPhoneNumberContentItem</string>
555
+ <string>WFRichTextContentItem</string>
556
+ <string>WFSafariWebPageContentItem</string>
557
+ <string>WFStringContentItem</string>
558
+ <string>WFURLContentItem</string>
559
+ </array>
560
+ <key>WFWorkflowMinimumClientVersion</key>
561
+ <integer>411</integer>
562
+ <key>WFWorkflowTypes</key>
563
+ <array>
564
+ <string>NCWidget</string>
565
+ <string>WatchKit</string>
566
+ </array>
567
+ </dict>
568
+ </plist>