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,391 @@
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>Preview the contents of a folder stored inside iCloud Drive/Shortcuts. The shortcut lets you filter items by name; if no name is entered, all files contained in the folder are returned. You can choose to preview a selected file with Quick Look or share it with extensions.</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 name of a folder contained inside iCloud Drive/Shortcuts. If left empty, the shortcut will load all items from the root directory of iCloud Drive/Shortcuts.</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>UUID</key>
31
+ <string>45C103B5-0F09-4104-95C3-1E2E9DCE33ED</string>
32
+ <key>WFTextActionText</key>
33
+ <string></string>
34
+ </dict>
35
+ </dict>
36
+ <dict>
37
+ <key>WFWorkflowActionIdentifier</key>
38
+ <string>is.workflow.actions.ask</string>
39
+ <key>WFWorkflowActionParameters</key>
40
+ <dict>
41
+ <key>UUID</key>
42
+ <string>086EF866-ACE2-49AB-B6C2-49244F0F9EF5</string>
43
+ <key>WFAskActionPrompt</key>
44
+ <string>Type file name (leave empty to preview all)</string>
45
+ </dict>
46
+ </dict>
47
+ <dict>
48
+ <key>WFWorkflowActionIdentifier</key>
49
+ <string>is.workflow.actions.comment</string>
50
+ <key>WFWorkflowActionParameters</key>
51
+ <dict>
52
+ <key>WFCommentActionText</key>
53
+ <string>Enter the path of the folder you want to preview inside iCloud Drive/Shortcuts.</string>
54
+ </dict>
55
+ </dict>
56
+ <dict>
57
+ <key>WFWorkflowActionIdentifier</key>
58
+ <string>is.workflow.actions.documentpicker.open</string>
59
+ <key>WFWorkflowActionParameters</key>
60
+ <dict>
61
+ <key>UUID</key>
62
+ <string>0912E380-4461-440D-8B5A-1AC05E922F1B</string>
63
+ <key>WFGetFilePath</key>
64
+ <dict>
65
+ <key>Value</key>
66
+ <dict>
67
+ <key>attachmentsByRange</key>
68
+ <dict>
69
+ <key>{0, 1}</key>
70
+ <dict>
71
+ <key>OutputName</key>
72
+ <string>Text</string>
73
+ <key>OutputUUID</key>
74
+ <string>45C103B5-0F09-4104-95C3-1E2E9DCE33ED</string>
75
+ <key>Type</key>
76
+ <string>ActionOutput</string>
77
+ </dict>
78
+ </dict>
79
+ <key>string</key>
80
+ <string></string>
81
+ </dict>
82
+ <key>WFSerializationType</key>
83
+ <string>WFTextTokenString</string>
84
+ </dict>
85
+ <key>WFShowFilePicker</key>
86
+ <false/>
87
+ </dict>
88
+ </dict>
89
+ <dict>
90
+ <key>WFWorkflowActionIdentifier</key>
91
+ <string>is.workflow.actions.filter.files</string>
92
+ <key>WFWorkflowActionParameters</key>
93
+ <dict>
94
+ <key>UUID</key>
95
+ <string>9FF04546-6A93-4F61-958B-99F837536068</string>
96
+ <key>WFContentItemFilter</key>
97
+ <dict>
98
+ <key>Value</key>
99
+ <dict>
100
+ <key>WFActionParameterFilterPrefix</key>
101
+ <integer>1</integer>
102
+ <key>WFActionParameterFilterTemplates</key>
103
+ <array>
104
+ <dict>
105
+ <key>Operator</key>
106
+ <integer>99</integer>
107
+ <key>Property</key>
108
+ <string>Name</string>
109
+ <key>Removable</key>
110
+ <true/>
111
+ <key>Values</key>
112
+ <dict>
113
+ <key>String</key>
114
+ <dict>
115
+ <key>Value</key>
116
+ <dict>
117
+ <key>attachmentsByRange</key>
118
+ <dict>
119
+ <key>{0, 1}</key>
120
+ <dict>
121
+ <key>OutputName</key>
122
+ <string>Ask for Input</string>
123
+ <key>OutputUUID</key>
124
+ <string>086EF866-ACE2-49AB-B6C2-49244F0F9EF5</string>
125
+ <key>Type</key>
126
+ <string>ActionOutput</string>
127
+ </dict>
128
+ </dict>
129
+ <key>string</key>
130
+ <string></string>
131
+ </dict>
132
+ <key>WFSerializationType</key>
133
+ <string>WFTextTokenString</string>
134
+ </dict>
135
+ <key>Unit</key>
136
+ <integer>4</integer>
137
+ </dict>
138
+ </dict>
139
+ </array>
140
+ <key>WFContentPredicateBoundedDate</key>
141
+ <false/>
142
+ </dict>
143
+ <key>WFSerializationType</key>
144
+ <string>WFContentPredicateTableTemplate</string>
145
+ </dict>
146
+ <key>WFContentItemInputParameter</key>
147
+ <dict>
148
+ <key>Value</key>
149
+ <dict>
150
+ <key>OutputName</key>
151
+ <string>File</string>
152
+ <key>OutputUUID</key>
153
+ <string>0912E380-4461-440D-8B5A-1AC05E922F1B</string>
154
+ <key>Type</key>
155
+ <string>ActionOutput</string>
156
+ </dict>
157
+ <key>WFSerializationType</key>
158
+ <string>WFTextTokenAttachment</string>
159
+ </dict>
160
+ </dict>
161
+ </dict>
162
+ <dict>
163
+ <key>WFWorkflowActionIdentifier</key>
164
+ <string>is.workflow.actions.choosefromlist</string>
165
+ <key>WFWorkflowActionParameters</key>
166
+ <dict>
167
+ <key>UUID</key>
168
+ <string>A0245CD6-0390-4DCC-8682-559083E6A3C3</string>
169
+ <key>WFChooseFromListActionPrompt</key>
170
+ <dict>
171
+ <key>Value</key>
172
+ <dict>
173
+ <key>attachmentsByRange</key>
174
+ <dict>
175
+ <key>{0, 1}</key>
176
+ <dict>
177
+ <key>OutputName</key>
178
+ <string>Ask for Input</string>
179
+ <key>OutputUUID</key>
180
+ <string>086EF866-ACE2-49AB-B6C2-49244F0F9EF5</string>
181
+ <key>Type</key>
182
+ <string>ActionOutput</string>
183
+ </dict>
184
+ </dict>
185
+ <key>string</key>
186
+ <string></string>
187
+ </dict>
188
+ <key>WFSerializationType</key>
189
+ <string>WFTextTokenString</string>
190
+ </dict>
191
+ <key>WFInput</key>
192
+ <dict>
193
+ <key>Value</key>
194
+ <dict>
195
+ <key>OutputName</key>
196
+ <string>Files</string>
197
+ <key>OutputUUID</key>
198
+ <string>9FF04546-6A93-4F61-958B-99F837536068</string>
199
+ <key>Type</key>
200
+ <string>ActionOutput</string>
201
+ </dict>
202
+ <key>WFSerializationType</key>
203
+ <string>WFTextTokenAttachment</string>
204
+ </dict>
205
+ </dict>
206
+ </dict>
207
+ <dict>
208
+ <key>WFWorkflowActionIdentifier</key>
209
+ <string>is.workflow.actions.choosefrommenu</string>
210
+ <key>WFWorkflowActionParameters</key>
211
+ <dict>
212
+ <key>GroupingIdentifier</key>
213
+ <string>30ABA5B4-AFB5-415A-A044-B6A6A2C8C290</string>
214
+ <key>WFControlFlowMode</key>
215
+ <integer>0</integer>
216
+ <key>WFMenuItems</key>
217
+ <array>
218
+ <string>Preview</string>
219
+ <string>Open In...</string>
220
+ </array>
221
+ <key>WFMenuPrompt</key>
222
+ <dict>
223
+ <key>Value</key>
224
+ <dict>
225
+ <key>attachmentsByRange</key>
226
+ <dict>
227
+ <key>{0, 1}</key>
228
+ <dict>
229
+ <key>Aggrandizements</key>
230
+ <array>
231
+ <dict>
232
+ <key>PropertyName</key>
233
+ <string>Name</string>
234
+ <key>PropertyUserInfo</key>
235
+ <string>WFItemName</string>
236
+ <key>Type</key>
237
+ <string>WFPropertyVariableAggrandizement</string>
238
+ </dict>
239
+ </array>
240
+ <key>OutputName</key>
241
+ <string>Selected Item</string>
242
+ <key>OutputUUID</key>
243
+ <string>A0245CD6-0390-4DCC-8682-559083E6A3C3</string>
244
+ <key>Type</key>
245
+ <string>ActionOutput</string>
246
+ </dict>
247
+ </dict>
248
+ <key>string</key>
249
+ <string></string>
250
+ </dict>
251
+ <key>WFSerializationType</key>
252
+ <string>WFTextTokenString</string>
253
+ </dict>
254
+ </dict>
255
+ </dict>
256
+ <dict>
257
+ <key>WFWorkflowActionIdentifier</key>
258
+ <string>is.workflow.actions.choosefrommenu</string>
259
+ <key>WFWorkflowActionParameters</key>
260
+ <dict>
261
+ <key>GroupingIdentifier</key>
262
+ <string>30ABA5B4-AFB5-415A-A044-B6A6A2C8C290</string>
263
+ <key>WFControlFlowMode</key>
264
+ <integer>1</integer>
265
+ <key>WFMenuItemTitle</key>
266
+ <string>Preview</string>
267
+ </dict>
268
+ </dict>
269
+ <dict>
270
+ <key>WFWorkflowActionIdentifier</key>
271
+ <string>is.workflow.actions.previewdocument</string>
272
+ <key>WFWorkflowActionParameters</key>
273
+ <dict>
274
+ <key>WFInput</key>
275
+ <dict>
276
+ <key>Value</key>
277
+ <dict>
278
+ <key>OutputName</key>
279
+ <string>Selected Item</string>
280
+ <key>OutputUUID</key>
281
+ <string>A0245CD6-0390-4DCC-8682-559083E6A3C3</string>
282
+ <key>Type</key>
283
+ <string>ActionOutput</string>
284
+ </dict>
285
+ <key>WFSerializationType</key>
286
+ <string>WFTextTokenAttachment</string>
287
+ </dict>
288
+ </dict>
289
+ </dict>
290
+ <dict>
291
+ <key>WFWorkflowActionIdentifier</key>
292
+ <string>is.workflow.actions.choosefrommenu</string>
293
+ <key>WFWorkflowActionParameters</key>
294
+ <dict>
295
+ <key>GroupingIdentifier</key>
296
+ <string>30ABA5B4-AFB5-415A-A044-B6A6A2C8C290</string>
297
+ <key>WFControlFlowMode</key>
298
+ <integer>1</integer>
299
+ <key>WFMenuItemTitle</key>
300
+ <string>Open In...</string>
301
+ </dict>
302
+ </dict>
303
+ <dict>
304
+ <key>WFWorkflowActionIdentifier</key>
305
+ <string>is.workflow.actions.openin</string>
306
+ <key>WFWorkflowActionParameters</key>
307
+ <dict>
308
+ <key>WFInput</key>
309
+ <dict>
310
+ <key>Value</key>
311
+ <dict>
312
+ <key>OutputName</key>
313
+ <string>Selected Item</string>
314
+ <key>OutputUUID</key>
315
+ <string>A0245CD6-0390-4DCC-8682-559083E6A3C3</string>
316
+ <key>Type</key>
317
+ <string>ActionOutput</string>
318
+ </dict>
319
+ <key>WFSerializationType</key>
320
+ <string>WFTextTokenAttachment</string>
321
+ </dict>
322
+ </dict>
323
+ </dict>
324
+ <dict>
325
+ <key>WFWorkflowActionIdentifier</key>
326
+ <string>is.workflow.actions.choosefrommenu</string>
327
+ <key>WFWorkflowActionParameters</key>
328
+ <dict>
329
+ <key>GroupingIdentifier</key>
330
+ <string>30ABA5B4-AFB5-415A-A044-B6A6A2C8C290</string>
331
+ <key>WFControlFlowMode</key>
332
+ <integer>2</integer>
333
+ </dict>
334
+ </dict>
335
+ </array>
336
+ <key>WFWorkflowClientRelease</key>
337
+ <string>3.0</string>
338
+ <key>WFWorkflowClientVersion</key>
339
+ <string>1030.13</string>
340
+ <key>WFWorkflowIcon</key>
341
+ <dict>
342
+ <key>WFWorkflowIconGlyphNumber</key>
343
+ <integer>59772</integer>
344
+ <key>WFWorkflowIconStartColor</key>
345
+ <integer>463140863</integer>
346
+ </dict>
347
+ <key>WFWorkflowImportQuestions</key>
348
+ <array>
349
+ <dict>
350
+ <key>ActionIndex</key>
351
+ <integer>2</integer>
352
+ <key>Category</key>
353
+ <string>Parameter</string>
354
+ <key>DefaultValue</key>
355
+ <string></string>
356
+ <key>ParameterKey</key>
357
+ <string>WFTextActionText</string>
358
+ <key>Text</key>
359
+ <string>Enter the name of a folder contained inside iCloud Drive/Shortcuts.</string>
360
+ </dict>
361
+ </array>
362
+ <key>WFWorkflowInputContentItemClasses</key>
363
+ <array>
364
+ <string>WFAppStoreAppContentItem</string>
365
+ <string>WFArticleContentItem</string>
366
+ <string>WFContactContentItem</string>
367
+ <string>WFDateContentItem</string>
368
+ <string>WFEmailAddressContentItem</string>
369
+ <string>WFGenericFileContentItem</string>
370
+ <string>WFImageContentItem</string>
371
+ <string>WFiTunesProductContentItem</string>
372
+ <string>WFLocationContentItem</string>
373
+ <string>WFDCMapsLinkContentItem</string>
374
+ <string>WFAVAssetContentItem</string>
375
+ <string>WFPDFContentItem</string>
376
+ <string>WFPhoneNumberContentItem</string>
377
+ <string>WFRichTextContentItem</string>
378
+ <string>WFSafariWebPageContentItem</string>
379
+ <string>WFStringContentItem</string>
380
+ <string>WFURLContentItem</string>
381
+ </array>
382
+ <key>WFWorkflowMinimumClientVersion</key>
383
+ <integer>900</integer>
384
+ <key>WFWorkflowMinimumClientVersionString</key>
385
+ <string>900</string>
386
+ <key>WFWorkflowTypes</key>
387
+ <array>
388
+ <string>WatchKit</string>
389
+ </array>
390
+ </dict>
391
+ </plist>
@@ -0,0 +1,193 @@
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>Select a folder from the Files app and turn it into a .zip archive.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.file.select</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>CustomOutputName</key>
22
+ <string>Selected Folder</string>
23
+ <key>UUID</key>
24
+ <string>0B9D2721-91FC-47E0-A233-03472BC405E4</string>
25
+ <key>WFPickingMode</key>
26
+ <string>Folders</string>
27
+ </dict>
28
+ </dict>
29
+ <dict>
30
+ <key>WFWorkflowActionIdentifier</key>
31
+ <string>is.workflow.actions.properties.files</string>
32
+ <key>WFWorkflowActionParameters</key>
33
+ <dict>
34
+ <key>UUID</key>
35
+ <string>9756B610-D277-4E1C-8ADF-E046C1096C98</string>
36
+ <key>WFContentItemPropertyName</key>
37
+ <string>Name</string>
38
+ <key>WFInput</key>
39
+ <dict>
40
+ <key>Value</key>
41
+ <dict>
42
+ <key>OutputName</key>
43
+ <string>Selected Folder</string>
44
+ <key>OutputUUID</key>
45
+ <string>0B9D2721-91FC-47E0-A233-03472BC405E4</string>
46
+ <key>Type</key>
47
+ <string>ActionOutput</string>
48
+ </dict>
49
+ <key>WFSerializationType</key>
50
+ <string>WFTextTokenAttachment</string>
51
+ </dict>
52
+ </dict>
53
+ </dict>
54
+ <dict>
55
+ <key>WFWorkflowActionIdentifier</key>
56
+ <string>is.workflow.actions.file.getfoldercontents</string>
57
+ <key>WFWorkflowActionParameters</key>
58
+ <dict>
59
+ <key>Recursive</key>
60
+ <true/>
61
+ <key>UUID</key>
62
+ <string>A24F376B-34AC-4A3B-841C-79C3DC7ED892</string>
63
+ <key>WFFolder</key>
64
+ <dict>
65
+ <key>Value</key>
66
+ <dict>
67
+ <key>OutputName</key>
68
+ <string>Selected Folder</string>
69
+ <key>OutputUUID</key>
70
+ <string>0B9D2721-91FC-47E0-A233-03472BC405E4</string>
71
+ <key>Type</key>
72
+ <string>ActionOutput</string>
73
+ </dict>
74
+ <key>WFSerializationType</key>
75
+ <string>WFTextTokenAttachment</string>
76
+ </dict>
77
+ </dict>
78
+ </dict>
79
+ <dict>
80
+ <key>WFWorkflowActionIdentifier</key>
81
+ <string>is.workflow.actions.makezip</string>
82
+ <key>WFWorkflowActionParameters</key>
83
+ <dict>
84
+ <key>UUID</key>
85
+ <string>9DB8D92A-8869-4CC8-8649-B5111A62730B</string>
86
+ <key>WFInput</key>
87
+ <dict>
88
+ <key>Value</key>
89
+ <dict>
90
+ <key>OutputName</key>
91
+ <string>Contents of Folder</string>
92
+ <key>OutputUUID</key>
93
+ <string>A24F376B-34AC-4A3B-841C-79C3DC7ED892</string>
94
+ <key>Type</key>
95
+ <string>ActionOutput</string>
96
+ </dict>
97
+ <key>WFSerializationType</key>
98
+ <string>WFTextTokenAttachment</string>
99
+ </dict>
100
+ <key>WFZIPName</key>
101
+ <dict>
102
+ <key>Value</key>
103
+ <dict>
104
+ <key>attachmentsByRange</key>
105
+ <dict>
106
+ <key>{0, 1}</key>
107
+ <dict>
108
+ <key>OutputName</key>
109
+ <string>Name</string>
110
+ <key>OutputUUID</key>
111
+ <string>9756B610-D277-4E1C-8ADF-E046C1096C98</string>
112
+ <key>Type</key>
113
+ <string>ActionOutput</string>
114
+ </dict>
115
+ </dict>
116
+ <key>string</key>
117
+ <string></string>
118
+ </dict>
119
+ <key>WFSerializationType</key>
120
+ <string>WFTextTokenString</string>
121
+ </dict>
122
+ </dict>
123
+ </dict>
124
+ <dict>
125
+ <key>WFWorkflowActionIdentifier</key>
126
+ <string>is.workflow.actions.share</string>
127
+ <key>WFWorkflowActionParameters</key>
128
+ <dict>
129
+ <key>UUID</key>
130
+ <string>58D2A043-D9A1-416D-B475-6370DB78D07A</string>
131
+ <key>WFInput</key>
132
+ <dict>
133
+ <key>Value</key>
134
+ <dict>
135
+ <key>OutputName</key>
136
+ <string>Archive</string>
137
+ <key>OutputUUID</key>
138
+ <string>9DB8D92A-8869-4CC8-8649-B5111A62730B</string>
139
+ <key>Type</key>
140
+ <string>ActionOutput</string>
141
+ </dict>
142
+ <key>WFSerializationType</key>
143
+ <string>WFTextTokenAttachment</string>
144
+ </dict>
145
+ </dict>
146
+ </dict>
147
+ </array>
148
+ <key>WFWorkflowClientVersion</key>
149
+ <string>1137.4</string>
150
+ <key>WFWorkflowHasOutputFallback</key>
151
+ <false/>
152
+ <key>WFWorkflowHasShortcutInputVariables</key>
153
+ <false/>
154
+ <key>WFWorkflowIcon</key>
155
+ <dict>
156
+ <key>WFWorkflowIconGlyphNumber</key>
157
+ <integer>59830</integer>
158
+ <key>WFWorkflowIconStartColor</key>
159
+ <integer>463140863</integer>
160
+ </dict>
161
+ <key>WFWorkflowImportQuestions</key>
162
+ <array/>
163
+ <key>WFWorkflowInputContentItemClasses</key>
164
+ <array>
165
+ <string>WFAppStoreAppContentItem</string>
166
+ <string>WFArticleContentItem</string>
167
+ <string>WFContactContentItem</string>
168
+ <string>WFDateContentItem</string>
169
+ <string>WFEmailAddressContentItem</string>
170
+ <string>WFFolderContentItem</string>
171
+ <string>WFGenericFileContentItem</string>
172
+ <string>WFImageContentItem</string>
173
+ <string>WFiTunesProductContentItem</string>
174
+ <string>WFLocationContentItem</string>
175
+ <string>WFDCMapsLinkContentItem</string>
176
+ <string>WFAVAssetContentItem</string>
177
+ <string>WFPDFContentItem</string>
178
+ <string>WFPhoneNumberContentItem</string>
179
+ <string>WFRichTextContentItem</string>
180
+ <string>WFSafariWebPageContentItem</string>
181
+ <string>WFStringContentItem</string>
182
+ <string>WFURLContentItem</string>
183
+ </array>
184
+ <key>WFWorkflowMinimumClientVersion</key>
185
+ <integer>900</integer>
186
+ <key>WFWorkflowMinimumClientVersionString</key>
187
+ <string>900</string>
188
+ <key>WFWorkflowOutputContentItemClasses</key>
189
+ <array/>
190
+ <key>WFWorkflowTypes</key>
191
+ <array/>
192
+ </dict>
193
+ </plist>
@@ -0,0 +1,111 @@
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>Pick multiple files from Dropbox and share them as a single .zip archive.</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>Created for a Shortcuts reference archive.
23
+
24
+ https://www.macstories.net/shortcuts</string>
25
+ </dict>
26
+ </dict>
27
+ <dict>
28
+ <key>WFWorkflowActionIdentifier</key>
29
+ <string>is.workflow.actions.documentpicker.open</string>
30
+ <key>WFWorkflowActionParameters</key>
31
+ <dict>
32
+ <key>SelectMultiple</key>
33
+ <true/>
34
+ <key>WFFileStorageService</key>
35
+ <string>Dropbox</string>
36
+ </dict>
37
+ </dict>
38
+ <dict>
39
+ <key>WFWorkflowActionIdentifier</key>
40
+ <string>is.workflow.actions.makezip</string>
41
+ <key>WFWorkflowActionParameters</key>
42
+ <dict>
43
+ <key>WFZIPName</key>
44
+ <dict>
45
+ <key>Value</key>
46
+ <dict>
47
+ <key>attachmentsByRange</key>
48
+ <dict>
49
+ <key>{0, 1}</key>
50
+ <dict>
51
+ <key>Type</key>
52
+ <string>Ask</string>
53
+ </dict>
54
+ </dict>
55
+ <key>string</key>
56
+ <string></string>
57
+ </dict>
58
+ <key>WFSerializationType</key>
59
+ <string>WFTextTokenString</string>
60
+ </dict>
61
+ </dict>
62
+ </dict>
63
+ <dict>
64
+ <key>WFWorkflowActionIdentifier</key>
65
+ <string>is.workflow.actions.openin</string>
66
+ <key>WFWorkflowActionParameters</key>
67
+ <dict/>
68
+ </dict>
69
+ </array>
70
+ <key>WFWorkflowClientRelease</key>
71
+ <string>2.1.1</string>
72
+ <key>WFWorkflowClientVersion</key>
73
+ <string>736</string>
74
+ <key>WFWorkflowIcon</key>
75
+ <dict>
76
+ <key>WFWorkflowIconGlyphNumber</key>
77
+ <integer>59831</integer>
78
+ <key>WFWorkflowIconImageData</key>
79
+ <data>
80
+ </data>
81
+ <key>WFWorkflowIconStartColor</key>
82
+ <integer>2071128575</integer>
83
+ </dict>
84
+ <key>WFWorkflowImportQuestions</key>
85
+ <array/>
86
+ <key>WFWorkflowInputContentItemClasses</key>
87
+ <array>
88
+ <string>WFAppStoreAppContentItem</string>
89
+ <string>WFArticleContentItem</string>
90
+ <string>WFContactContentItem</string>
91
+ <string>WFDateContentItem</string>
92
+ <string>WFEmailAddressContentItem</string>
93
+ <string>WFGenericFileContentItem</string>
94
+ <string>WFImageContentItem</string>
95
+ <string>WFiTunesProductContentItem</string>
96
+ <string>WFLocationContentItem</string>
97
+ <string>WFDCMapsLinkContentItem</string>
98
+ <string>WFAVAssetContentItem</string>
99
+ <string>WFPDFContentItem</string>
100
+ <string>WFPhoneNumberContentItem</string>
101
+ <string>WFRichTextContentItem</string>
102
+ <string>WFSafariWebPageContentItem</string>
103
+ <string>WFStringContentItem</string>
104
+ <string>WFURLContentItem</string>
105
+ </array>
106
+ <key>WFWorkflowTypes</key>
107
+ <array>
108
+ <string>WatchKit</string>
109
+ </array>
110
+ </dict>
111
+ </plist>