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,1177 @@
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>Create a new calendar event choosing from a list of templates. Templates are represented by a Dictionary action at the beginning of the shortcut and they support customization for calendar name, location, duration, notes, alert time, and the all-day setting. The shortcut will only ask to confirm the event's title and start date. This shortcut was originally created for members of Club MacStories.</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>In the Dictionary below, tap on the blue "items" element to customize details for a single event template. Alert and duration must be added in minutes; location supports full addresses.</string>
23
+ </dict>
24
+ </dict>
25
+ <dict>
26
+ <key>WFWorkflowActionIdentifier</key>
27
+ <string>is.workflow.actions.dictionary</string>
28
+ <key>WFWorkflowActionParameters</key>
29
+ <dict>
30
+ <key>UUID</key>
31
+ <string>B5199E5A-706D-4AF3-9E60-CEE0BFFA7F4E</string>
32
+ <key>WFItems</key>
33
+ <dict>
34
+ <key>Value</key>
35
+ <dict>
36
+ <key>WFDictionaryFieldValueItems</key>
37
+ <array>
38
+ <dict>
39
+ <key>WFItemType</key>
40
+ <integer>1</integer>
41
+ <key>WFKey</key>
42
+ <dict>
43
+ <key>Value</key>
44
+ <dict>
45
+ <key>attachmentsByRange</key>
46
+ <dict/>
47
+ <key>string</key>
48
+ <string>Game Release</string>
49
+ </dict>
50
+ <key>WFSerializationType</key>
51
+ <string>WFTextTokenString</string>
52
+ </dict>
53
+ <key>WFValue</key>
54
+ <dict>
55
+ <key>Value</key>
56
+ <dict>
57
+ <key>Value</key>
58
+ <dict>
59
+ <key>WFDictionaryFieldValueItems</key>
60
+ <array>
61
+ <dict>
62
+ <key>WFItemType</key>
63
+ <integer>0</integer>
64
+ <key>WFKey</key>
65
+ <dict>
66
+ <key>Value</key>
67
+ <dict>
68
+ <key>attachmentsByRange</key>
69
+ <dict/>
70
+ <key>string</key>
71
+ <string>Calendar</string>
72
+ </dict>
73
+ <key>WFSerializationType</key>
74
+ <string>WFTextTokenString</string>
75
+ </dict>
76
+ <key>WFValue</key>
77
+ <dict>
78
+ <key>Value</key>
79
+ <dict>
80
+ <key>attachmentsByRange</key>
81
+ <dict/>
82
+ <key>string</key>
83
+ <string>Game Releases</string>
84
+ </dict>
85
+ <key>WFSerializationType</key>
86
+ <string>WFTextTokenString</string>
87
+ </dict>
88
+ </dict>
89
+ <dict>
90
+ <key>WFItemType</key>
91
+ <integer>0</integer>
92
+ <key>WFKey</key>
93
+ <dict>
94
+ <key>Value</key>
95
+ <dict>
96
+ <key>attachmentsByRange</key>
97
+ <dict/>
98
+ <key>string</key>
99
+ <string>Location</string>
100
+ </dict>
101
+ <key>WFSerializationType</key>
102
+ <string>WFTextTokenString</string>
103
+ </dict>
104
+ <key>WFValue</key>
105
+ <dict>
106
+ <key>Value</key>
107
+ <dict>
108
+ <key>attachmentsByRange</key>
109
+ <dict/>
110
+ <key>string</key>
111
+ <string></string>
112
+ </dict>
113
+ <key>WFSerializationType</key>
114
+ <string>WFTextTokenString</string>
115
+ </dict>
116
+ </dict>
117
+ <dict>
118
+ <key>WFItemType</key>
119
+ <integer>0</integer>
120
+ <key>WFKey</key>
121
+ <dict>
122
+ <key>Value</key>
123
+ <dict>
124
+ <key>attachmentsByRange</key>
125
+ <dict/>
126
+ <key>string</key>
127
+ <string>Duration</string>
128
+ </dict>
129
+ <key>WFSerializationType</key>
130
+ <string>WFTextTokenString</string>
131
+ </dict>
132
+ <key>WFValue</key>
133
+ <dict>
134
+ <key>Value</key>
135
+ <dict>
136
+ <key>attachmentsByRange</key>
137
+ <dict/>
138
+ <key>string</key>
139
+ <string>0</string>
140
+ </dict>
141
+ <key>WFSerializationType</key>
142
+ <string>WFTextTokenString</string>
143
+ </dict>
144
+ </dict>
145
+ <dict>
146
+ <key>WFItemType</key>
147
+ <integer>0</integer>
148
+ <key>WFKey</key>
149
+ <dict>
150
+ <key>Value</key>
151
+ <dict>
152
+ <key>attachmentsByRange</key>
153
+ <dict/>
154
+ <key>string</key>
155
+ <string>Notes</string>
156
+ </dict>
157
+ <key>WFSerializationType</key>
158
+ <string>WFTextTokenString</string>
159
+ </dict>
160
+ <key>WFValue</key>
161
+ <dict>
162
+ <key>Value</key>
163
+ <dict>
164
+ <key>attachmentsByRange</key>
165
+ <dict/>
166
+ <key>string</key>
167
+ <string></string>
168
+ </dict>
169
+ <key>WFSerializationType</key>
170
+ <string>WFTextTokenString</string>
171
+ </dict>
172
+ </dict>
173
+ <dict>
174
+ <key>WFItemType</key>
175
+ <integer>4</integer>
176
+ <key>WFKey</key>
177
+ <dict>
178
+ <key>Value</key>
179
+ <dict>
180
+ <key>attachmentsByRange</key>
181
+ <dict/>
182
+ <key>string</key>
183
+ <string>All Day</string>
184
+ </dict>
185
+ <key>WFSerializationType</key>
186
+ <string>WFTextTokenString</string>
187
+ </dict>
188
+ <key>WFValue</key>
189
+ <dict>
190
+ <key>Value</key>
191
+ <integer>1</integer>
192
+ <key>WFSerializationType</key>
193
+ <string>WFNumberSubstitutableState</string>
194
+ </dict>
195
+ </dict>
196
+ <dict>
197
+ <key>WFItemType</key>
198
+ <integer>0</integer>
199
+ <key>WFKey</key>
200
+ <dict>
201
+ <key>Value</key>
202
+ <dict>
203
+ <key>attachmentsByRange</key>
204
+ <dict/>
205
+ <key>string</key>
206
+ <string>Alert</string>
207
+ </dict>
208
+ <key>WFSerializationType</key>
209
+ <string>WFTextTokenString</string>
210
+ </dict>
211
+ <key>WFValue</key>
212
+ <dict>
213
+ <key>Value</key>
214
+ <dict>
215
+ <key>attachmentsByRange</key>
216
+ <dict/>
217
+ <key>string</key>
218
+ <string>0</string>
219
+ </dict>
220
+ <key>WFSerializationType</key>
221
+ <string>WFTextTokenString</string>
222
+ </dict>
223
+ </dict>
224
+ </array>
225
+ </dict>
226
+ <key>WFSerializationType</key>
227
+ <string>WFDictionaryFieldValue</string>
228
+ </dict>
229
+ <key>WFSerializationType</key>
230
+ <string>WFDictionaryFieldValue</string>
231
+ </dict>
232
+ </dict>
233
+ <dict>
234
+ <key>WFItemType</key>
235
+ <integer>1</integer>
236
+ <key>WFKey</key>
237
+ <dict>
238
+ <key>Value</key>
239
+ <dict>
240
+ <key>attachmentsByRange</key>
241
+ <dict/>
242
+ <key>string</key>
243
+ <string>Dentist</string>
244
+ </dict>
245
+ <key>WFSerializationType</key>
246
+ <string>WFTextTokenString</string>
247
+ </dict>
248
+ <key>WFValue</key>
249
+ <dict>
250
+ <key>Value</key>
251
+ <dict>
252
+ <key>Value</key>
253
+ <dict>
254
+ <key>WFDictionaryFieldValueItems</key>
255
+ <array>
256
+ <dict>
257
+ <key>WFItemType</key>
258
+ <integer>0</integer>
259
+ <key>WFKey</key>
260
+ <dict>
261
+ <key>Value</key>
262
+ <dict>
263
+ <key>attachmentsByRange</key>
264
+ <dict/>
265
+ <key>string</key>
266
+ <string>Calendar</string>
267
+ </dict>
268
+ <key>WFSerializationType</key>
269
+ <string>WFTextTokenString</string>
270
+ </dict>
271
+ <key>WFValue</key>
272
+ <dict>
273
+ <key>Value</key>
274
+ <dict>
275
+ <key>attachmentsByRange</key>
276
+ <dict/>
277
+ <key>string</key>
278
+ <string>Family</string>
279
+ </dict>
280
+ <key>WFSerializationType</key>
281
+ <string>WFTextTokenString</string>
282
+ </dict>
283
+ </dict>
284
+ <dict>
285
+ <key>WFItemType</key>
286
+ <integer>0</integer>
287
+ <key>WFKey</key>
288
+ <dict>
289
+ <key>Value</key>
290
+ <dict>
291
+ <key>attachmentsByRange</key>
292
+ <dict/>
293
+ <key>string</key>
294
+ <string>Location</string>
295
+ </dict>
296
+ <key>WFSerializationType</key>
297
+ <string>WFTextTokenString</string>
298
+ </dict>
299
+ <key>WFValue</key>
300
+ <dict>
301
+ <key>Value</key>
302
+ <dict>
303
+ <key>attachmentsByRange</key>
304
+ <dict/>
305
+ <key>string</key>
306
+ <string></string>
307
+ </dict>
308
+ <key>WFSerializationType</key>
309
+ <string>WFTextTokenString</string>
310
+ </dict>
311
+ </dict>
312
+ <dict>
313
+ <key>WFItemType</key>
314
+ <integer>0</integer>
315
+ <key>WFKey</key>
316
+ <dict>
317
+ <key>Value</key>
318
+ <dict>
319
+ <key>attachmentsByRange</key>
320
+ <dict/>
321
+ <key>string</key>
322
+ <string>Duration</string>
323
+ </dict>
324
+ <key>WFSerializationType</key>
325
+ <string>WFTextTokenString</string>
326
+ </dict>
327
+ <key>WFValue</key>
328
+ <dict>
329
+ <key>Value</key>
330
+ <dict>
331
+ <key>attachmentsByRange</key>
332
+ <dict/>
333
+ <key>string</key>
334
+ <string>30</string>
335
+ </dict>
336
+ <key>WFSerializationType</key>
337
+ <string>WFTextTokenString</string>
338
+ </dict>
339
+ </dict>
340
+ <dict>
341
+ <key>WFItemType</key>
342
+ <integer>0</integer>
343
+ <key>WFKey</key>
344
+ <dict>
345
+ <key>Value</key>
346
+ <dict>
347
+ <key>attachmentsByRange</key>
348
+ <dict/>
349
+ <key>string</key>
350
+ <string>Notes</string>
351
+ </dict>
352
+ <key>WFSerializationType</key>
353
+ <string>WFTextTokenString</string>
354
+ </dict>
355
+ <key>WFValue</key>
356
+ <dict>
357
+ <key>Value</key>
358
+ <dict>
359
+ <key>attachmentsByRange</key>
360
+ <dict/>
361
+ <key>string</key>
362
+ <string></string>
363
+ </dict>
364
+ <key>WFSerializationType</key>
365
+ <string>WFTextTokenString</string>
366
+ </dict>
367
+ </dict>
368
+ <dict>
369
+ <key>WFItemType</key>
370
+ <integer>4</integer>
371
+ <key>WFKey</key>
372
+ <dict>
373
+ <key>Value</key>
374
+ <dict>
375
+ <key>attachmentsByRange</key>
376
+ <dict/>
377
+ <key>string</key>
378
+ <string>All Day</string>
379
+ </dict>
380
+ <key>WFSerializationType</key>
381
+ <string>WFTextTokenString</string>
382
+ </dict>
383
+ <key>WFValue</key>
384
+ <dict>
385
+ <key>Value</key>
386
+ <false/>
387
+ <key>WFSerializationType</key>
388
+ <string>WFNumberSubstitutableState</string>
389
+ </dict>
390
+ </dict>
391
+ <dict>
392
+ <key>WFItemType</key>
393
+ <integer>0</integer>
394
+ <key>WFKey</key>
395
+ <dict>
396
+ <key>Value</key>
397
+ <dict>
398
+ <key>attachmentsByRange</key>
399
+ <dict/>
400
+ <key>string</key>
401
+ <string>Alert</string>
402
+ </dict>
403
+ <key>WFSerializationType</key>
404
+ <string>WFTextTokenString</string>
405
+ </dict>
406
+ <key>WFValue</key>
407
+ <dict>
408
+ <key>Value</key>
409
+ <dict>
410
+ <key>attachmentsByRange</key>
411
+ <dict/>
412
+ <key>string</key>
413
+ <string>30</string>
414
+ </dict>
415
+ <key>WFSerializationType</key>
416
+ <string>WFTextTokenString</string>
417
+ </dict>
418
+ </dict>
419
+ </array>
420
+ </dict>
421
+ <key>WFSerializationType</key>
422
+ <string>WFDictionaryFieldValue</string>
423
+ </dict>
424
+ <key>WFSerializationType</key>
425
+ <string>WFDictionaryFieldValue</string>
426
+ </dict>
427
+ </dict>
428
+ <dict>
429
+ <key>WFItemType</key>
430
+ <integer>1</integer>
431
+ <key>WFKey</key>
432
+ <dict>
433
+ <key>Value</key>
434
+ <dict>
435
+ <key>attachmentsByRange</key>
436
+ <dict/>
437
+ <key>string</key>
438
+ <string>Dog Training</string>
439
+ </dict>
440
+ <key>WFSerializationType</key>
441
+ <string>WFTextTokenString</string>
442
+ </dict>
443
+ <key>WFValue</key>
444
+ <dict>
445
+ <key>Value</key>
446
+ <dict>
447
+ <key>Value</key>
448
+ <dict>
449
+ <key>WFDictionaryFieldValueItems</key>
450
+ <array>
451
+ <dict>
452
+ <key>WFItemType</key>
453
+ <integer>0</integer>
454
+ <key>WFKey</key>
455
+ <dict>
456
+ <key>Value</key>
457
+ <dict>
458
+ <key>attachmentsByRange</key>
459
+ <dict/>
460
+ <key>string</key>
461
+ <string>Calendar</string>
462
+ </dict>
463
+ <key>WFSerializationType</key>
464
+ <string>WFTextTokenString</string>
465
+ </dict>
466
+ <key>WFValue</key>
467
+ <dict>
468
+ <key>Value</key>
469
+ <dict>
470
+ <key>attachmentsByRange</key>
471
+ <dict/>
472
+ <key>string</key>
473
+ <string>Personal</string>
474
+ </dict>
475
+ <key>WFSerializationType</key>
476
+ <string>WFTextTokenString</string>
477
+ </dict>
478
+ </dict>
479
+ <dict>
480
+ <key>WFItemType</key>
481
+ <integer>0</integer>
482
+ <key>WFKey</key>
483
+ <dict>
484
+ <key>Value</key>
485
+ <dict>
486
+ <key>attachmentsByRange</key>
487
+ <dict/>
488
+ <key>string</key>
489
+ <string>Location</string>
490
+ </dict>
491
+ <key>WFSerializationType</key>
492
+ <string>WFTextTokenString</string>
493
+ </dict>
494
+ <key>WFValue</key>
495
+ <dict>
496
+ <key>Value</key>
497
+ <dict>
498
+ <key>attachmentsByRange</key>
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
+ <key>WFItemType</key>
509
+ <integer>0</integer>
510
+ <key>WFKey</key>
511
+ <dict>
512
+ <key>Value</key>
513
+ <dict>
514
+ <key>attachmentsByRange</key>
515
+ <dict/>
516
+ <key>string</key>
517
+ <string>Duration</string>
518
+ </dict>
519
+ <key>WFSerializationType</key>
520
+ <string>WFTextTokenString</string>
521
+ </dict>
522
+ <key>WFValue</key>
523
+ <dict>
524
+ <key>Value</key>
525
+ <dict>
526
+ <key>attachmentsByRange</key>
527
+ <dict/>
528
+ <key>string</key>
529
+ <string>120</string>
530
+ </dict>
531
+ <key>WFSerializationType</key>
532
+ <string>WFTextTokenString</string>
533
+ </dict>
534
+ </dict>
535
+ <dict>
536
+ <key>WFItemType</key>
537
+ <integer>0</integer>
538
+ <key>WFKey</key>
539
+ <dict>
540
+ <key>Value</key>
541
+ <dict>
542
+ <key>attachmentsByRange</key>
543
+ <dict/>
544
+ <key>string</key>
545
+ <string>Notes</string>
546
+ </dict>
547
+ <key>WFSerializationType</key>
548
+ <string>WFTextTokenString</string>
549
+ </dict>
550
+ <key>WFValue</key>
551
+ <dict>
552
+ <key>Value</key>
553
+ <dict>
554
+ <key>attachmentsByRange</key>
555
+ <dict/>
556
+ <key>string</key>
557
+ <string></string>
558
+ </dict>
559
+ <key>WFSerializationType</key>
560
+ <string>WFTextTokenString</string>
561
+ </dict>
562
+ </dict>
563
+ <dict>
564
+ <key>WFItemType</key>
565
+ <integer>4</integer>
566
+ <key>WFKey</key>
567
+ <dict>
568
+ <key>Value</key>
569
+ <dict>
570
+ <key>attachmentsByRange</key>
571
+ <dict/>
572
+ <key>string</key>
573
+ <string>All Day</string>
574
+ </dict>
575
+ <key>WFSerializationType</key>
576
+ <string>WFTextTokenString</string>
577
+ </dict>
578
+ <key>WFValue</key>
579
+ <dict>
580
+ <key>Value</key>
581
+ <false/>
582
+ <key>WFSerializationType</key>
583
+ <string>WFNumberSubstitutableState</string>
584
+ </dict>
585
+ </dict>
586
+ <dict>
587
+ <key>WFItemType</key>
588
+ <integer>0</integer>
589
+ <key>WFKey</key>
590
+ <dict>
591
+ <key>Value</key>
592
+ <dict>
593
+ <key>attachmentsByRange</key>
594
+ <dict/>
595
+ <key>string</key>
596
+ <string>Alert</string>
597
+ </dict>
598
+ <key>WFSerializationType</key>
599
+ <string>WFTextTokenString</string>
600
+ </dict>
601
+ <key>WFValue</key>
602
+ <dict>
603
+ <key>Value</key>
604
+ <dict>
605
+ <key>attachmentsByRange</key>
606
+ <dict/>
607
+ <key>string</key>
608
+ <string>30</string>
609
+ </dict>
610
+ <key>WFSerializationType</key>
611
+ <string>WFTextTokenString</string>
612
+ </dict>
613
+ </dict>
614
+ </array>
615
+ </dict>
616
+ <key>WFSerializationType</key>
617
+ <string>WFDictionaryFieldValue</string>
618
+ </dict>
619
+ <key>WFSerializationType</key>
620
+ <string>WFDictionaryFieldValue</string>
621
+ </dict>
622
+ </dict>
623
+ </array>
624
+ </dict>
625
+ <key>WFSerializationType</key>
626
+ <string>WFDictionaryFieldValue</string>
627
+ </dict>
628
+ </dict>
629
+ </dict>
630
+ <dict>
631
+ <key>WFWorkflowActionIdentifier</key>
632
+ <string>is.workflow.actions.getvalueforkey</string>
633
+ <key>WFWorkflowActionParameters</key>
634
+ <dict>
635
+ <key>WFGetDictionaryValueType</key>
636
+ <string>All Keys</string>
637
+ </dict>
638
+ </dict>
639
+ <dict>
640
+ <key>WFWorkflowActionIdentifier</key>
641
+ <string>is.workflow.actions.choosefromlist</string>
642
+ <key>WFWorkflowActionParameters</key>
643
+ <dict>
644
+ <key>CustomOutputName</key>
645
+ <string>Template Name</string>
646
+ <key>UUID</key>
647
+ <string>EC1E4379-2B2B-4AF5-9E78-E02A6D011FB7</string>
648
+ <key>WFChooseFromListActionPrompt</key>
649
+ <string>Pick a Template</string>
650
+ </dict>
651
+ </dict>
652
+ <dict>
653
+ <key>WFWorkflowActionIdentifier</key>
654
+ <string>is.workflow.actions.getvariable</string>
655
+ <key>WFWorkflowActionParameters</key>
656
+ <dict>
657
+ <key>WFVariable</key>
658
+ <dict>
659
+ <key>Value</key>
660
+ <dict>
661
+ <key>OutputName</key>
662
+ <string>Dictionary</string>
663
+ <key>OutputUUID</key>
664
+ <string>B5199E5A-706D-4AF3-9E60-CEE0BFFA7F4E</string>
665
+ <key>Type</key>
666
+ <string>ActionOutput</string>
667
+ </dict>
668
+ <key>WFSerializationType</key>
669
+ <string>WFTextTokenAttachment</string>
670
+ </dict>
671
+ </dict>
672
+ </dict>
673
+ <dict>
674
+ <key>WFWorkflowActionIdentifier</key>
675
+ <string>is.workflow.actions.getvalueforkey</string>
676
+ <key>WFWorkflowActionParameters</key>
677
+ <dict>
678
+ <key>UUID</key>
679
+ <string>93674A63-A21C-4CE1-8C51-E46EBFBF0F7B</string>
680
+ <key>WFDictionaryKey</key>
681
+ <dict>
682
+ <key>Value</key>
683
+ <dict>
684
+ <key>attachmentsByRange</key>
685
+ <dict>
686
+ <key>{0, 1}</key>
687
+ <dict>
688
+ <key>OutputName</key>
689
+ <string>Template Name</string>
690
+ <key>OutputUUID</key>
691
+ <string>EC1E4379-2B2B-4AF5-9E78-E02A6D011FB7</string>
692
+ <key>Type</key>
693
+ <string>ActionOutput</string>
694
+ </dict>
695
+ </dict>
696
+ <key>string</key>
697
+ <string></string>
698
+ </dict>
699
+ <key>WFSerializationType</key>
700
+ <string>WFTextTokenString</string>
701
+ </dict>
702
+ </dict>
703
+ </dict>
704
+ <dict>
705
+ <key>WFWorkflowActionIdentifier</key>
706
+ <string>is.workflow.actions.ask</string>
707
+ <key>WFWorkflowActionParameters</key>
708
+ <dict>
709
+ <key>CustomOutputName</key>
710
+ <string>Final Event Name</string>
711
+ <key>UUID</key>
712
+ <string>27CE6B0C-3D98-4D86-9A2B-46CE8F45F13F</string>
713
+ <key>WFAskActionDefaultAnswer</key>
714
+ <dict>
715
+ <key>Value</key>
716
+ <dict>
717
+ <key>attachmentsByRange</key>
718
+ <dict>
719
+ <key>{0, 1}</key>
720
+ <dict>
721
+ <key>OutputName</key>
722
+ <string>Template Name</string>
723
+ <key>OutputUUID</key>
724
+ <string>EC1E4379-2B2B-4AF5-9E78-E02A6D011FB7</string>
725
+ <key>Type</key>
726
+ <string>ActionOutput</string>
727
+ </dict>
728
+ </dict>
729
+ <key>string</key>
730
+ <string></string>
731
+ </dict>
732
+ <key>WFSerializationType</key>
733
+ <string>WFTextTokenString</string>
734
+ </dict>
735
+ <key>WFAskActionPrompt</key>
736
+ <string>Confirm Event Name</string>
737
+ </dict>
738
+ </dict>
739
+ <dict>
740
+ <key>WFWorkflowActionIdentifier</key>
741
+ <string>is.workflow.actions.comment</string>
742
+ <key>WFWorkflowActionParameters</key>
743
+ <dict>
744
+ <key>WFCommentActionText</key>
745
+ <string>Add duration (as minutes) to the start date.
746
+
747
+ If an event is an All Day one, the start date and time will be used for the alert time.</string>
748
+ </dict>
749
+ </dict>
750
+ <dict>
751
+ <key>WFWorkflowActionIdentifier</key>
752
+ <string>is.workflow.actions.ask</string>
753
+ <key>WFWorkflowActionParameters</key>
754
+ <dict>
755
+ <key>CustomOutputName</key>
756
+ <string>Start Date</string>
757
+ <key>UUID</key>
758
+ <string>D6DA8AB9-FBB5-4AA3-934F-3520A9D4BFCF</string>
759
+ <key>WFAskActionDateGranularity</key>
760
+ <string>Date and Time</string>
761
+ <key>WFAskActionPrompt</key>
762
+ <dict>
763
+ <key>Value</key>
764
+ <dict>
765
+ <key>attachmentsByRange</key>
766
+ <dict>
767
+ <key>{9, 1}</key>
768
+ <dict>
769
+ <key>OutputName</key>
770
+ <string>Template Name</string>
771
+ <key>OutputUUID</key>
772
+ <string>EC1E4379-2B2B-4AF5-9E78-E02A6D011FB7</string>
773
+ <key>Type</key>
774
+ <string>ActionOutput</string>
775
+ </dict>
776
+ </dict>
777
+ <key>string</key>
778
+ <string>Schedule  (Start Date)</string>
779
+ </dict>
780
+ <key>WFSerializationType</key>
781
+ <string>WFTextTokenString</string>
782
+ </dict>
783
+ <key>WFInputType</key>
784
+ <string>Date</string>
785
+ </dict>
786
+ </dict>
787
+ <dict>
788
+ <key>WFWorkflowActionIdentifier</key>
789
+ <string>is.workflow.actions.adjustdate</string>
790
+ <key>WFWorkflowActionParameters</key>
791
+ <dict>
792
+ <key>CustomOutputName</key>
793
+ <string>End Date</string>
794
+ <key>UUID</key>
795
+ <string>A965CA9E-3C44-499D-B389-C9AA7B5D96C1</string>
796
+ <key>WFAdjustOffsetPicker</key>
797
+ <dict>
798
+ <key>Value</key>
799
+ <dict>
800
+ <key>Operation</key>
801
+ <string>Add</string>
802
+ <key>Unit</key>
803
+ <string>Minute</string>
804
+ <key>Value</key>
805
+ <dict>
806
+ <key>Aggrandizements</key>
807
+ <array>
808
+ <dict>
809
+ <key>CoercionItemClass</key>
810
+ <string>WFDictionaryContentItem</string>
811
+ <key>Type</key>
812
+ <string>WFCoercionVariableAggrandizement</string>
813
+ </dict>
814
+ <dict>
815
+ <key>DictionaryKey</key>
816
+ <string>Duration</string>
817
+ <key>Type</key>
818
+ <string>WFDictionaryValueVariableAggrandizement</string>
819
+ </dict>
820
+ </array>
821
+ <key>OutputName</key>
822
+ <string>Dictionary Value</string>
823
+ <key>OutputUUID</key>
824
+ <string>93674A63-A21C-4CE1-8C51-E46EBFBF0F7B</string>
825
+ <key>Type</key>
826
+ <string>ActionOutput</string>
827
+ </dict>
828
+ </dict>
829
+ <key>WFSerializationType</key>
830
+ <string>WFTimeOffsetValue</string>
831
+ </dict>
832
+ </dict>
833
+ </dict>
834
+ <dict>
835
+ <key>WFWorkflowActionIdentifier</key>
836
+ <string>is.workflow.actions.getvariable</string>
837
+ <key>WFWorkflowActionParameters</key>
838
+ <dict>
839
+ <key>WFVariable</key>
840
+ <dict>
841
+ <key>Value</key>
842
+ <dict>
843
+ <key>OutputName</key>
844
+ <string>Start Date</string>
845
+ <key>OutputUUID</key>
846
+ <string>D6DA8AB9-FBB5-4AA3-934F-3520A9D4BFCF</string>
847
+ <key>Type</key>
848
+ <string>ActionOutput</string>
849
+ </dict>
850
+ <key>WFSerializationType</key>
851
+ <string>WFTextTokenAttachment</string>
852
+ </dict>
853
+ </dict>
854
+ </dict>
855
+ <dict>
856
+ <key>WFWorkflowActionIdentifier</key>
857
+ <string>is.workflow.actions.adjustdate</string>
858
+ <key>WFWorkflowActionParameters</key>
859
+ <dict>
860
+ <key>CustomOutputName</key>
861
+ <string>Alert Time</string>
862
+ <key>UUID</key>
863
+ <string>ADA8D7B9-3A38-45B9-99CD-E670D75D8549</string>
864
+ <key>WFAdjustOffsetPicker</key>
865
+ <dict>
866
+ <key>Value</key>
867
+ <dict>
868
+ <key>Operation</key>
869
+ <string>Subtract</string>
870
+ <key>Unit</key>
871
+ <string>Minute</string>
872
+ <key>Value</key>
873
+ <dict>
874
+ <key>Aggrandizements</key>
875
+ <array>
876
+ <dict>
877
+ <key>CoercionItemClass</key>
878
+ <string>WFDictionaryContentItem</string>
879
+ <key>Type</key>
880
+ <string>WFCoercionVariableAggrandizement</string>
881
+ </dict>
882
+ <dict>
883
+ <key>DictionaryKey</key>
884
+ <string>Alert</string>
885
+ <key>Type</key>
886
+ <string>WFDictionaryValueVariableAggrandizement</string>
887
+ </dict>
888
+ </array>
889
+ <key>OutputName</key>
890
+ <string>Dictionary Value</string>
891
+ <key>OutputUUID</key>
892
+ <string>93674A63-A21C-4CE1-8C51-E46EBFBF0F7B</string>
893
+ <key>Type</key>
894
+ <string>ActionOutput</string>
895
+ </dict>
896
+ </dict>
897
+ <key>WFSerializationType</key>
898
+ <string>WFTimeOffsetValue</string>
899
+ </dict>
900
+ </dict>
901
+ </dict>
902
+ <dict>
903
+ <key>WFWorkflowActionIdentifier</key>
904
+ <string>is.workflow.actions.addnewevent</string>
905
+ <key>WFWorkflowActionParameters</key>
906
+ <dict>
907
+ <key>WFAlertCustomTime</key>
908
+ <dict>
909
+ <key>Value</key>
910
+ <dict>
911
+ <key>attachmentsByRange</key>
912
+ <dict>
913
+ <key>{0, 1}</key>
914
+ <dict>
915
+ <key>OutputName</key>
916
+ <string>Alert Time</string>
917
+ <key>OutputUUID</key>
918
+ <string>ADA8D7B9-3A38-45B9-99CD-E670D75D8549</string>
919
+ <key>Type</key>
920
+ <string>ActionOutput</string>
921
+ </dict>
922
+ </dict>
923
+ <key>string</key>
924
+ <string></string>
925
+ </dict>
926
+ <key>WFSerializationType</key>
927
+ <string>WFTextTokenString</string>
928
+ </dict>
929
+ <key>WFAlertTime</key>
930
+ <string>Custom</string>
931
+ <key>WFCalendarItemAllDay</key>
932
+ <dict>
933
+ <key>Value</key>
934
+ <dict>
935
+ <key>Aggrandizements</key>
936
+ <array>
937
+ <dict>
938
+ <key>CoercionItemClass</key>
939
+ <string>WFDictionaryContentItem</string>
940
+ <key>Type</key>
941
+ <string>WFCoercionVariableAggrandizement</string>
942
+ </dict>
943
+ <dict>
944
+ <key>DictionaryKey</key>
945
+ <string>All Day</string>
946
+ <key>Type</key>
947
+ <string>WFDictionaryValueVariableAggrandizement</string>
948
+ </dict>
949
+ </array>
950
+ <key>OutputName</key>
951
+ <string>Dictionary Value</string>
952
+ <key>OutputUUID</key>
953
+ <string>93674A63-A21C-4CE1-8C51-E46EBFBF0F7B</string>
954
+ <key>Type</key>
955
+ <string>ActionOutput</string>
956
+ </dict>
957
+ <key>WFSerializationType</key>
958
+ <string>WFTextTokenAttachment</string>
959
+ </dict>
960
+ <key>WFCalendarItemCalendar</key>
961
+ <dict>
962
+ <key>Value</key>
963
+ <dict>
964
+ <key>Aggrandizements</key>
965
+ <array>
966
+ <dict>
967
+ <key>CoercionItemClass</key>
968
+ <string>WFDictionaryContentItem</string>
969
+ <key>Type</key>
970
+ <string>WFCoercionVariableAggrandizement</string>
971
+ </dict>
972
+ <dict>
973
+ <key>DictionaryKey</key>
974
+ <string>Calendar</string>
975
+ <key>Type</key>
976
+ <string>WFDictionaryValueVariableAggrandizement</string>
977
+ </dict>
978
+ </array>
979
+ <key>OutputName</key>
980
+ <string>Dictionary Value</string>
981
+ <key>OutputUUID</key>
982
+ <string>93674A63-A21C-4CE1-8C51-E46EBFBF0F7B</string>
983
+ <key>Type</key>
984
+ <string>ActionOutput</string>
985
+ </dict>
986
+ <key>WFSerializationType</key>
987
+ <string>WFTextTokenAttachment</string>
988
+ </dict>
989
+ <key>WFCalendarItemDates</key>
990
+ <true/>
991
+ <key>WFCalendarItemEndDate</key>
992
+ <dict>
993
+ <key>Value</key>
994
+ <dict>
995
+ <key>attachmentsByRange</key>
996
+ <dict>
997
+ <key>{0, 1}</key>
998
+ <dict>
999
+ <key>OutputName</key>
1000
+ <string>End Date</string>
1001
+ <key>OutputUUID</key>
1002
+ <string>A965CA9E-3C44-499D-B389-C9AA7B5D96C1</string>
1003
+ <key>Type</key>
1004
+ <string>ActionOutput</string>
1005
+ </dict>
1006
+ </dict>
1007
+ <key>string</key>
1008
+ <string></string>
1009
+ </dict>
1010
+ <key>WFSerializationType</key>
1011
+ <string>WFTextTokenString</string>
1012
+ </dict>
1013
+ <key>WFCalendarItemLocation</key>
1014
+ <dict>
1015
+ <key>Value</key>
1016
+ <dict>
1017
+ <key>attachmentsByRange</key>
1018
+ <dict>
1019
+ <key>{0, 1}</key>
1020
+ <dict>
1021
+ <key>Aggrandizements</key>
1022
+ <array>
1023
+ <dict>
1024
+ <key>CoercionItemClass</key>
1025
+ <string>WFDictionaryContentItem</string>
1026
+ <key>Type</key>
1027
+ <string>WFCoercionVariableAggrandizement</string>
1028
+ </dict>
1029
+ <dict>
1030
+ <key>DictionaryKey</key>
1031
+ <string>Location</string>
1032
+ <key>Type</key>
1033
+ <string>WFDictionaryValueVariableAggrandizement</string>
1034
+ </dict>
1035
+ </array>
1036
+ <key>OutputName</key>
1037
+ <string>Dictionary Value</string>
1038
+ <key>OutputUUID</key>
1039
+ <string>93674A63-A21C-4CE1-8C51-E46EBFBF0F7B</string>
1040
+ <key>Type</key>
1041
+ <string>ActionOutput</string>
1042
+ </dict>
1043
+ </dict>
1044
+ <key>string</key>
1045
+ <string></string>
1046
+ </dict>
1047
+ <key>WFSerializationType</key>
1048
+ <string>WFTextTokenString</string>
1049
+ </dict>
1050
+ <key>WFCalendarItemNotes</key>
1051
+ <dict>
1052
+ <key>Value</key>
1053
+ <dict>
1054
+ <key>attachmentsByRange</key>
1055
+ <dict>
1056
+ <key>{0, 1}</key>
1057
+ <dict>
1058
+ <key>Aggrandizements</key>
1059
+ <array>
1060
+ <dict>
1061
+ <key>CoercionItemClass</key>
1062
+ <string>WFDictionaryContentItem</string>
1063
+ <key>Type</key>
1064
+ <string>WFCoercionVariableAggrandizement</string>
1065
+ </dict>
1066
+ <dict>
1067
+ <key>DictionaryKey</key>
1068
+ <string>Notes</string>
1069
+ <key>Type</key>
1070
+ <string>WFDictionaryValueVariableAggrandizement</string>
1071
+ </dict>
1072
+ </array>
1073
+ <key>OutputName</key>
1074
+ <string>Dictionary Value</string>
1075
+ <key>OutputUUID</key>
1076
+ <string>93674A63-A21C-4CE1-8C51-E46EBFBF0F7B</string>
1077
+ <key>Type</key>
1078
+ <string>ActionOutput</string>
1079
+ </dict>
1080
+ </dict>
1081
+ <key>string</key>
1082
+ <string></string>
1083
+ </dict>
1084
+ <key>WFSerializationType</key>
1085
+ <string>WFTextTokenString</string>
1086
+ </dict>
1087
+ <key>WFCalendarItemStartDate</key>
1088
+ <dict>
1089
+ <key>Value</key>
1090
+ <dict>
1091
+ <key>attachmentsByRange</key>
1092
+ <dict>
1093
+ <key>{0, 1}</key>
1094
+ <dict>
1095
+ <key>OutputName</key>
1096
+ <string>Start Date</string>
1097
+ <key>OutputUUID</key>
1098
+ <string>D6DA8AB9-FBB5-4AA3-934F-3520A9D4BFCF</string>
1099
+ <key>Type</key>
1100
+ <string>ActionOutput</string>
1101
+ </dict>
1102
+ </dict>
1103
+ <key>string</key>
1104
+ <string></string>
1105
+ </dict>
1106
+ <key>WFSerializationType</key>
1107
+ <string>WFTextTokenString</string>
1108
+ </dict>
1109
+ <key>WFCalendarItemTitle</key>
1110
+ <dict>
1111
+ <key>Value</key>
1112
+ <dict>
1113
+ <key>attachmentsByRange</key>
1114
+ <dict>
1115
+ <key>{0, 1}</key>
1116
+ <dict>
1117
+ <key>OutputName</key>
1118
+ <string>Final Event Name</string>
1119
+ <key>OutputUUID</key>
1120
+ <string>27CE6B0C-3D98-4D86-9A2B-46CE8F45F13F</string>
1121
+ <key>Type</key>
1122
+ <string>ActionOutput</string>
1123
+ </dict>
1124
+ </dict>
1125
+ <key>string</key>
1126
+ <string></string>
1127
+ </dict>
1128
+ <key>WFSerializationType</key>
1129
+ <string>WFTextTokenString</string>
1130
+ </dict>
1131
+ </dict>
1132
+ </dict>
1133
+ </array>
1134
+ <key>WFWorkflowClientRelease</key>
1135
+ <string>2.2</string>
1136
+ <key>WFWorkflowClientVersion</key>
1137
+ <string>770</string>
1138
+ <key>WFWorkflowIcon</key>
1139
+ <dict>
1140
+ <key>WFWorkflowIconGlyphNumber</key>
1141
+ <integer>59681</integer>
1142
+ <key>WFWorkflowIconImageData</key>
1143
+ <data>
1144
+ </data>
1145
+ <key>WFWorkflowIconStartColor</key>
1146
+ <integer>4282601983</integer>
1147
+ </dict>
1148
+ <key>WFWorkflowImportQuestions</key>
1149
+ <array/>
1150
+ <key>WFWorkflowInputContentItemClasses</key>
1151
+ <array>
1152
+ <string>WFAppStoreAppContentItem</string>
1153
+ <string>WFArticleContentItem</string>
1154
+ <string>WFContactContentItem</string>
1155
+ <string>WFDateContentItem</string>
1156
+ <string>WFEmailAddressContentItem</string>
1157
+ <string>WFGenericFileContentItem</string>
1158
+ <string>WFImageContentItem</string>
1159
+ <string>WFiTunesProductContentItem</string>
1160
+ <string>WFLocationContentItem</string>
1161
+ <string>WFDCMapsLinkContentItem</string>
1162
+ <string>WFAVAssetContentItem</string>
1163
+ <string>WFPDFContentItem</string>
1164
+ <string>WFPhoneNumberContentItem</string>
1165
+ <string>WFRichTextContentItem</string>
1166
+ <string>WFSafariWebPageContentItem</string>
1167
+ <string>WFStringContentItem</string>
1168
+ <string>WFURLContentItem</string>
1169
+ </array>
1170
+ <key>WFWorkflowMinimumClientVersion</key>
1171
+ <integer>411</integer>
1172
+ <key>WFWorkflowTypes</key>
1173
+ <array>
1174
+ <string>WatchKit</string>
1175
+ </array>
1176
+ </dict>
1177
+ </plist>