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,570 @@
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>Read an App Store story (from the 'Today' tab) as a text-only webpage, cleaned up by Safari Reader. To run the shortcut, copy a link to an editorial story from the App Store first.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.detect.link</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>UUID</key>
22
+ <string>1C443487-2DC8-43DC-98D3-247D9E86C116</string>
23
+ <key>WFInput</key>
24
+ <dict>
25
+ <key>Value</key>
26
+ <dict>
27
+ <key>attachmentsByRange</key>
28
+ <dict>
29
+ <key>{0, 1}</key>
30
+ <dict>
31
+ <key>Type</key>
32
+ <string>Clipboard</string>
33
+ </dict>
34
+ </dict>
35
+ <key>string</key>
36
+ <string></string>
37
+ </dict>
38
+ <key>WFSerializationType</key>
39
+ <string>WFTextTokenString</string>
40
+ </dict>
41
+ </dict>
42
+ </dict>
43
+ <dict>
44
+ <key>WFWorkflowActionIdentifier</key>
45
+ <string>is.workflow.actions.conditional</string>
46
+ <key>WFWorkflowActionParameters</key>
47
+ <dict>
48
+ <key>GroupingIdentifier</key>
49
+ <string>42E16696-BDE3-4EED-A965-EDEBF3F45CD1</string>
50
+ <key>WFCondition</key>
51
+ <integer>101</integer>
52
+ <key>WFControlFlowMode</key>
53
+ <integer>0</integer>
54
+ <key>WFInput</key>
55
+ <dict>
56
+ <key>Type</key>
57
+ <string>Variable</string>
58
+ <key>Variable</key>
59
+ <dict>
60
+ <key>Value</key>
61
+ <dict>
62
+ <key>OutputName</key>
63
+ <string>URLs</string>
64
+ <key>OutputUUID</key>
65
+ <string>1C443487-2DC8-43DC-98D3-247D9E86C116</string>
66
+ <key>Type</key>
67
+ <string>ActionOutput</string>
68
+ </dict>
69
+ <key>WFSerializationType</key>
70
+ <string>WFTextTokenAttachment</string>
71
+ </dict>
72
+ </dict>
73
+ </dict>
74
+ </dict>
75
+ <dict>
76
+ <key>WFWorkflowActionIdentifier</key>
77
+ <string>is.workflow.actions.alert</string>
78
+ <key>WFWorkflowActionParameters</key>
79
+ <dict>
80
+ <key>WFAlertActionMessage</key>
81
+ <string>You didn't copy a URL.
82
+
83
+ Before running the shortcut again, copy a link to an editorial story from the App Store first.</string>
84
+ <key>WFAlertActionTitle</key>
85
+ <string>Not a URL!</string>
86
+ </dict>
87
+ </dict>
88
+ <dict>
89
+ <key>WFWorkflowActionIdentifier</key>
90
+ <string>is.workflow.actions.conditional</string>
91
+ <key>WFWorkflowActionParameters</key>
92
+ <dict>
93
+ <key>GroupingIdentifier</key>
94
+ <string>42E16696-BDE3-4EED-A965-EDEBF3F45CD1</string>
95
+ <key>WFControlFlowMode</key>
96
+ <integer>1</integer>
97
+ </dict>
98
+ </dict>
99
+ <dict>
100
+ <key>WFWorkflowActionIdentifier</key>
101
+ <string>is.workflow.actions.comment</string>
102
+ <key>WFWorkflowActionParameters</key>
103
+ <dict>
104
+ <key>WFCommentActionText</key>
105
+ <string>One line break</string>
106
+ </dict>
107
+ </dict>
108
+ <dict>
109
+ <key>WFWorkflowActionIdentifier</key>
110
+ <string>is.workflow.actions.gettext</string>
111
+ <key>WFWorkflowActionParameters</key>
112
+ <dict>
113
+ <key>UUID</key>
114
+ <string>49F76836-97FF-4AF1-A95E-953B86414805</string>
115
+ <key>WFTextActionText</key>
116
+ <string>
117
+ </string>
118
+ </dict>
119
+ </dict>
120
+ <dict>
121
+ <key>WFWorkflowActionIdentifier</key>
122
+ <string>is.workflow.actions.comment</string>
123
+ <key>WFWorkflowActionParameters</key>
124
+ <dict>
125
+ <key>WFCommentActionText</key>
126
+ <string>Two linebreaks, use as replacement</string>
127
+ </dict>
128
+ </dict>
129
+ <dict>
130
+ <key>WFWorkflowActionIdentifier</key>
131
+ <string>is.workflow.actions.gettext</string>
132
+ <key>WFWorkflowActionParameters</key>
133
+ <dict>
134
+ <key>UUID</key>
135
+ <string>71099B38-588A-4630-B9FD-1A2B50AABCD0</string>
136
+ <key>WFTextActionText</key>
137
+ <string>
138
+
139
+ </string>
140
+ </dict>
141
+ </dict>
142
+ <dict>
143
+ <key>WFWorkflowActionIdentifier</key>
144
+ <string>is.workflow.actions.getarticle</string>
145
+ <key>WFWorkflowActionParameters</key>
146
+ <dict>
147
+ <key>UUID</key>
148
+ <string>3E336E80-244F-41A0-9CF7-59BEEEE0AE91</string>
149
+ <key>WFWebPage</key>
150
+ <dict>
151
+ <key>Value</key>
152
+ <dict>
153
+ <key>attachmentsByRange</key>
154
+ <dict>
155
+ <key>{0, 1}</key>
156
+ <dict>
157
+ <key>OutputName</key>
158
+ <string>URLs</string>
159
+ <key>OutputUUID</key>
160
+ <string>1C443487-2DC8-43DC-98D3-247D9E86C116</string>
161
+ <key>Type</key>
162
+ <string>ActionOutput</string>
163
+ </dict>
164
+ </dict>
165
+ <key>string</key>
166
+ <string></string>
167
+ </dict>
168
+ <key>WFSerializationType</key>
169
+ <string>WFTextTokenString</string>
170
+ </dict>
171
+ </dict>
172
+ </dict>
173
+ <dict>
174
+ <key>WFWorkflowActionIdentifier</key>
175
+ <string>is.workflow.actions.gettext</string>
176
+ <key>WFWorkflowActionParameters</key>
177
+ <dict>
178
+ <key>UUID</key>
179
+ <string>E8364295-C8F9-4397-8781-4F591809E326</string>
180
+ <key>WFTextActionText</key>
181
+ <dict>
182
+ <key>Value</key>
183
+ <dict>
184
+ <key>attachmentsByRange</key>
185
+ <dict>
186
+ <key>{0, 1}</key>
187
+ <dict>
188
+ <key>Aggrandizements</key>
189
+ <array>
190
+ <dict>
191
+ <key>PropertyName</key>
192
+ <string>Body</string>
193
+ <key>Type</key>
194
+ <string>WFPropertyVariableAggrandizement</string>
195
+ </dict>
196
+ </array>
197
+ <key>OutputName</key>
198
+ <string>Article</string>
199
+ <key>OutputUUID</key>
200
+ <string>3E336E80-244F-41A0-9CF7-59BEEEE0AE91</string>
201
+ <key>Type</key>
202
+ <string>ActionOutput</string>
203
+ </dict>
204
+ </dict>
205
+ <key>string</key>
206
+ <string></string>
207
+ </dict>
208
+ <key>WFSerializationType</key>
209
+ <string>WFTextTokenString</string>
210
+ </dict>
211
+ </dict>
212
+ </dict>
213
+ <dict>
214
+ <key>WFWorkflowActionIdentifier</key>
215
+ <string>is.workflow.actions.text.replace</string>
216
+ <key>WFWorkflowActionParameters</key>
217
+ <dict>
218
+ <key>UUID</key>
219
+ <string>7403AC5D-EF48-4899-B0AA-AEEE2244C9A8</string>
220
+ <key>WFInput</key>
221
+ <dict>
222
+ <key>Value</key>
223
+ <dict>
224
+ <key>attachmentsByRange</key>
225
+ <dict>
226
+ <key>{0, 1}</key>
227
+ <dict>
228
+ <key>OutputName</key>
229
+ <string>Text</string>
230
+ <key>OutputUUID</key>
231
+ <string>E8364295-C8F9-4397-8781-4F591809E326</string>
232
+ <key>Type</key>
233
+ <string>ActionOutput</string>
234
+ </dict>
235
+ </dict>
236
+ <key>string</key>
237
+ <string></string>
238
+ </dict>
239
+ <key>WFSerializationType</key>
240
+ <string>WFTextTokenString</string>
241
+ </dict>
242
+ <key>WFReplaceTextCaseSensitive</key>
243
+ <false/>
244
+ <key>WFReplaceTextFind</key>
245
+ <dict>
246
+ <key>Value</key>
247
+ <dict>
248
+ <key>attachmentsByRange</key>
249
+ <dict>
250
+ <key>{0, 1}</key>
251
+ <dict>
252
+ <key>OutputName</key>
253
+ <string>Text</string>
254
+ <key>OutputUUID</key>
255
+ <string>49F76836-97FF-4AF1-A95E-953B86414805</string>
256
+ <key>Type</key>
257
+ <string>ActionOutput</string>
258
+ </dict>
259
+ </dict>
260
+ <key>string</key>
261
+ <string></string>
262
+ </dict>
263
+ <key>WFSerializationType</key>
264
+ <string>WFTextTokenString</string>
265
+ </dict>
266
+ <key>WFReplaceTextRegularExpression</key>
267
+ <true/>
268
+ <key>WFReplaceTextReplace</key>
269
+ <dict>
270
+ <key>Value</key>
271
+ <dict>
272
+ <key>attachmentsByRange</key>
273
+ <dict>
274
+ <key>{0, 1}</key>
275
+ <dict>
276
+ <key>OutputName</key>
277
+ <string>Text</string>
278
+ <key>OutputUUID</key>
279
+ <string>71099B38-588A-4630-B9FD-1A2B50AABCD0</string>
280
+ <key>Type</key>
281
+ <string>ActionOutput</string>
282
+ </dict>
283
+ </dict>
284
+ <key>string</key>
285
+ <string></string>
286
+ </dict>
287
+ <key>WFSerializationType</key>
288
+ <string>WFTextTokenString</string>
289
+ </dict>
290
+ </dict>
291
+ </dict>
292
+ <dict>
293
+ <key>WFWorkflowActionIdentifier</key>
294
+ <string>is.workflow.actions.gettext</string>
295
+ <key>WFWorkflowActionParameters</key>
296
+ <dict>
297
+ <key>UUID</key>
298
+ <string>59685018-CE58-4F81-A48F-57FF18000B49</string>
299
+ <key>WFTextActionText</key>
300
+ <dict>
301
+ <key>Value</key>
302
+ <dict>
303
+ <key>attachmentsByRange</key>
304
+ <dict>
305
+ <key>{2, 1}</key>
306
+ <dict>
307
+ <key>Aggrandizements</key>
308
+ <array>
309
+ <dict>
310
+ <key>PropertyName</key>
311
+ <string>Title</string>
312
+ <key>Type</key>
313
+ <string>WFPropertyVariableAggrandizement</string>
314
+ </dict>
315
+ </array>
316
+ <key>OutputName</key>
317
+ <string>Article</string>
318
+ <key>OutputUUID</key>
319
+ <string>3E336E80-244F-41A0-9CF7-59BEEEE0AE91</string>
320
+ <key>Type</key>
321
+ <string>ActionOutput</string>
322
+ </dict>
323
+ <key>{5, 1}</key>
324
+ <dict>
325
+ <key>OutputName</key>
326
+ <string>Updated Text</string>
327
+ <key>OutputUUID</key>
328
+ <string>7403AC5D-EF48-4899-B0AA-AEEE2244C9A8</string>
329
+ <key>Type</key>
330
+ <string>ActionOutput</string>
331
+ </dict>
332
+ </dict>
333
+ <key>string</key>
334
+ <string># 
335
+
336
+ </string>
337
+ </dict>
338
+ <key>WFSerializationType</key>
339
+ <string>WFTextTokenString</string>
340
+ </dict>
341
+ </dict>
342
+ </dict>
343
+ <dict>
344
+ <key>WFWorkflowActionIdentifier</key>
345
+ <string>is.workflow.actions.getrichtextfrommarkdown</string>
346
+ <key>WFWorkflowActionParameters</key>
347
+ <dict>
348
+ <key>UUID</key>
349
+ <string>401B3B57-07E8-439D-89DE-B0BCA68FC552</string>
350
+ <key>WFInput</key>
351
+ <dict>
352
+ <key>Value</key>
353
+ <dict>
354
+ <key>OutputName</key>
355
+ <string>Text</string>
356
+ <key>OutputUUID</key>
357
+ <string>59685018-CE58-4F81-A48F-57FF18000B49</string>
358
+ <key>Type</key>
359
+ <string>ActionOutput</string>
360
+ </dict>
361
+ <key>WFSerializationType</key>
362
+ <string>WFTextTokenAttachment</string>
363
+ </dict>
364
+ </dict>
365
+ </dict>
366
+ <dict>
367
+ <key>WFWorkflowActionIdentifier</key>
368
+ <string>is.workflow.actions.gethtmlfromrichtext</string>
369
+ <key>WFWorkflowActionParameters</key>
370
+ <dict>
371
+ <key>UUID</key>
372
+ <string>8041147F-70AD-46F2-A33B-B14F5533D128</string>
373
+ <key>WFInput</key>
374
+ <dict>
375
+ <key>Value</key>
376
+ <dict>
377
+ <key>OutputName</key>
378
+ <string>Rich Text from Markdown</string>
379
+ <key>OutputUUID</key>
380
+ <string>401B3B57-07E8-439D-89DE-B0BCA68FC552</string>
381
+ <key>Type</key>
382
+ <string>ActionOutput</string>
383
+ </dict>
384
+ <key>WFSerializationType</key>
385
+ <string>WFTextTokenAttachment</string>
386
+ </dict>
387
+ </dict>
388
+ </dict>
389
+ <dict>
390
+ <key>WFWorkflowActionIdentifier</key>
391
+ <string>is.workflow.actions.gettext</string>
392
+ <key>WFWorkflowActionParameters</key>
393
+ <dict>
394
+ <key>UUID</key>
395
+ <string>84BB13E4-205E-47CC-81B9-71A4A87089A0</string>
396
+ <key>WFTextActionText</key>
397
+ <dict>
398
+ <key>Value</key>
399
+ <dict>
400
+ <key>attachmentsByRange</key>
401
+ <dict>
402
+ <key>{1172, 1}</key>
403
+ <dict>
404
+ <key>OutputName</key>
405
+ <string>HTML from Rich Text</string>
406
+ <key>OutputUUID</key>
407
+ <string>8041147F-70AD-46F2-A33B-B14F5533D128</string>
408
+ <key>Type</key>
409
+ <string>ActionOutput</string>
410
+ </dict>
411
+ </dict>
412
+ <key>string</key>
413
+ <string>&lt;head&gt;
414
+ &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt;
415
+ &lt;meta name="viewport" content="initial-scale=1.0, viewport-fit=cover"&gt;
416
+ &lt;meta name="apple-mobile-web-app-capable" content="yes"&gt;
417
+ &lt;meta name="apple-mobile-web-app-status-bar-style" content="black"&gt;
418
+ &lt;meta charset="utf-8"&gt;
419
+ &lt;style&gt;
420
+ body {
421
+ background-size: cover;
422
+ padding-left: env(safe-area-inset-left);
423
+ padding-right: env(safe-area-inset-right);
424
+ padding-top: env(safe-area-inset-top);
425
+ }
426
+ h1{
427
+ font-family: -apple-system;
428
+ color: black;
429
+ font-weight: 800;
430
+ font-size: 2em;
431
+ }
432
+ h2 {
433
+ font-family: -apple-system;
434
+ font-weight: 800;
435
+ color: black;
436
+ font-size: 2em;
437
+ }
438
+ h3,h4 {
439
+ font-family: -apple-system;
440
+ font-weight: 800;
441
+ color: black;
442
+ font-size: 1.5em;
443
+ }
444
+ p, ul{
445
+ font-family: -apple-system;
446
+ font-weight: 400;
447
+ color: black;
448
+ font-size: 1em;
449
+ }
450
+ blockquote {
451
+ font-family: -apple-system;
452
+ font-weight: 300;
453
+ color: black;
454
+ font-size: 1em;
455
+ font-style: italic;
456
+ }
457
+ ol{
458
+ font-family: -apple-system;
459
+ font-weight: 400;
460
+ color: black;
461
+ font-size: 1em;
462
+ margin: 15px;
463
+ }
464
+ a {
465
+ color: navy;
466
+ }
467
+ }
468
+ &lt;/style&gt;
469
+ &lt;title&gt;Story Preview&lt;/title&gt;
470
+
471
+ &lt;/head&gt;</string>
472
+ </dict>
473
+ <key>WFSerializationType</key>
474
+ <string>WFTextTokenString</string>
475
+ </dict>
476
+ </dict>
477
+ </dict>
478
+ <dict>
479
+ <key>WFWorkflowActionIdentifier</key>
480
+ <string>is.workflow.actions.setitemname</string>
481
+ <key>WFWorkflowActionParameters</key>
482
+ <dict>
483
+ <key>UUID</key>
484
+ <string>95C6ABA9-160A-49DE-B0C7-7BE1BABF50BD</string>
485
+ <key>WFInput</key>
486
+ <dict>
487
+ <key>Value</key>
488
+ <dict>
489
+ <key>OutputName</key>
490
+ <string>Text</string>
491
+ <key>OutputUUID</key>
492
+ <string>84BB13E4-205E-47CC-81B9-71A4A87089A0</string>
493
+ <key>Type</key>
494
+ <string>ActionOutput</string>
495
+ </dict>
496
+ <key>WFSerializationType</key>
497
+ <string>WFTextTokenAttachment</string>
498
+ </dict>
499
+ <key>WFName</key>
500
+ <string>Story.html</string>
501
+ </dict>
502
+ </dict>
503
+ <dict>
504
+ <key>WFWorkflowActionIdentifier</key>
505
+ <string>is.workflow.actions.showwebpage</string>
506
+ <key>WFWorkflowActionParameters</key>
507
+ <dict>
508
+ <key>WFURL</key>
509
+ <dict>
510
+ <key>Value</key>
511
+ <dict>
512
+ <key>attachmentsByRange</key>
513
+ <dict>
514
+ <key>{0, 1}</key>
515
+ <dict>
516
+ <key>OutputName</key>
517
+ <string>Renamed Item</string>
518
+ <key>OutputUUID</key>
519
+ <string>95C6ABA9-160A-49DE-B0C7-7BE1BABF50BD</string>
520
+ <key>Type</key>
521
+ <string>ActionOutput</string>
522
+ </dict>
523
+ </dict>
524
+ <key>string</key>
525
+ <string></string>
526
+ </dict>
527
+ <key>WFSerializationType</key>
528
+ <string>WFTextTokenString</string>
529
+ </dict>
530
+ </dict>
531
+ </dict>
532
+ <dict>
533
+ <key>WFWorkflowActionIdentifier</key>
534
+ <string>is.workflow.actions.conditional</string>
535
+ <key>WFWorkflowActionParameters</key>
536
+ <dict>
537
+ <key>GroupingIdentifier</key>
538
+ <string>42E16696-BDE3-4EED-A965-EDEBF3F45CD1</string>
539
+ <key>UUID</key>
540
+ <string>F12E0494-9A63-4605-BF8C-3265D236EC62</string>
541
+ <key>WFControlFlowMode</key>
542
+ <integer>2</integer>
543
+ </dict>
544
+ </dict>
545
+ </array>
546
+ <key>WFWorkflowClientRelease</key>
547
+ <string>3.0</string>
548
+ <key>WFWorkflowClientVersion</key>
549
+ <string>1030.13</string>
550
+ <key>WFWorkflowIcon</key>
551
+ <dict>
552
+ <key>WFWorkflowIconGlyphNumber</key>
553
+ <integer>59727</integer>
554
+ <key>WFWorkflowIconStartColor</key>
555
+ <integer>1440408063</integer>
556
+ </dict>
557
+ <key>WFWorkflowImportQuestions</key>
558
+ <array/>
559
+ <key>WFWorkflowInputContentItemClasses</key>
560
+ <array/>
561
+ <key>WFWorkflowMinimumClientVersion</key>
562
+ <integer>900</integer>
563
+ <key>WFWorkflowMinimumClientVersionString</key>
564
+ <string>900</string>
565
+ <key>WFWorkflowTypes</key>
566
+ <array>
567
+ <string>WatchKit</string>
568
+ </array>
569
+ </dict>
570
+ </plist>