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,4085 @@
1
+ {
2
+ "controlFlowLookup": {
3
+ "elif": {
4
+ "literalFieldsByConditionFamily": {
5
+ "between_upper_bound": "WFAnotherNumber",
6
+ "number": "WFNumberValue",
7
+ "string": "WFConditionalActionString"
8
+ },
9
+ "notes": "Otherwise If is a mode-1 intermediary conditional with condition fields, not a separate ToolKit action.",
10
+ "requiredFields": [
11
+ "GroupingIdentifier",
12
+ "WFControlFlowMode",
13
+ "WFInput",
14
+ "WFCondition"
15
+ ],
16
+ "requiresConditionFields": true,
17
+ "wfControlFlowMode": 1,
18
+ "wfIdentifier": "is.workflow.actions.conditional"
19
+ },
20
+ "else": {
21
+ "notes": "Plain Otherwise is mode 1 without WFInput/WFCondition/literal fields.",
22
+ "requiredFields": [
23
+ "GroupingIdentifier",
24
+ "WFControlFlowMode"
25
+ ],
26
+ "requiresConditionFields": false,
27
+ "wfControlFlowMode": 1,
28
+ "wfIdentifier": "is.workflow.actions.conditional"
29
+ },
30
+ "end_if": {
31
+ "notes": "End If closes the grouped conditional block.",
32
+ "requiredFields": [
33
+ "GroupingIdentifier",
34
+ "WFControlFlowMode"
35
+ ],
36
+ "requiresConditionFields": false,
37
+ "wfControlFlowMode": 2,
38
+ "wfIdentifier": "is.workflow.actions.conditional"
39
+ },
40
+ "if": {
41
+ "literalFieldsByConditionFamily": {
42
+ "between_upper_bound": "WFAnotherNumber",
43
+ "number": "WFNumberValue",
44
+ "string": "WFConditionalActionString"
45
+ },
46
+ "notes": "Opening conditional action. Every observed string/number condition carries explicit WFInput.",
47
+ "requiredFields": [
48
+ "GroupingIdentifier",
49
+ "WFControlFlowMode",
50
+ "WFInput",
51
+ "WFCondition"
52
+ ],
53
+ "requiresConditionFields": true,
54
+ "wfControlFlowMode": 0,
55
+ "wfIdentifier": "is.workflow.actions.conditional"
56
+ }
57
+ },
58
+ "minimumMacOSMajor": 27,
59
+ "pythonLookup": {
60
+ "com_apple_measure_convert_measurement": {
61
+ "name": "Convert Measurement",
62
+ "parameterByKeyword": {},
63
+ "status": "toolrenderer_embedded_toolkit_metadata",
64
+ "toolType": "action",
65
+ "wfIdentifier": "is.workflow.actions.measurement.convert"
66
+ },
67
+ "com_apple_script_editor_2_run_apple_script": {
68
+ "name": "Run AppleScript",
69
+ "parameterByKeyword": {},
70
+ "status": "toolrenderer_embedded_toolkit_metadata",
71
+ "toolType": "action",
72
+ "wfIdentifier": "is.workflow.actions.runapplescript"
73
+ },
74
+ "com_apple_script_editor_2_run_java_script_for_mac_automation": {
75
+ "name": "Run JavaScript for Mac Automation",
76
+ "parameterByKeyword": {},
77
+ "status": "toolrenderer_embedded_toolkit_metadata",
78
+ "toolType": "action",
79
+ "wfIdentifier": "is.workflow.actions.runjavascriptforautomation"
80
+ },
81
+ "com_apple_shortcuts_add_item_to_list": {
82
+ "name": "Add Item to List",
83
+ "parameterByKeyword": {
84
+ "index": {
85
+ "label": "Index",
86
+ "required": false,
87
+ "types": [
88
+ {
89
+ "id": "int",
90
+ "kind": 1,
91
+ "pythonName": "int"
92
+ }
93
+ ],
94
+ "wfKey": "WFItemIndex"
95
+ },
96
+ "item": {
97
+ "label": "Item",
98
+ "required": true,
99
+ "types": [
100
+ {
101
+ "id": "string",
102
+ "kind": 1,
103
+ "pythonName": "str"
104
+ }
105
+ ],
106
+ "wfKey": "WFListItem"
107
+ },
108
+ "list": {
109
+ "label": "List",
110
+ "required": false,
111
+ "types": [
112
+ {
113
+ "id": "com.apple.shortcuts.WFContentItem",
114
+ "kind": 2,
115
+ "name": "Anything",
116
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
117
+ }
118
+ ],
119
+ "wfKey": "WFListVariable"
120
+ },
121
+ "position": {
122
+ "label": "Position",
123
+ "required": false,
124
+ "types": [
125
+ {
126
+ "cases": [
127
+ {
128
+ "id": "Beginning",
129
+ "title": "Beginning"
130
+ },
131
+ {
132
+ "id": "End",
133
+ "title": "End"
134
+ },
135
+ {
136
+ "id": "Index",
137
+ "title": "Index"
138
+ }
139
+ ],
140
+ "id": "com.apple.shortcuts.is.workflow.actions.additemtolist.WFInsertPosition",
141
+ "kind": 4,
142
+ "name": "Position",
143
+ "pythonName": "additemtolist_wfinsert_position"
144
+ }
145
+ ],
146
+ "wfKey": "WFInsertPosition"
147
+ }
148
+ },
149
+ "status": "catalog_ready_observed_keywords",
150
+ "toolType": "action",
151
+ "wfIdentifier": "is.workflow.actions.additemtolist"
152
+ },
153
+ "com_apple_shortcuts_adjust_date": {
154
+ "name": "Adjust Date",
155
+ "parameterByKeyword": {
156
+ "date": {
157
+ "label": "Date",
158
+ "required": false,
159
+ "types": [
160
+ {
161
+ "id": "date",
162
+ "kind": 1,
163
+ "pythonName": "DateTime"
164
+ }
165
+ ],
166
+ "wfKey": "WFDate"
167
+ },
168
+ "duration": {
169
+ "label": "Duration",
170
+ "required": false,
171
+ "types": [
172
+ {
173
+ "id": "measurement_duration",
174
+ "kind": 1,
175
+ "pythonName": "Measurement"
176
+ }
177
+ ],
178
+ "wfKey": "WFDuration"
179
+ },
180
+ "operation": {
181
+ "label": "Operation",
182
+ "required": false,
183
+ "types": [
184
+ {
185
+ "cases": [
186
+ {
187
+ "id": "Add",
188
+ "title": "Add"
189
+ },
190
+ {
191
+ "id": "Get Start of Day",
192
+ "title": "Get Start of Day"
193
+ },
194
+ {
195
+ "id": "Get Start of Hour",
196
+ "title": "Get Start of Hour"
197
+ },
198
+ {
199
+ "id": "Get Start of Minute",
200
+ "title": "Get Start of Minute"
201
+ },
202
+ {
203
+ "id": "Get Start of Month",
204
+ "title": "Get Start of Month"
205
+ },
206
+ {
207
+ "id": "Get Start of Week",
208
+ "title": "Get Start of Week"
209
+ },
210
+ {
211
+ "id": "Get Start of Year",
212
+ "title": "Get Start of Year"
213
+ },
214
+ {
215
+ "id": "Subtract",
216
+ "title": "Subtract"
217
+ }
218
+ ],
219
+ "id": "com.apple.shortcuts.is.workflow.actions.adjustdate.WFAdjustOperation",
220
+ "kind": 4,
221
+ "name": "Operation",
222
+ "pythonName": "adjustdate_wfadjust_operation"
223
+ }
224
+ ],
225
+ "wfKey": "WFAdjustOperation"
226
+ }
227
+ },
228
+ "status": "catalog_ready_observed_keywords",
229
+ "toolType": "action",
230
+ "wfIdentifier": "is.workflow.actions.adjustdate"
231
+ },
232
+ "com_apple_shortcuts_ask_for_input": {
233
+ "name": "Ask for Input",
234
+ "parameterByKeyword": {},
235
+ "status": "catalog_ready_source_examples",
236
+ "toolType": "siriIntent",
237
+ "wfIdentifier": "is.workflow.actions.ask"
238
+ },
239
+ "com_apple_shortcuts_comment": {
240
+ "name": "Comment",
241
+ "parameterByKeyword": {
242
+ "comment": {
243
+ "label": "Comment",
244
+ "required": false,
245
+ "types": [
246
+ {
247
+ "id": "string",
248
+ "kind": 1,
249
+ "pythonName": "str"
250
+ }
251
+ ],
252
+ "wfKey": "WFCommentActionText"
253
+ }
254
+ },
255
+ "status": "catalog_ready_observed_keywords",
256
+ "toolType": "action",
257
+ "wfIdentifier": "is.workflow.actions.comment"
258
+ },
259
+ "com_apple_shortcuts_date": {
260
+ "name": "Date",
261
+ "parameterByKeyword": {},
262
+ "status": "catalog_ready_source_examples",
263
+ "toolType": "action",
264
+ "wfIdentifier": "is.workflow.actions.date"
265
+ },
266
+ "com_apple_shortcuts_dictionary": {
267
+ "name": "Dictionary",
268
+ "parameterByKeyword": {},
269
+ "status": "toolrenderer_embedded_toolkit_metadata",
270
+ "toolType": "action",
271
+ "wfIdentifier": "is.workflow.actions.dictionary"
272
+ },
273
+ "com_apple_shortcuts_get_contents_of_url": {
274
+ "name": "Get Contents of URL",
275
+ "parameterByKeyword": {
276
+ "file": {
277
+ "label": "File",
278
+ "required": false,
279
+ "types": [
280
+ {
281
+ "id": "com.apple.shortcuts.WFContentItem",
282
+ "kind": 2,
283
+ "name": "Anything",
284
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
285
+ }
286
+ ],
287
+ "wfKey": "WFRequestVariable"
288
+ },
289
+ "form_values": {
290
+ "label": "Form Values",
291
+ "required": false,
292
+ "types": [
293
+ {
294
+ "id": "dictionary",
295
+ "kind": 1,
296
+ "pythonName": "dict[Any, Any]"
297
+ }
298
+ ],
299
+ "wfKey": "WFFormValues"
300
+ },
301
+ "headers": {
302
+ "label": "Headers",
303
+ "required": false,
304
+ "types": [
305
+ {
306
+ "id": "dictionary",
307
+ "kind": 1,
308
+ "pythonName": "dict[Any, Any]"
309
+ }
310
+ ],
311
+ "wfKey": "WFHTTPHeaders"
312
+ },
313
+ "json_values": {
314
+ "label": "JSON Values",
315
+ "required": false,
316
+ "types": [
317
+ {
318
+ "id": "dictionary",
319
+ "kind": 1,
320
+ "pythonName": "dict[Any, Any]"
321
+ }
322
+ ],
323
+ "wfKey": "WFJSONValues"
324
+ },
325
+ "method": {
326
+ "label": "Method",
327
+ "required": false,
328
+ "types": [
329
+ {
330
+ "cases": [
331
+ {
332
+ "id": "DELETE",
333
+ "title": "DELETE"
334
+ },
335
+ {
336
+ "id": "GET",
337
+ "title": "GET"
338
+ },
339
+ {
340
+ "id": "PATCH",
341
+ "title": "PATCH"
342
+ },
343
+ {
344
+ "id": "POST",
345
+ "title": "POST"
346
+ },
347
+ {
348
+ "id": "PUT",
349
+ "title": "PUT"
350
+ }
351
+ ],
352
+ "id": "com.apple.shortcuts.is.workflow.actions.downloadurl.WFHTTPMethod",
353
+ "kind": 4,
354
+ "name": "Method",
355
+ "pythonName": "downloadurl_wfhttpmethod"
356
+ }
357
+ ],
358
+ "wfKey": "WFHTTPMethod"
359
+ },
360
+ "request_body": {
361
+ "label": "Request Body",
362
+ "required": false,
363
+ "types": [
364
+ {
365
+ "cases": [
366
+ {
367
+ "id": "File",
368
+ "title": "File"
369
+ },
370
+ {
371
+ "id": "Form",
372
+ "title": "Form"
373
+ },
374
+ {
375
+ "id": "JSON",
376
+ "title": "JSON"
377
+ }
378
+ ],
379
+ "id": "com.apple.shortcuts.is.workflow.actions.downloadurl.WFHTTPBodyType",
380
+ "kind": 4,
381
+ "name": "Request Body",
382
+ "pythonName": "downloadurl_wfhttpbody_type"
383
+ }
384
+ ],
385
+ "wfKey": "WFHTTPBodyType"
386
+ },
387
+ "show_headers": {
388
+ "label": null,
389
+ "required": null,
390
+ "types": [],
391
+ "wfKey": "ShowHeaders"
392
+ },
393
+ "url": {
394
+ "label": "URL",
395
+ "required": false,
396
+ "types": [
397
+ {
398
+ "id": "string",
399
+ "kind": 1,
400
+ "pythonName": "str"
401
+ }
402
+ ],
403
+ "wfKey": "WFURL"
404
+ }
405
+ },
406
+ "status": "catalog_ready_observed_keywords",
407
+ "toolType": "action",
408
+ "wfIdentifier": "is.workflow.actions.downloadurl"
409
+ },
410
+ "com_apple_shortcuts_get_details_of_files": {
411
+ "name": "Get Details of Files",
412
+ "parameterByKeyword": {
413
+ "detail": {
414
+ "label": "Detail",
415
+ "required": false,
416
+ "types": [
417
+ {
418
+ "cases": [
419
+ {
420
+ "id": "Creation Date",
421
+ "title": "Date Created"
422
+ },
423
+ {
424
+ "id": "File Extension",
425
+ "title": "File Extension"
426
+ },
427
+ {
428
+ "id": "File Path",
429
+ "title": "File Path"
430
+ },
431
+ {
432
+ "id": "File Size",
433
+ "title": "File Size"
434
+ },
435
+ {
436
+ "id": "Last Modified Date",
437
+ "title": "Date Modified"
438
+ },
439
+ {
440
+ "id": "Name",
441
+ "title": "Name"
442
+ }
443
+ ],
444
+ "id": "com.apple.shortcuts.is.workflow.actions.properties.files.WFContentItemPropertyName",
445
+ "kind": 4,
446
+ "name": "Detail",
447
+ "pythonName": "properties_files_wfcontent_item_property_name"
448
+ }
449
+ ],
450
+ "wfKey": "WFContentItemPropertyName"
451
+ },
452
+ "file": {
453
+ "label": "File",
454
+ "required": false,
455
+ "types": [
456
+ {
457
+ "id": "com.apple.shortcuts.WFContentItem",
458
+ "kind": 2,
459
+ "name": "Anything",
460
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
461
+ }
462
+ ],
463
+ "wfKey": "WFInput"
464
+ }
465
+ },
466
+ "status": "catalog_ready_observed_keywords",
467
+ "toolType": "action",
468
+ "wfIdentifier": "is.workflow.actions.properties.files"
469
+ },
470
+ "com_apple_shortcuts_get_dictionary_value": {
471
+ "name": "Get Dictionary Value",
472
+ "parameterByKeyword": {},
473
+ "status": "catalog_ready_source_examples",
474
+ "toolType": "action",
475
+ "wfIdentifier": "is.workflow.actions.getvalueforkey"
476
+ },
477
+ "com_apple_shortcuts_get_item_from_list": {
478
+ "name": "Get Item from List",
479
+ "parameterByKeyword": {
480
+ "end_index": {
481
+ "label": "End Index",
482
+ "required": false,
483
+ "types": [
484
+ {
485
+ "id": "int",
486
+ "kind": 1,
487
+ "pythonName": "int"
488
+ }
489
+ ],
490
+ "wfKey": "WFItemRangeEnd"
491
+ },
492
+ "get": {
493
+ "label": "Get",
494
+ "required": false,
495
+ "types": [
496
+ {
497
+ "cases": [
498
+ {
499
+ "id": "First Item",
500
+ "title": "First Item"
501
+ },
502
+ {
503
+ "id": "Item At Index",
504
+ "title": "Item at Index"
505
+ },
506
+ {
507
+ "id": "Items in Range",
508
+ "title": "Items in Range"
509
+ },
510
+ {
511
+ "id": "Last Item",
512
+ "title": "Last Item"
513
+ },
514
+ {
515
+ "id": "Random Item",
516
+ "title": "Random Item"
517
+ }
518
+ ],
519
+ "id": "com.apple.shortcuts.is.workflow.actions.getitemfromlist.WFItemSpecifier",
520
+ "kind": 4,
521
+ "name": "Get",
522
+ "pythonName": "getitemfromlist_wfitem_specifier"
523
+ }
524
+ ],
525
+ "wfKey": "WFItemSpecifier"
526
+ },
527
+ "index": {
528
+ "label": "Index",
529
+ "required": false,
530
+ "types": [
531
+ {
532
+ "id": "int",
533
+ "kind": 1,
534
+ "pythonName": "int"
535
+ }
536
+ ],
537
+ "wfKey": "WFItemIndex"
538
+ },
539
+ "list": {
540
+ "label": "List",
541
+ "required": false,
542
+ "types": [
543
+ {
544
+ "id": "com.apple.shortcuts.WFContentItem",
545
+ "kind": 2,
546
+ "name": "Anything",
547
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
548
+ }
549
+ ],
550
+ "wfKey": "WFInput"
551
+ },
552
+ "start_index": {
553
+ "label": "Start Index",
554
+ "required": false,
555
+ "types": [
556
+ {
557
+ "id": "int",
558
+ "kind": 1,
559
+ "pythonName": "int"
560
+ }
561
+ ],
562
+ "wfKey": "WFItemRangeStart"
563
+ }
564
+ },
565
+ "status": "catalog_ready_observed_keywords",
566
+ "toolType": "action",
567
+ "wfIdentifier": "is.workflow.actions.getitemfromlist"
568
+ },
569
+ "com_apple_shortcuts_get_variable": {
570
+ "name": "Get Variable",
571
+ "parameterByKeyword": {},
572
+ "status": "toolrenderer_embedded_toolkit_metadata",
573
+ "toolType": "action",
574
+ "wfIdentifier": "is.workflow.actions.getvariable"
575
+ },
576
+ "com_apple_shortcuts_list": {
577
+ "name": "List",
578
+ "parameterByKeyword": {
579
+ "wfitems": {
580
+ "label": null,
581
+ "required": null,
582
+ "types": [],
583
+ "wfKey": "WFItems"
584
+ }
585
+ },
586
+ "status": "catalog_ready_observed_keywords",
587
+ "toolType": "action",
588
+ "wfIdentifier": "is.workflow.actions.list"
589
+ },
590
+ "com_apple_shortcuts_nothing": {
591
+ "name": "Nothing",
592
+ "parameterByKeyword": {},
593
+ "status": "catalog_ready_source_examples",
594
+ "toolType": "action",
595
+ "wfIdentifier": "is.workflow.actions.nothing"
596
+ },
597
+ "com_apple_shortcuts_run_script_over_ssh": {
598
+ "name": "Run Script Over SSH",
599
+ "parameterByKeyword": {},
600
+ "status": "toolrenderer_embedded_toolkit_metadata",
601
+ "toolType": "action",
602
+ "wfIdentifier": "is.workflow.actions.runsshscript"
603
+ },
604
+ "com_apple_shortcuts_set_name": {
605
+ "name": "Set Name",
606
+ "parameterByKeyword": {
607
+ "don_t_include_file_extension": {
608
+ "label": "Don't Include File Extension",
609
+ "required": false,
610
+ "types": [
611
+ {
612
+ "id": "bool",
613
+ "kind": 1,
614
+ "pythonName": "bool"
615
+ }
616
+ ],
617
+ "wfKey": "WFDontIncludeFileExtension"
618
+ },
619
+ "input": {
620
+ "label": "Input",
621
+ "required": false,
622
+ "types": [
623
+ {
624
+ "id": "com.apple.shortcuts.WFContentItem",
625
+ "kind": 2,
626
+ "name": "Anything",
627
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
628
+ }
629
+ ],
630
+ "wfKey": "WFInput"
631
+ },
632
+ "name": {
633
+ "label": "Name",
634
+ "required": false,
635
+ "types": [
636
+ {
637
+ "id": "string",
638
+ "kind": 1,
639
+ "pythonName": "str"
640
+ }
641
+ ],
642
+ "wfKey": "WFName"
643
+ }
644
+ },
645
+ "status": "catalog_ready_observed_keywords",
646
+ "toolType": "action",
647
+ "wfIdentifier": "is.workflow.actions.setitemname"
648
+ },
649
+ "com_apple_shortcuts_set_variable": {
650
+ "name": "Set Variable",
651
+ "parameterByKeyword": {
652
+ "input": {
653
+ "label": "Input",
654
+ "required": false,
655
+ "types": [
656
+ {
657
+ "id": "com.apple.shortcuts.WFContentItem",
658
+ "kind": 2,
659
+ "name": "Anything",
660
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
661
+ }
662
+ ],
663
+ "wfKey": "WFInput"
664
+ },
665
+ "variable": {
666
+ "label": "Variable",
667
+ "required": false,
668
+ "types": [
669
+ {
670
+ "id": "string",
671
+ "kind": 1,
672
+ "pythonName": "str"
673
+ }
674
+ ],
675
+ "wfKey": "WFVariableName"
676
+ }
677
+ },
678
+ "status": "catalog_ready_observed_keywords",
679
+ "toolType": "action",
680
+ "wfIdentifier": "is.workflow.actions.setvariable"
681
+ },
682
+ "com_apple_shortcuts_show_alert": {
683
+ "name": "Show Alert",
684
+ "parameterByKeyword": {},
685
+ "status": "catalog_ready_source_examples",
686
+ "toolType": "action",
687
+ "wfIdentifier": "is.workflow.actions.alert"
688
+ },
689
+ "com_apple_shortcuts_show_content": {
690
+ "name": "Show Content",
691
+ "parameterByKeyword": {
692
+ "content": {
693
+ "label": "Content",
694
+ "required": true,
695
+ "types": [
696
+ {
697
+ "id": "string",
698
+ "kind": 1,
699
+ "pythonName": "str"
700
+ }
701
+ ],
702
+ "wfKey": "Text"
703
+ }
704
+ },
705
+ "status": "catalog_ready_observed_keywords",
706
+ "toolType": "action",
707
+ "wfIdentifier": "is.workflow.actions.showresult"
708
+ },
709
+ "com_apple_shortcuts_show_notification": {
710
+ "name": "Show Notification",
711
+ "parameterByKeyword": {
712
+ "attachment": {
713
+ "label": "Attachment",
714
+ "required": false,
715
+ "types": [
716
+ {
717
+ "id": "com.apple.shortcuts.WFContentItem",
718
+ "kind": 2,
719
+ "name": "Anything",
720
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
721
+ }
722
+ ],
723
+ "wfKey": "WFInput"
724
+ },
725
+ "body": {
726
+ "label": "Body",
727
+ "required": false,
728
+ "types": [
729
+ {
730
+ "id": "string",
731
+ "kind": 1,
732
+ "pythonName": "str"
733
+ }
734
+ ],
735
+ "wfKey": "WFNotificationActionBody"
736
+ },
737
+ "play_sound": {
738
+ "label": "Play Sound",
739
+ "required": false,
740
+ "types": [
741
+ {
742
+ "id": "bool",
743
+ "kind": 1,
744
+ "pythonName": "bool"
745
+ }
746
+ ],
747
+ "wfKey": "WFNotificationActionSound"
748
+ },
749
+ "title": {
750
+ "label": "Title",
751
+ "required": false,
752
+ "types": [
753
+ {
754
+ "id": "string",
755
+ "kind": 1,
756
+ "pythonName": "str"
757
+ }
758
+ ],
759
+ "wfKey": "WFNotificationActionTitle"
760
+ }
761
+ },
762
+ "status": "catalog_ready_observed_keywords",
763
+ "toolType": "action",
764
+ "wfIdentifier": "is.workflow.actions.notification"
765
+ },
766
+ "com_apple_shortcuts_text": {
767
+ "name": "Text",
768
+ "parameterByKeyword": {
769
+ "text": {
770
+ "label": "Text",
771
+ "required": false,
772
+ "types": [
773
+ {
774
+ "id": "string",
775
+ "kind": 1,
776
+ "pythonName": "str"
777
+ }
778
+ ],
779
+ "wfKey": "WFTextActionText"
780
+ }
781
+ },
782
+ "status": "catalog_ready_observed_keywords",
783
+ "toolType": "action",
784
+ "wfIdentifier": "is.workflow.actions.gettext"
785
+ },
786
+ "com_apple_shortcuts_use_model": {
787
+ "name": "Use Model",
788
+ "parameterByKeyword": {
789
+ "follow_up": {
790
+ "label": "Follow Up",
791
+ "required": false,
792
+ "types": [
793
+ {
794
+ "id": "bool",
795
+ "kind": 1,
796
+ "pythonName": "bool"
797
+ }
798
+ ],
799
+ "wfKey": "FollowUp"
800
+ },
801
+ "model": {
802
+ "label": "Model",
803
+ "required": false,
804
+ "types": [
805
+ {
806
+ "id": "com.apple.shortcuts.WFAskLLMModelParameter",
807
+ "kind": 2,
808
+ "name": "TypeLookupDetails",
809
+ "pythonName": "com_apple_shortcuts_wfask_llmmodel_parameter"
810
+ }
811
+ ],
812
+ "wfKey": "WFLLMModel"
813
+ },
814
+ "request": {
815
+ "label": "Request",
816
+ "required": true,
817
+ "types": [
818
+ {
819
+ "id": "string",
820
+ "kind": 1,
821
+ "pythonName": "str"
822
+ }
823
+ ],
824
+ "wfKey": "WFLLMPrompt"
825
+ },
826
+ "use_broad_world_knowledge": {
827
+ "label": "Use Broad World Knowledge",
828
+ "required": false,
829
+ "types": [
830
+ {
831
+ "id": "bool",
832
+ "kind": 1,
833
+ "pythonName": "bool"
834
+ }
835
+ ],
836
+ "wfKey": "WFAllowWebSearch"
837
+ }
838
+ },
839
+ "status": "catalog_ready_observed_keywords",
840
+ "toolType": "action",
841
+ "wfIdentifier": "is.workflow.actions.askllm"
842
+ },
843
+ "com_apple_terminal_run_shell_script": {
844
+ "name": "Run Shell Script",
845
+ "parameterByKeyword": {},
846
+ "status": "toolrenderer_embedded_toolkit_metadata",
847
+ "toolType": "action",
848
+ "wfIdentifier": "is.workflow.actions.runshellscript"
849
+ },
850
+ "finder_save_file": {
851
+ "name": "Save File",
852
+ "parameterByKeyword": {
853
+ "ask_where_to_save": {
854
+ "label": "Ask Where To Save",
855
+ "required": false,
856
+ "types": [
857
+ {
858
+ "id": "bool",
859
+ "kind": 1,
860
+ "pythonName": "bool"
861
+ }
862
+ ],
863
+ "wfKey": "WFAskWhereToSave"
864
+ },
865
+ "file": {
866
+ "label": "File",
867
+ "required": false,
868
+ "types": [
869
+ {
870
+ "id": "file",
871
+ "kind": 1,
872
+ "pythonName": "File"
873
+ }
874
+ ],
875
+ "wfKey": "WFInput"
876
+ },
877
+ "folder": {
878
+ "label": "Folder",
879
+ "required": false,
880
+ "types": [
881
+ {
882
+ "id": "file",
883
+ "kind": 1,
884
+ "pythonName": "File"
885
+ }
886
+ ],
887
+ "wfKey": "WFFolder"
888
+ },
889
+ "overwrite_if_file_exists": {
890
+ "label": "Overwrite If File Exists",
891
+ "required": false,
892
+ "types": [
893
+ {
894
+ "id": "bool",
895
+ "kind": 1,
896
+ "pythonName": "bool"
897
+ }
898
+ ],
899
+ "wfKey": "WFSaveFileOverwrite"
900
+ },
901
+ "subpath": {
902
+ "label": "Subpath",
903
+ "required": false,
904
+ "types": [
905
+ {
906
+ "id": "string",
907
+ "kind": 1,
908
+ "pythonName": "str"
909
+ }
910
+ ],
911
+ "wfKey": "WFFileDestinationPath"
912
+ }
913
+ },
914
+ "status": "catalog_ready_observed_keywords",
915
+ "toolType": "action",
916
+ "wfIdentifier": "is.workflow.actions.documentpicker.save"
917
+ },
918
+ "finder_select_file": {
919
+ "name": "Select File",
920
+ "parameterByKeyword": {
921
+ "select_multiple": {
922
+ "label": "Select Multiple",
923
+ "required": false,
924
+ "types": [
925
+ {
926
+ "id": "bool",
927
+ "kind": 1,
928
+ "pythonName": "bool"
929
+ }
930
+ ],
931
+ "wfKey": "SelectMultiple"
932
+ },
933
+ "type": {
934
+ "label": "Type",
935
+ "required": false,
936
+ "types": [
937
+ {
938
+ "cases": [
939
+ {
940
+ "id": "Files",
941
+ "title": "Files"
942
+ },
943
+ {
944
+ "id": "Folders",
945
+ "title": "Folders"
946
+ }
947
+ ],
948
+ "id": "com.apple.shortcuts.is.workflow.actions.file.select.WFPickingMode",
949
+ "kind": 4,
950
+ "name": "Type",
951
+ "pythonName": "file_select_wfpicking_mode"
952
+ }
953
+ ],
954
+ "wfKey": "WFPickingMode"
955
+ }
956
+ },
957
+ "status": "catalog_ready_observed_keywords",
958
+ "toolType": "action",
959
+ "wfIdentifier": "is.workflow.actions.file.select"
960
+ },
961
+ "reminders_new_reminder": {
962
+ "name": "New Reminder",
963
+ "parameterByKeyword": {
964
+ "alert": {
965
+ "label": "Alert",
966
+ "required": false,
967
+ "types": [
968
+ {
969
+ "cases": [
970
+ {
971
+ "id": "Alert",
972
+ "title": "Alert"
973
+ },
974
+ {
975
+ "id": "No Alert",
976
+ "title": "No Alert"
977
+ }
978
+ ],
979
+ "id": "com.apple.shortcuts.is.workflow.actions.addnewreminder.WFAlertEnabled",
980
+ "kind": 4,
981
+ "name": "Alert",
982
+ "pythonName": "addnewreminder_wfalert_enabled"
983
+ }
984
+ ],
985
+ "wfKey": "WFAlertEnabled"
986
+ },
987
+ "flag": {
988
+ "label": "Flag",
989
+ "required": false,
990
+ "types": [
991
+ {
992
+ "id": "bool",
993
+ "kind": 1,
994
+ "pythonName": "bool"
995
+ }
996
+ ],
997
+ "wfKey": "WFFlag"
998
+ },
999
+ "images": {
1000
+ "label": "Images",
1001
+ "required": false,
1002
+ "types": [
1003
+ {
1004
+ "id": "com.apple.shortcuts.WFContentItem",
1005
+ "kind": 2,
1006
+ "name": "Anything",
1007
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
1008
+ }
1009
+ ],
1010
+ "wfKey": "WFImages"
1011
+ },
1012
+ "list": {
1013
+ "label": "List",
1014
+ "required": false,
1015
+ "types": [
1016
+ {
1017
+ "id": "com.apple.shortcuts.WFCalendarSubstitutableState",
1018
+ "kind": 2,
1019
+ "name": "Calendar",
1020
+ "pythonName": "com_apple_shortcuts_wfcalendar_substitutable_state"
1021
+ }
1022
+ ],
1023
+ "wfKey": "WFCalendarDescriptor"
1024
+ },
1025
+ "location": {
1026
+ "label": "Location",
1027
+ "required": false,
1028
+ "types": [
1029
+ {
1030
+ "id": "placemark",
1031
+ "kind": 1,
1032
+ "pythonName": "Placemark"
1033
+ }
1034
+ ],
1035
+ "wfKey": "WFAlertLocation"
1036
+ },
1037
+ "notes": {
1038
+ "label": "Notes",
1039
+ "required": false,
1040
+ "types": [
1041
+ {
1042
+ "id": "string",
1043
+ "kind": 1,
1044
+ "pythonName": "str"
1045
+ }
1046
+ ],
1047
+ "wfKey": "WFCalendarItemNotes"
1048
+ },
1049
+ "parent_reminder": {
1050
+ "label": "Parent Reminder",
1051
+ "required": false,
1052
+ "types": [
1053
+ {
1054
+ "id": "com.apple.shortcuts.WFContentItem",
1055
+ "kind": 2,
1056
+ "name": "Anything",
1057
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
1058
+ }
1059
+ ],
1060
+ "wfKey": "WFParentTask"
1061
+ },
1062
+ "person": {
1063
+ "label": "Person",
1064
+ "required": false,
1065
+ "types": [
1066
+ {
1067
+ "id": "person",
1068
+ "kind": 1,
1069
+ "pythonName": "Person"
1070
+ }
1071
+ ],
1072
+ "wfKey": "WFAlertPerson"
1073
+ },
1074
+ "priority": {
1075
+ "label": "Priority",
1076
+ "required": false,
1077
+ "types": [
1078
+ {
1079
+ "cases": [
1080
+ {
1081
+ "id": "High",
1082
+ "title": "High"
1083
+ },
1084
+ {
1085
+ "id": "Low",
1086
+ "title": "Low"
1087
+ },
1088
+ {
1089
+ "id": "Medium",
1090
+ "title": "Medium"
1091
+ },
1092
+ {
1093
+ "id": "None",
1094
+ "title": "None"
1095
+ }
1096
+ ],
1097
+ "id": "com.apple.shortcuts.is.workflow.actions.addnewreminder.WFPriority",
1098
+ "kind": 4,
1099
+ "name": "Priority",
1100
+ "pythonName": "addnewreminder_wfpriority"
1101
+ }
1102
+ ],
1103
+ "wfKey": "WFPriority"
1104
+ },
1105
+ "radius": {
1106
+ "label": "Radius",
1107
+ "required": false,
1108
+ "types": [
1109
+ {
1110
+ "id": "measurement_length",
1111
+ "kind": 1,
1112
+ "pythonName": "Measurement"
1113
+ }
1114
+ ],
1115
+ "wfKey": "WFAlertLocationRadius"
1116
+ },
1117
+ "reminder": {
1118
+ "label": "Reminder",
1119
+ "required": false,
1120
+ "types": [
1121
+ {
1122
+ "id": "string",
1123
+ "kind": 1,
1124
+ "pythonName": "str"
1125
+ }
1126
+ ],
1127
+ "wfKey": "WFCalendarItemTitle"
1128
+ },
1129
+ "time": {
1130
+ "label": "Time",
1131
+ "required": false,
1132
+ "types": [
1133
+ {
1134
+ "id": "date",
1135
+ "kind": 1,
1136
+ "pythonName": "DateTime"
1137
+ }
1138
+ ],
1139
+ "wfKey": "WFAlertCustomTime"
1140
+ },
1141
+ "trigger": {
1142
+ "label": "Trigger",
1143
+ "required": false,
1144
+ "types": [
1145
+ {
1146
+ "cases": [
1147
+ {
1148
+ "id": "At Time",
1149
+ "title": "At Time"
1150
+ },
1151
+ {
1152
+ "id": "When I Arrive",
1153
+ "title": "When I Arrive"
1154
+ },
1155
+ {
1156
+ "id": "When I Leave",
1157
+ "title": "When I Leave"
1158
+ },
1159
+ {
1160
+ "id": "When Messaging",
1161
+ "title": "When Messaging"
1162
+ }
1163
+ ],
1164
+ "id": "com.apple.shortcuts.is.workflow.actions.addnewreminder.WFAlertCondition",
1165
+ "kind": 4,
1166
+ "name": "Trigger",
1167
+ "pythonName": "addnewreminder_wfalert_condition"
1168
+ }
1169
+ ],
1170
+ "wfKey": "WFAlertCondition"
1171
+ },
1172
+ "urgent": {
1173
+ "label": "Urgent",
1174
+ "required": false,
1175
+ "types": [
1176
+ {
1177
+ "id": "bool",
1178
+ "kind": 1,
1179
+ "pythonName": "bool"
1180
+ }
1181
+ ],
1182
+ "wfKey": "WFUrgent"
1183
+ },
1184
+ "url": {
1185
+ "label": "URL",
1186
+ "required": false,
1187
+ "types": [
1188
+ {
1189
+ "id": "url",
1190
+ "kind": 1,
1191
+ "pythonName": "URL"
1192
+ }
1193
+ ],
1194
+ "wfKey": "WFURL"
1195
+ },
1196
+ "wftags": {
1197
+ "label": null,
1198
+ "required": null,
1199
+ "types": [],
1200
+ "wfKey": "WFTags"
1201
+ }
1202
+ },
1203
+ "status": "catalog_ready_observed_keywords",
1204
+ "toolType": "action",
1205
+ "wfIdentifier": "is.workflow.actions.addnewreminder"
1206
+ },
1207
+ "safari_run_java_script_on_active_safari_tab": {
1208
+ "name": "Run JavaScript on Active Safari Tab",
1209
+ "parameterByKeyword": {},
1210
+ "status": "toolrenderer_embedded_toolkit_metadata",
1211
+ "toolType": "action",
1212
+ "wfIdentifier": "is.workflow.actions.runjavascriptonwebpage"
1213
+ }
1214
+ },
1215
+ "runtimePolicy": "Static metadata only. Do not call Apple's private WorkflowKit/ShortcutsLanguage/ShortcutsAgent/ToolRenderer frameworks in production.",
1216
+ "schemaVersion": 1,
1217
+ "shortcutsLanguageSyntaxSurface": {
1218
+ "appendActionIdentifier": "is.workflow.actions.appendvariable",
1219
+ "diagnosticStrings": [
1220
+ "Argument does not support lists, please provide a single value.",
1221
+ "Match cases must be string or f-string patterns (e.g. `case \"option\":` or `case f\"{variable}\":`).",
1222
+ "Function symbols must be non-dotted identifiers, such as <function-name>. <module>.<function-name> is only allowed in Shortcuts Language where <function-name> is `append`, and `module` is a variable.",
1223
+ "Only keyword arguments are allowed in argument lists.",
1224
+ "For loop subjects may only be list-backed variables or `range(n)` expressions for an integer `n` in Shortcuts Language.",
1225
+ "The subject of a for loop must be a list-backed variable, or the function `enumerate(<object>)`, or the function `range(<integer>)`."
1226
+ ],
1227
+ "listConstructorPythonName": "com_apple_shortcuts_list",
1228
+ "supportsDictionaryLiterals": true,
1229
+ "supportsElifSyntax": true,
1230
+ "supportsElseSyntax": true,
1231
+ "supportsListLiterals": true,
1232
+ "supportsVariableAppendSyntax": true
1233
+ },
1234
+ "source": "Derived from local macOS 27 Shortcuts ToolKit, ToolRenderer embedded Python surface, WorkflowKit source export, and installed Apple Intelligence shortcut graphs.",
1235
+ "structuralActions": {
1236
+ "is.workflow.actions.conditional": {
1237
+ "keywords": [],
1238
+ "name": null,
1239
+ "outputResultName": null,
1240
+ "parameters": [
1241
+ {
1242
+ "description": null,
1243
+ "label": null,
1244
+ "pythonKeyword": null,
1245
+ "required": null,
1246
+ "types": [],
1247
+ "wfKey": "WFConditions"
1248
+ }
1249
+ ],
1250
+ "pythonName": null,
1251
+ "sampleShortcuts": [
1252
+ "Add to List and Otherwise If",
1253
+ "NL - List Conditional"
1254
+ ],
1255
+ "sourceFunctions": {},
1256
+ "status": "structural_control_flow",
1257
+ "summary": null,
1258
+ "toolRendererEmbedded": false,
1259
+ "toolRendererScriptingUtility": false,
1260
+ "toolType": null
1261
+ }
1262
+ },
1263
+ "summary": {
1264
+ "pythonLookupFunctionCount": 29,
1265
+ "shortcutsLanguageSyntaxSignals": 4,
1266
+ "sourceIdentifierCount": 30,
1267
+ "structuralControlFlowCount": 1,
1268
+ "toolCount": 29,
1269
+ "toolRendererEmbeddedActionIdentifierCount": 13,
1270
+ "toolRendererScriptingUtilityIdentifierCount": 11
1271
+ },
1272
+ "toolRendererEmbeddedPythonSurface": {
1273
+ "builtinFunctions": [
1274
+ "input",
1275
+ "shortcuts_builtin_ask",
1276
+ "shortcuts_builtin_choose",
1277
+ "shortcuts_builtin_clipboard",
1278
+ "shortcuts_builtin_current_date",
1279
+ "shortcuts_builtin_device"
1280
+ ],
1281
+ "customDescriptionResourceNames": [
1282
+ "CustomDescriptions_Tools",
1283
+ "CustomDescriptions_Triggers",
1284
+ "CustomDescriptions_Enums_iOS",
1285
+ "CustomDescriptions_Enums_macOS"
1286
+ ],
1287
+ "embeddedActionIdentifiers": [
1288
+ "is.workflow.actions.adjustdate",
1289
+ "is.workflow.actions.dictionary",
1290
+ "is.workflow.actions.gettext",
1291
+ "is.workflow.actions.getvalueforkey",
1292
+ "is.workflow.actions.getvariable",
1293
+ "is.workflow.actions.list",
1294
+ "is.workflow.actions.measurement.convert",
1295
+ "is.workflow.actions.nothing",
1296
+ "is.workflow.actions.runapplescript",
1297
+ "is.workflow.actions.runjavascriptforautomation",
1298
+ "is.workflow.actions.runjavascriptonwebpage",
1299
+ "is.workflow.actions.runshellscript",
1300
+ "is.workflow.actions.runsshscript"
1301
+ ],
1302
+ "hasCatalogRefPrelude": true,
1303
+ "hasFStringGuidance": true,
1304
+ "scriptingUtilityIdentifiers": [
1305
+ "is.workflow.actions.dictionary",
1306
+ "is.workflow.actions.getvalueforkey",
1307
+ "is.workflow.actions.getvariable",
1308
+ "is.workflow.actions.list",
1309
+ "is.workflow.actions.gettext",
1310
+ "is.workflow.actions.nothing",
1311
+ "is.workflow.actions.runapplescript",
1312
+ "is.workflow.actions.runjavascriptforautomation",
1313
+ "is.workflow.actions.runjavascriptonwebpage",
1314
+ "is.workflow.actions.runshellscript",
1315
+ "is.workflow.actions.runsshscript"
1316
+ ]
1317
+ },
1318
+ "tools": {
1319
+ "is.workflow.actions.additemtolist": {
1320
+ "keywords": [
1321
+ "array",
1322
+ "set",
1323
+ "collection",
1324
+ "for",
1325
+ "append",
1326
+ "prepend",
1327
+ "insert"
1328
+ ],
1329
+ "name": "Add Item to List",
1330
+ "outputResultName": "List",
1331
+ "parameters": [
1332
+ {
1333
+ "description": null,
1334
+ "label": "Position",
1335
+ "pythonKeyword": "position",
1336
+ "required": false,
1337
+ "types": [
1338
+ {
1339
+ "cases": [
1340
+ {
1341
+ "id": "Beginning",
1342
+ "title": "Beginning"
1343
+ },
1344
+ {
1345
+ "id": "End",
1346
+ "title": "End"
1347
+ },
1348
+ {
1349
+ "id": "Index",
1350
+ "title": "Index"
1351
+ }
1352
+ ],
1353
+ "id": "com.apple.shortcuts.is.workflow.actions.additemtolist.WFInsertPosition",
1354
+ "kind": 4,
1355
+ "name": "Position",
1356
+ "pythonName": "additemtolist_wfinsert_position"
1357
+ }
1358
+ ],
1359
+ "wfKey": "WFInsertPosition"
1360
+ },
1361
+ {
1362
+ "description": null,
1363
+ "label": "Index",
1364
+ "pythonKeyword": "index",
1365
+ "required": false,
1366
+ "types": [
1367
+ {
1368
+ "id": "int",
1369
+ "kind": 1,
1370
+ "pythonName": "int"
1371
+ }
1372
+ ],
1373
+ "wfKey": "WFItemIndex"
1374
+ },
1375
+ {
1376
+ "description": null,
1377
+ "label": "Item",
1378
+ "pythonKeyword": "item",
1379
+ "required": true,
1380
+ "types": [
1381
+ {
1382
+ "id": "string",
1383
+ "kind": 1,
1384
+ "pythonName": "str"
1385
+ }
1386
+ ],
1387
+ "wfKey": "WFListItem"
1388
+ },
1389
+ {
1390
+ "description": null,
1391
+ "label": "List",
1392
+ "pythonKeyword": "list",
1393
+ "required": false,
1394
+ "types": [
1395
+ {
1396
+ "id": "com.apple.shortcuts.WFContentItem",
1397
+ "kind": 2,
1398
+ "name": "Anything",
1399
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
1400
+ }
1401
+ ],
1402
+ "wfKey": "WFListVariable"
1403
+ }
1404
+ ],
1405
+ "pythonName": "com_apple_shortcuts_add_item_to_list",
1406
+ "sampleShortcuts": [
1407
+ "Add to List and Otherwise If"
1408
+ ],
1409
+ "sourceFunctions": {
1410
+ "com_apple_shortcuts_add_item_to_list": [
1411
+ "index",
1412
+ "item",
1413
+ "list",
1414
+ "position"
1415
+ ]
1416
+ },
1417
+ "status": "catalog_ready_observed_keywords",
1418
+ "summary": "Adds the specified item to a list at the beginning, end, or a specific index.",
1419
+ "toolRendererEmbedded": false,
1420
+ "toolRendererScriptingUtility": false,
1421
+ "toolType": "action"
1422
+ },
1423
+ "is.workflow.actions.addnewreminder": {
1424
+ "keywords": [
1425
+ "create",
1426
+ "add",
1427
+ "calendar",
1428
+ "task",
1429
+ "todo",
1430
+ "to-do"
1431
+ ],
1432
+ "name": "New Reminder",
1433
+ "outputResultName": "New Reminder",
1434
+ "parameters": [
1435
+ {
1436
+ "description": null,
1437
+ "label": "Trigger",
1438
+ "pythonKeyword": "trigger",
1439
+ "required": false,
1440
+ "types": [
1441
+ {
1442
+ "cases": [
1443
+ {
1444
+ "id": "At Time",
1445
+ "title": "At Time"
1446
+ },
1447
+ {
1448
+ "id": "When I Arrive",
1449
+ "title": "When I Arrive"
1450
+ },
1451
+ {
1452
+ "id": "When I Leave",
1453
+ "title": "When I Leave"
1454
+ },
1455
+ {
1456
+ "id": "When Messaging",
1457
+ "title": "When Messaging"
1458
+ }
1459
+ ],
1460
+ "id": "com.apple.shortcuts.is.workflow.actions.addnewreminder.WFAlertCondition",
1461
+ "kind": 4,
1462
+ "name": "Trigger",
1463
+ "pythonName": "addnewreminder_wfalert_condition"
1464
+ }
1465
+ ],
1466
+ "wfKey": "WFAlertCondition"
1467
+ },
1468
+ {
1469
+ "description": "Text representing the date or date and time when the alert should occur. Examples: \u201ctonight at 7\u201d, \u201cMarch 7\u201d",
1470
+ "label": "Time",
1471
+ "pythonKeyword": "time",
1472
+ "required": false,
1473
+ "types": [
1474
+ {
1475
+ "id": "date",
1476
+ "kind": 1,
1477
+ "pythonName": "DateTime"
1478
+ }
1479
+ ],
1480
+ "wfKey": "WFAlertCustomTime"
1481
+ },
1482
+ {
1483
+ "description": null,
1484
+ "label": "Alert",
1485
+ "pythonKeyword": "alert",
1486
+ "required": false,
1487
+ "types": [
1488
+ {
1489
+ "cases": [
1490
+ {
1491
+ "id": "Alert",
1492
+ "title": "Alert"
1493
+ },
1494
+ {
1495
+ "id": "No Alert",
1496
+ "title": "No Alert"
1497
+ }
1498
+ ],
1499
+ "id": "com.apple.shortcuts.is.workflow.actions.addnewreminder.WFAlertEnabled",
1500
+ "kind": 4,
1501
+ "name": "Alert",
1502
+ "pythonName": "addnewreminder_wfalert_enabled"
1503
+ }
1504
+ ],
1505
+ "wfKey": "WFAlertEnabled"
1506
+ },
1507
+ {
1508
+ "description": "The location that triggers the alert.",
1509
+ "label": "Location",
1510
+ "pythonKeyword": "location",
1511
+ "required": false,
1512
+ "types": [
1513
+ {
1514
+ "id": "placemark",
1515
+ "kind": 1,
1516
+ "pythonName": "Placemark"
1517
+ }
1518
+ ],
1519
+ "wfKey": "WFAlertLocation"
1520
+ },
1521
+ {
1522
+ "description": "The distance from the provided location to consider \"arriving\" or \"leaving\" the location",
1523
+ "label": "Radius",
1524
+ "pythonKeyword": "radius",
1525
+ "required": false,
1526
+ "types": [
1527
+ {
1528
+ "id": "measurement_length",
1529
+ "kind": 1,
1530
+ "pythonName": "Measurement"
1531
+ }
1532
+ ],
1533
+ "wfKey": "WFAlertLocationRadius"
1534
+ },
1535
+ {
1536
+ "description": "The reminder notification will be shown when chatting with this person in Messages.",
1537
+ "label": "Person",
1538
+ "pythonKeyword": "person",
1539
+ "required": false,
1540
+ "types": [
1541
+ {
1542
+ "id": "person",
1543
+ "kind": 1,
1544
+ "pythonName": "Person"
1545
+ }
1546
+ ],
1547
+ "wfKey": "WFAlertPerson"
1548
+ },
1549
+ {
1550
+ "description": "The list of reminders to add this reminder to.",
1551
+ "label": "List",
1552
+ "pythonKeyword": "list",
1553
+ "required": false,
1554
+ "types": [
1555
+ {
1556
+ "id": "com.apple.shortcuts.WFCalendarSubstitutableState",
1557
+ "kind": 2,
1558
+ "name": "Calendar",
1559
+ "pythonName": "com_apple_shortcuts_wfcalendar_substitutable_state"
1560
+ }
1561
+ ],
1562
+ "wfKey": "WFCalendarDescriptor"
1563
+ },
1564
+ {
1565
+ "description": "Optionally, a description for this reminder.",
1566
+ "label": "Notes",
1567
+ "pythonKeyword": "notes",
1568
+ "required": false,
1569
+ "types": [
1570
+ {
1571
+ "id": "string",
1572
+ "kind": 1,
1573
+ "pythonName": "str"
1574
+ }
1575
+ ],
1576
+ "wfKey": "WFCalendarItemNotes"
1577
+ },
1578
+ {
1579
+ "description": "The title of this reminder.",
1580
+ "label": "Reminder",
1581
+ "pythonKeyword": "reminder",
1582
+ "required": false,
1583
+ "types": [
1584
+ {
1585
+ "id": "string",
1586
+ "kind": 1,
1587
+ "pythonName": "str"
1588
+ }
1589
+ ],
1590
+ "wfKey": "WFCalendarItemTitle"
1591
+ },
1592
+ {
1593
+ "description": null,
1594
+ "label": "Flag",
1595
+ "pythonKeyword": "flag",
1596
+ "required": false,
1597
+ "types": [
1598
+ {
1599
+ "id": "bool",
1600
+ "kind": 1,
1601
+ "pythonName": "bool"
1602
+ }
1603
+ ],
1604
+ "wfKey": "WFFlag"
1605
+ },
1606
+ {
1607
+ "description": "An optional set of images to attach to this reminder. Use a variable to get the images.",
1608
+ "label": "Images",
1609
+ "pythonKeyword": "images",
1610
+ "required": false,
1611
+ "types": [
1612
+ {
1613
+ "id": "com.apple.shortcuts.WFContentItem",
1614
+ "kind": 2,
1615
+ "name": "Anything",
1616
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
1617
+ }
1618
+ ],
1619
+ "wfKey": "WFImages"
1620
+ },
1621
+ {
1622
+ "description": "Optionally, a parent reminder to add this reminder to.",
1623
+ "label": "Parent Reminder",
1624
+ "pythonKeyword": "parent_reminder",
1625
+ "required": false,
1626
+ "types": [
1627
+ {
1628
+ "id": "com.apple.shortcuts.WFContentItem",
1629
+ "kind": 2,
1630
+ "name": "Anything",
1631
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
1632
+ }
1633
+ ],
1634
+ "wfKey": "WFParentTask"
1635
+ },
1636
+ {
1637
+ "description": null,
1638
+ "label": "Priority",
1639
+ "pythonKeyword": "priority",
1640
+ "required": false,
1641
+ "types": [
1642
+ {
1643
+ "cases": [
1644
+ {
1645
+ "id": "High",
1646
+ "title": "High"
1647
+ },
1648
+ {
1649
+ "id": "Low",
1650
+ "title": "Low"
1651
+ },
1652
+ {
1653
+ "id": "Medium",
1654
+ "title": "Medium"
1655
+ },
1656
+ {
1657
+ "id": "None",
1658
+ "title": "None"
1659
+ }
1660
+ ],
1661
+ "id": "com.apple.shortcuts.is.workflow.actions.addnewreminder.WFPriority",
1662
+ "kind": 4,
1663
+ "name": "Priority",
1664
+ "pythonName": "addnewreminder_wfpriority"
1665
+ }
1666
+ ],
1667
+ "wfKey": "WFPriority"
1668
+ },
1669
+ {
1670
+ "description": null,
1671
+ "label": null,
1672
+ "pythonKeyword": "wftags",
1673
+ "required": null,
1674
+ "types": [],
1675
+ "wfKey": "WFTags"
1676
+ },
1677
+ {
1678
+ "description": "Optionally, a URL to attach to this reminder.",
1679
+ "label": "URL",
1680
+ "pythonKeyword": "url",
1681
+ "required": false,
1682
+ "types": [
1683
+ {
1684
+ "id": "url",
1685
+ "kind": 1,
1686
+ "pythonName": "URL"
1687
+ }
1688
+ ],
1689
+ "wfKey": "WFURL"
1690
+ },
1691
+ {
1692
+ "description": null,
1693
+ "label": "Urgent",
1694
+ "pythonKeyword": "urgent",
1695
+ "required": false,
1696
+ "types": [
1697
+ {
1698
+ "id": "bool",
1699
+ "kind": 1,
1700
+ "pythonName": "bool"
1701
+ }
1702
+ ],
1703
+ "wfKey": "WFUrgent"
1704
+ }
1705
+ ],
1706
+ "pythonName": "reminders_new_reminder",
1707
+ "sampleShortcuts": [
1708
+ "NL - Reminder"
1709
+ ],
1710
+ "sourceFunctions": {
1711
+ "reminders_new_reminder": [
1712
+ "alert",
1713
+ "flag",
1714
+ "list",
1715
+ "notes",
1716
+ "reminder",
1717
+ "time"
1718
+ ]
1719
+ },
1720
+ "status": "catalog_ready_observed_keywords",
1721
+ "summary": "Creates a new reminder and adds it to the selected list of reminders.",
1722
+ "toolRendererEmbedded": false,
1723
+ "toolRendererScriptingUtility": false,
1724
+ "toolType": "action"
1725
+ },
1726
+ "is.workflow.actions.adjustdate": {
1727
+ "keywords": [
1728
+ "add",
1729
+ "subtract",
1730
+ "math",
1731
+ "time",
1732
+ "get",
1733
+ "start",
1734
+ "of",
1735
+ "this",
1736
+ "minute",
1737
+ "hour",
1738
+ "day",
1739
+ "week",
1740
+ "month",
1741
+ "year"
1742
+ ],
1743
+ "name": "Adjust Date",
1744
+ "outputResultName": "Adjusted Date",
1745
+ "parameters": [
1746
+ {
1747
+ "description": null,
1748
+ "label": "Operation",
1749
+ "pythonKeyword": "operation",
1750
+ "required": false,
1751
+ "types": [
1752
+ {
1753
+ "cases": [
1754
+ {
1755
+ "id": "Add",
1756
+ "title": "Add"
1757
+ },
1758
+ {
1759
+ "id": "Get Start of Day",
1760
+ "title": "Get Start of Day"
1761
+ },
1762
+ {
1763
+ "id": "Get Start of Hour",
1764
+ "title": "Get Start of Hour"
1765
+ },
1766
+ {
1767
+ "id": "Get Start of Minute",
1768
+ "title": "Get Start of Minute"
1769
+ },
1770
+ {
1771
+ "id": "Get Start of Month",
1772
+ "title": "Get Start of Month"
1773
+ },
1774
+ {
1775
+ "id": "Get Start of Week",
1776
+ "title": "Get Start of Week"
1777
+ },
1778
+ {
1779
+ "id": "Get Start of Year",
1780
+ "title": "Get Start of Year"
1781
+ },
1782
+ {
1783
+ "id": "Subtract",
1784
+ "title": "Subtract"
1785
+ }
1786
+ ],
1787
+ "id": "com.apple.shortcuts.is.workflow.actions.adjustdate.WFAdjustOperation",
1788
+ "kind": 4,
1789
+ "name": "Operation",
1790
+ "pythonName": "adjustdate_wfadjust_operation"
1791
+ }
1792
+ ],
1793
+ "wfKey": "WFAdjustOperation"
1794
+ },
1795
+ {
1796
+ "description": null,
1797
+ "label": "Date",
1798
+ "pythonKeyword": "date",
1799
+ "required": false,
1800
+ "types": [
1801
+ {
1802
+ "id": "date",
1803
+ "kind": 1,
1804
+ "pythonName": "DateTime"
1805
+ }
1806
+ ],
1807
+ "wfKey": "WFDate"
1808
+ },
1809
+ {
1810
+ "description": null,
1811
+ "label": "Duration",
1812
+ "pythonKeyword": "duration",
1813
+ "required": false,
1814
+ "types": [
1815
+ {
1816
+ "id": "measurement_duration",
1817
+ "kind": 1,
1818
+ "pythonName": "Measurement"
1819
+ }
1820
+ ],
1821
+ "wfKey": "WFDuration"
1822
+ }
1823
+ ],
1824
+ "pythonName": "com_apple_shortcuts_adjust_date",
1825
+ "sampleShortcuts": [
1826
+ "NL - Reminder"
1827
+ ],
1828
+ "sourceFunctions": {
1829
+ "Measurement": [
1830
+ "quantity",
1831
+ "unit"
1832
+ ],
1833
+ "com_apple_shortcuts_adjust_date": [
1834
+ "date",
1835
+ "duration",
1836
+ "operation"
1837
+ ]
1838
+ },
1839
+ "status": "catalog_ready_observed_keywords",
1840
+ "summary": "Adds or subtracts an amount of time from the date passed into the action.",
1841
+ "toolRendererEmbedded": true,
1842
+ "toolRendererScriptingUtility": false,
1843
+ "toolType": "action"
1844
+ },
1845
+ "is.workflow.actions.alert": {
1846
+ "keywords": [
1847
+ "message",
1848
+ "ask",
1849
+ "display",
1850
+ "prompt",
1851
+ "show",
1852
+ "confirmation"
1853
+ ],
1854
+ "name": "Show Alert",
1855
+ "outputResultName": null,
1856
+ "parameters": [
1857
+ {
1858
+ "description": null,
1859
+ "label": "Show Cancel Button",
1860
+ "pythonKeyword": null,
1861
+ "required": false,
1862
+ "types": [
1863
+ {
1864
+ "id": "bool",
1865
+ "kind": 1,
1866
+ "pythonName": "bool"
1867
+ }
1868
+ ],
1869
+ "wfKey": "WFAlertActionCancelButtonShown"
1870
+ },
1871
+ {
1872
+ "description": null,
1873
+ "label": "Message",
1874
+ "pythonKeyword": null,
1875
+ "required": false,
1876
+ "types": [
1877
+ {
1878
+ "id": "string",
1879
+ "kind": 1,
1880
+ "pythonName": "str"
1881
+ }
1882
+ ],
1883
+ "wfKey": "WFAlertActionMessage"
1884
+ },
1885
+ {
1886
+ "description": null,
1887
+ "label": "Title",
1888
+ "pythonKeyword": null,
1889
+ "required": false,
1890
+ "types": [
1891
+ {
1892
+ "id": "string",
1893
+ "kind": 1,
1894
+ "pythonName": "str"
1895
+ }
1896
+ ],
1897
+ "wfKey": "WFAlertActionTitle"
1898
+ }
1899
+ ],
1900
+ "pythonName": "com_apple_shortcuts_show_alert",
1901
+ "sampleShortcuts": [
1902
+ "NL - Simple Text"
1903
+ ],
1904
+ "sourceFunctions": {
1905
+ "com_apple_shortcuts_show_alert": []
1906
+ },
1907
+ "status": "catalog_ready_source_examples",
1908
+ "summary": "Displays an alert with a title, a message, and two buttons. If the user selects the OK button, the shortcut continues. The cancel button stops the shortcut.",
1909
+ "toolRendererEmbedded": false,
1910
+ "toolRendererScriptingUtility": false,
1911
+ "toolType": "action"
1912
+ },
1913
+ "is.workflow.actions.ask": {
1914
+ "keywords": [
1915
+ "ask",
1916
+ "prompt",
1917
+ "show",
1918
+ "dialog",
1919
+ "keyboard",
1920
+ "text",
1921
+ "number",
1922
+ "url",
1923
+ "date",
1924
+ "time"
1925
+ ],
1926
+ "name": "Ask for Input",
1927
+ "outputResultName": "Ask for Input",
1928
+ "parameters": [
1929
+ {
1930
+ "description": null,
1931
+ "label": "Show When Run",
1932
+ "pythonKeyword": null,
1933
+ "required": false,
1934
+ "types": [
1935
+ {
1936
+ "id": "bool",
1937
+ "kind": 1,
1938
+ "pythonName": "bool"
1939
+ }
1940
+ ],
1941
+ "wfKey": "ShowWhenRun"
1942
+ },
1943
+ {
1944
+ "description": null,
1945
+ "label": "Allow Multiple Lines",
1946
+ "pythonKeyword": null,
1947
+ "required": false,
1948
+ "types": [
1949
+ {
1950
+ "id": "bool",
1951
+ "kind": 1,
1952
+ "pythonName": "bool"
1953
+ }
1954
+ ],
1955
+ "wfKey": "WFAllowsMultilineText"
1956
+ },
1957
+ {
1958
+ "description": null,
1959
+ "label": "Allow Decimal Numbers",
1960
+ "pythonKeyword": null,
1961
+ "required": false,
1962
+ "types": [
1963
+ {
1964
+ "id": "bool",
1965
+ "kind": 1,
1966
+ "pythonName": "bool"
1967
+ }
1968
+ ],
1969
+ "wfKey": "WFAskActionAllowsDecimalNumbers"
1970
+ },
1971
+ {
1972
+ "description": null,
1973
+ "label": "Allow Negative Numbers",
1974
+ "pythonKeyword": null,
1975
+ "required": false,
1976
+ "types": [
1977
+ {
1978
+ "id": "bool",
1979
+ "kind": 1,
1980
+ "pythonName": "bool"
1981
+ }
1982
+ ],
1983
+ "wfKey": "WFAskActionAllowsNegativeNumbers"
1984
+ },
1985
+ {
1986
+ "description": null,
1987
+ "label": "Default Answer",
1988
+ "pythonKeyword": null,
1989
+ "required": false,
1990
+ "types": [
1991
+ {
1992
+ "id": "string",
1993
+ "kind": 1,
1994
+ "pythonName": "str"
1995
+ }
1996
+ ],
1997
+ "wfKey": "WFAskActionDefaultAnswer"
1998
+ },
1999
+ {
2000
+ "description": null,
2001
+ "label": "Default Date",
2002
+ "pythonKeyword": null,
2003
+ "required": false,
2004
+ "types": [
2005
+ {
2006
+ "id": "date",
2007
+ "kind": 1,
2008
+ "pythonName": "DateTime"
2009
+ }
2010
+ ],
2011
+ "wfKey": "WFAskActionDefaultAnswerDate"
2012
+ },
2013
+ {
2014
+ "description": null,
2015
+ "label": "Default Date and Time",
2016
+ "pythonKeyword": null,
2017
+ "required": false,
2018
+ "types": [
2019
+ {
2020
+ "id": "date",
2021
+ "kind": 1,
2022
+ "pythonName": "DateTime"
2023
+ }
2024
+ ],
2025
+ "wfKey": "WFAskActionDefaultAnswerDateAndTime"
2026
+ },
2027
+ {
2028
+ "description": null,
2029
+ "label": "Default Number",
2030
+ "pythonKeyword": null,
2031
+ "required": false,
2032
+ "types": [
2033
+ {
2034
+ "id": "number",
2035
+ "kind": 1,
2036
+ "pythonName": "float"
2037
+ }
2038
+ ],
2039
+ "wfKey": "WFAskActionDefaultAnswerNumber"
2040
+ },
2041
+ {
2042
+ "description": null,
2043
+ "label": "Default Time",
2044
+ "pythonKeyword": null,
2045
+ "required": false,
2046
+ "types": [
2047
+ {
2048
+ "id": "date",
2049
+ "kind": 1,
2050
+ "pythonName": "DateTime"
2051
+ }
2052
+ ],
2053
+ "wfKey": "WFAskActionDefaultAnswerTime"
2054
+ },
2055
+ {
2056
+ "description": null,
2057
+ "label": "Default URL",
2058
+ "pythonKeyword": null,
2059
+ "required": false,
2060
+ "types": [
2061
+ {
2062
+ "id": "string",
2063
+ "kind": 1,
2064
+ "pythonName": "str"
2065
+ }
2066
+ ],
2067
+ "wfKey": "WFAskActionDefaultAnswerURL"
2068
+ },
2069
+ {
2070
+ "description": null,
2071
+ "label": "Prompt",
2072
+ "pythonKeyword": null,
2073
+ "required": false,
2074
+ "types": [
2075
+ {
2076
+ "id": "string",
2077
+ "kind": 1,
2078
+ "pythonName": "str"
2079
+ }
2080
+ ],
2081
+ "wfKey": "WFAskActionPrompt"
2082
+ },
2083
+ {
2084
+ "description": null,
2085
+ "label": "Input Type",
2086
+ "pythonKeyword": null,
2087
+ "required": false,
2088
+ "types": [
2089
+ {
2090
+ "cases": [
2091
+ {
2092
+ "id": "Date",
2093
+ "title": "Date"
2094
+ },
2095
+ {
2096
+ "id": "Date and Time",
2097
+ "title": "Date and Time"
2098
+ },
2099
+ {
2100
+ "id": "Number",
2101
+ "title": "Number"
2102
+ },
2103
+ {
2104
+ "id": "Text",
2105
+ "title": "Text"
2106
+ },
2107
+ {
2108
+ "id": "Time",
2109
+ "title": "Time"
2110
+ },
2111
+ {
2112
+ "id": "URL",
2113
+ "title": "URL"
2114
+ }
2115
+ ],
2116
+ "id": "com.apple.shortcuts.AskForInputType",
2117
+ "kind": 4,
2118
+ "name": "Input Type",
2119
+ "pythonName": "com_apple_shortcuts_ask_for_input_type"
2120
+ }
2121
+ ],
2122
+ "wfKey": "WFInputType"
2123
+ },
2124
+ {
2125
+ "description": null,
2126
+ "label": "URL",
2127
+ "pythonKeyword": null,
2128
+ "required": false,
2129
+ "types": [
2130
+ {
2131
+ "id": "url",
2132
+ "kind": 1,
2133
+ "pythonName": "URL"
2134
+ }
2135
+ ],
2136
+ "wfKey": "urlAnswer"
2137
+ }
2138
+ ],
2139
+ "pythonName": "com_apple_shortcuts_ask_for_input",
2140
+ "sampleShortcuts": [
2141
+ "NL - Apple Intelligence",
2142
+ "NL - Reminder"
2143
+ ],
2144
+ "sourceFunctions": {
2145
+ "com_apple_shortcuts_ask_for_input": []
2146
+ },
2147
+ "status": "catalog_ready_source_examples",
2148
+ "summary": "Displays a dialog prompting the user to enter a piece of information.",
2149
+ "toolRendererEmbedded": false,
2150
+ "toolRendererScriptingUtility": false,
2151
+ "toolType": "siriIntent"
2152
+ },
2153
+ "is.workflow.actions.askllm": {
2154
+ "keywords": [
2155
+ "ask",
2156
+ "apple",
2157
+ "intelligence",
2158
+ "intelligent",
2159
+ "ai",
2160
+ "generative",
2161
+ "chat",
2162
+ "llm",
2163
+ "language",
2164
+ "chatgpt",
2165
+ "siri"
2166
+ ],
2167
+ "name": "Use Model",
2168
+ "outputResultName": "Response",
2169
+ "parameters": [
2170
+ {
2171
+ "description": "Show the model's response and make additional requests before the final response is passed to the next action.",
2172
+ "label": "Follow Up",
2173
+ "pythonKeyword": "follow_up",
2174
+ "required": false,
2175
+ "types": [
2176
+ {
2177
+ "id": "bool",
2178
+ "kind": 1,
2179
+ "pythonName": "bool"
2180
+ }
2181
+ ],
2182
+ "wfKey": "FollowUp"
2183
+ },
2184
+ {
2185
+ "description": "Allow the model to go out to the web for up-to-date information.",
2186
+ "label": "Use Broad World Knowledge",
2187
+ "pythonKeyword": "use_broad_world_knowledge",
2188
+ "required": false,
2189
+ "types": [
2190
+ {
2191
+ "id": "bool",
2192
+ "kind": 1,
2193
+ "pythonName": "bool"
2194
+ }
2195
+ ],
2196
+ "wfKey": "WFAllowWebSearch"
2197
+ },
2198
+ {
2199
+ "description": "Responses are automatically optimized for the actions they're passed into \u2014 for example, if the response is passed into the 'Repeat with Each' action, the model creates a list.\n\nTo manually specify the model's output, select an output type using the 'Output' parameter.\n\n**Private Cloud Compute Models**\nUse large server-based models on Private Cloud Compute to handle complex requests while protecting your privacy.\n\n**On-Device Model**\nUse the on-device model to handle simple requests without the need for a network connection.\n\n**Extensions**\nApps installed on your device can expose models to Shortcuts, so you can tap into their broad world knowledge and domain expertise. You can enable extensions in Settings > Apple Intelligence & Siri.\n\nImage analysis is supported by the Private Cloud Compute and Extension models, however image generation is not supported.",
2200
+ "label": "Output",
2201
+ "pythonKeyword": null,
2202
+ "required": false,
2203
+ "types": [
2204
+ {
2205
+ "id": "string",
2206
+ "kind": 1,
2207
+ "pythonName": "str"
2208
+ }
2209
+ ],
2210
+ "wfKey": "WFGenerativeResultType"
2211
+ },
2212
+ {
2213
+ "description": null,
2214
+ "label": "Model",
2215
+ "pythonKeyword": "model",
2216
+ "required": false,
2217
+ "types": [
2218
+ {
2219
+ "id": "com.apple.shortcuts.WFAskLLMModelParameter",
2220
+ "kind": 2,
2221
+ "name": "TypeLookupDetails",
2222
+ "pythonName": "com_apple_shortcuts_wfask_llmmodel_parameter"
2223
+ }
2224
+ ],
2225
+ "wfKey": "WFLLMModel"
2226
+ },
2227
+ {
2228
+ "description": "A request for the model that optionally includes variables and outputs from previous actions, including calendar events, reminders, images, and more.",
2229
+ "label": "Request",
2230
+ "pythonKeyword": "request",
2231
+ "required": true,
2232
+ "types": [
2233
+ {
2234
+ "id": "string",
2235
+ "kind": 1,
2236
+ "pythonName": "str"
2237
+ }
2238
+ ],
2239
+ "wfKey": "WFLLMPrompt"
2240
+ }
2241
+ ],
2242
+ "pythonName": "com_apple_shortcuts_use_model",
2243
+ "sampleShortcuts": [
2244
+ "Funny Hello World",
2245
+ "NL - Apple Intelligence"
2246
+ ],
2247
+ "sourceFunctions": {
2248
+ "com_apple_shortcuts_use_model": [
2249
+ "model",
2250
+ "request"
2251
+ ]
2252
+ },
2253
+ "status": "catalog_ready_observed_keywords",
2254
+ "summary": "Use a model to handle complex requests in your shortcuts.",
2255
+ "toolRendererEmbedded": false,
2256
+ "toolRendererScriptingUtility": false,
2257
+ "toolType": "action"
2258
+ },
2259
+ "is.workflow.actions.comment": {
2260
+ "keywords": [
2261
+ "note",
2262
+ "explain"
2263
+ ],
2264
+ "name": "Comment",
2265
+ "outputResultName": null,
2266
+ "parameters": [
2267
+ {
2268
+ "description": null,
2269
+ "label": "Comment",
2270
+ "pythonKeyword": "comment",
2271
+ "required": false,
2272
+ "types": [
2273
+ {
2274
+ "id": "string",
2275
+ "kind": 1,
2276
+ "pythonName": "str"
2277
+ }
2278
+ ],
2279
+ "wfKey": "WFCommentActionText"
2280
+ }
2281
+ ],
2282
+ "pythonName": "com_apple_shortcuts_comment",
2283
+ "sampleShortcuts": [
2284
+ "Add to List and Otherwise If"
2285
+ ],
2286
+ "sourceFunctions": {},
2287
+ "status": "catalog_ready_observed_keywords",
2288
+ "summary": "This action lets you explain how part of a shortcut works. When run, this action does nothing.",
2289
+ "toolRendererEmbedded": false,
2290
+ "toolRendererScriptingUtility": false,
2291
+ "toolType": "action"
2292
+ },
2293
+ "is.workflow.actions.date": {
2294
+ "keywords": [
2295
+ "date",
2296
+ "set date",
2297
+ "pass date",
2298
+ "time",
2299
+ "current",
2300
+ "now",
2301
+ "get",
2302
+ "holiday",
2303
+ "public event",
2304
+ "event"
2305
+ ],
2306
+ "name": "Date",
2307
+ "outputResultName": "Date",
2308
+ "parameters": [
2309
+ {
2310
+ "description": null,
2311
+ "label": "Date",
2312
+ "pythonKeyword": null,
2313
+ "required": false,
2314
+ "types": [
2315
+ {
2316
+ "id": "date",
2317
+ "kind": 1,
2318
+ "pythonName": "DateTime"
2319
+ }
2320
+ ],
2321
+ "wfKey": "WFDateActionDate"
2322
+ },
2323
+ {
2324
+ "description": null,
2325
+ "label": "Date",
2326
+ "pythonKeyword": null,
2327
+ "required": false,
2328
+ "types": [
2329
+ {
2330
+ "id": "string",
2331
+ "kind": 1,
2332
+ "pythonName": "str"
2333
+ }
2334
+ ],
2335
+ "wfKey": "WFDateActionMode"
2336
+ },
2337
+ {
2338
+ "description": null,
2339
+ "label": "Occurrence",
2340
+ "pythonKeyword": null,
2341
+ "required": false,
2342
+ "types": [
2343
+ {
2344
+ "cases": [
2345
+ {
2346
+ "id": "Next Occurrence",
2347
+ "title": "Next Occurrence"
2348
+ },
2349
+ {
2350
+ "id": "Specified Year",
2351
+ "title": "Specified Year"
2352
+ }
2353
+ ],
2354
+ "id": "com.apple.shortcuts.is.workflow.actions.date.WFEventOccurrenceMode",
2355
+ "kind": 4,
2356
+ "name": "Occurrence",
2357
+ "pythonName": "date_wfevent_occurrence_mode"
2358
+ }
2359
+ ],
2360
+ "wfKey": "WFEventOccurrenceMode"
2361
+ },
2362
+ {
2363
+ "description": null,
2364
+ "label": "Year",
2365
+ "pythonKeyword": null,
2366
+ "required": false,
2367
+ "types": [
2368
+ {
2369
+ "id": "string",
2370
+ "kind": 1,
2371
+ "pythonName": "str"
2372
+ }
2373
+ ],
2374
+ "wfKey": "WFEventOccurrenceSpecifiedYear"
2375
+ }
2376
+ ],
2377
+ "pythonName": "com_apple_shortcuts_date",
2378
+ "sampleShortcuts": [
2379
+ "NL - Reminder"
2380
+ ],
2381
+ "sourceFunctions": {
2382
+ "com_apple_shortcuts_date": []
2383
+ },
2384
+ "status": "catalog_ready_source_examples",
2385
+ "summary": "Passes the specified date and time to the next action.",
2386
+ "toolRendererEmbedded": false,
2387
+ "toolRendererScriptingUtility": false,
2388
+ "toolType": "action"
2389
+ },
2390
+ "is.workflow.actions.dictionary": {
2391
+ "keywords": [
2392
+ "json",
2393
+ "plist"
2394
+ ],
2395
+ "name": "Dictionary",
2396
+ "outputResultName": "Dictionary",
2397
+ "parameters": [
2398
+ {
2399
+ "description": null,
2400
+ "label": "Items",
2401
+ "pythonKeyword": null,
2402
+ "required": false,
2403
+ "types": [
2404
+ {
2405
+ "id": "dictionary",
2406
+ "kind": 1,
2407
+ "pythonName": "dict[Any, Any]"
2408
+ }
2409
+ ],
2410
+ "wfKey": "WFItems"
2411
+ }
2412
+ ],
2413
+ "pythonName": "com_apple_shortcuts_dictionary",
2414
+ "sampleShortcuts": [],
2415
+ "sourceFunctions": {},
2416
+ "status": "toolrenderer_embedded_toolkit_metadata",
2417
+ "summary": "Passes the specified list of key-value pairs to the next action as a dictionary.",
2418
+ "toolRendererEmbedded": true,
2419
+ "toolRendererScriptingUtility": true,
2420
+ "toolType": "action"
2421
+ },
2422
+ "is.workflow.actions.documentpicker.save": {
2423
+ "keywords": [
2424
+ "save",
2425
+ "file",
2426
+ "document",
2427
+ "icloud",
2428
+ "cloud",
2429
+ "upload",
2430
+ "copy",
2431
+ "iCloud",
2432
+ "Drive",
2433
+ "Dropbox"
2434
+ ],
2435
+ "name": "Save File",
2436
+ "outputResultName": "Saved File",
2437
+ "parameters": [
2438
+ {
2439
+ "description": null,
2440
+ "label": "Ask Where To Save",
2441
+ "pythonKeyword": "ask_where_to_save",
2442
+ "required": false,
2443
+ "types": [
2444
+ {
2445
+ "id": "bool",
2446
+ "kind": 1,
2447
+ "pythonName": "bool"
2448
+ }
2449
+ ],
2450
+ "wfKey": "WFAskWhereToSave"
2451
+ },
2452
+ {
2453
+ "description": "The path to save to, such as \"/folder/file.txt\"",
2454
+ "label": "Subpath",
2455
+ "pythonKeyword": "subpath",
2456
+ "required": false,
2457
+ "types": [
2458
+ {
2459
+ "id": "string",
2460
+ "kind": 1,
2461
+ "pythonName": "str"
2462
+ }
2463
+ ],
2464
+ "wfKey": "WFFileDestinationPath"
2465
+ },
2466
+ {
2467
+ "description": null,
2468
+ "label": "Folder",
2469
+ "pythonKeyword": "folder",
2470
+ "required": false,
2471
+ "types": [
2472
+ {
2473
+ "id": "file",
2474
+ "kind": 1,
2475
+ "pythonName": "File"
2476
+ }
2477
+ ],
2478
+ "wfKey": "WFFolder"
2479
+ },
2480
+ {
2481
+ "description": null,
2482
+ "label": "File",
2483
+ "pythonKeyword": "file",
2484
+ "required": false,
2485
+ "types": [
2486
+ {
2487
+ "id": "file",
2488
+ "kind": 1,
2489
+ "pythonName": "File"
2490
+ }
2491
+ ],
2492
+ "wfKey": "WFInput"
2493
+ },
2494
+ {
2495
+ "description": null,
2496
+ "label": "Overwrite If File Exists",
2497
+ "pythonKeyword": "overwrite_if_file_exists",
2498
+ "required": false,
2499
+ "types": [
2500
+ {
2501
+ "id": "bool",
2502
+ "kind": 1,
2503
+ "pythonName": "bool"
2504
+ }
2505
+ ],
2506
+ "wfKey": "WFSaveFileOverwrite"
2507
+ }
2508
+ ],
2509
+ "pythonName": "finder_save_file",
2510
+ "sampleShortcuts": [
2511
+ "NL - Files"
2512
+ ],
2513
+ "sourceFunctions": {
2514
+ "finder_save_file": [
2515
+ "ask_where_to_save",
2516
+ "file",
2517
+ "folder"
2518
+ ]
2519
+ },
2520
+ "status": "catalog_ready_observed_keywords",
2521
+ "summary": "Saves files to a specified folder. You can also use this action to copy a file.",
2522
+ "toolRendererEmbedded": false,
2523
+ "toolRendererScriptingUtility": false,
2524
+ "toolType": "action"
2525
+ },
2526
+ "is.workflow.actions.downloadurl": {
2527
+ "keywords": [
2528
+ "URL",
2529
+ "web",
2530
+ "display",
2531
+ "site",
2532
+ "open",
2533
+ "show",
2534
+ "post",
2535
+ "put",
2536
+ "api",
2537
+ "curl",
2538
+ "wget",
2539
+ "http",
2540
+ "headers",
2541
+ "request",
2542
+ "form"
2543
+ ],
2544
+ "name": "Get Contents of URL",
2545
+ "outputResultName": "Contents of URL",
2546
+ "parameters": [
2547
+ {
2548
+ "description": null,
2549
+ "label": null,
2550
+ "pythonKeyword": "show_headers",
2551
+ "required": null,
2552
+ "types": [],
2553
+ "wfKey": "ShowHeaders"
2554
+ },
2555
+ {
2556
+ "description": null,
2557
+ "label": "Form Values",
2558
+ "pythonKeyword": "form_values",
2559
+ "required": false,
2560
+ "types": [
2561
+ {
2562
+ "id": "dictionary",
2563
+ "kind": 1,
2564
+ "pythonName": "dict[Any, Any]"
2565
+ }
2566
+ ],
2567
+ "wfKey": "WFFormValues"
2568
+ },
2569
+ {
2570
+ "description": null,
2571
+ "label": "Request Body",
2572
+ "pythonKeyword": "request_body",
2573
+ "required": false,
2574
+ "types": [
2575
+ {
2576
+ "cases": [
2577
+ {
2578
+ "id": "File",
2579
+ "title": "File"
2580
+ },
2581
+ {
2582
+ "id": "Form",
2583
+ "title": "Form"
2584
+ },
2585
+ {
2586
+ "id": "JSON",
2587
+ "title": "JSON"
2588
+ }
2589
+ ],
2590
+ "id": "com.apple.shortcuts.is.workflow.actions.downloadurl.WFHTTPBodyType",
2591
+ "kind": 4,
2592
+ "name": "Request Body",
2593
+ "pythonName": "downloadurl_wfhttpbody_type"
2594
+ }
2595
+ ],
2596
+ "wfKey": "WFHTTPBodyType"
2597
+ },
2598
+ {
2599
+ "description": null,
2600
+ "label": "Headers",
2601
+ "pythonKeyword": "headers",
2602
+ "required": false,
2603
+ "types": [
2604
+ {
2605
+ "id": "dictionary",
2606
+ "kind": 1,
2607
+ "pythonName": "dict[Any, Any]"
2608
+ }
2609
+ ],
2610
+ "wfKey": "WFHTTPHeaders"
2611
+ },
2612
+ {
2613
+ "description": "The HTTP method to use.",
2614
+ "label": "Method",
2615
+ "pythonKeyword": "method",
2616
+ "required": false,
2617
+ "types": [
2618
+ {
2619
+ "cases": [
2620
+ {
2621
+ "id": "DELETE",
2622
+ "title": "DELETE"
2623
+ },
2624
+ {
2625
+ "id": "GET",
2626
+ "title": "GET"
2627
+ },
2628
+ {
2629
+ "id": "PATCH",
2630
+ "title": "PATCH"
2631
+ },
2632
+ {
2633
+ "id": "POST",
2634
+ "title": "POST"
2635
+ },
2636
+ {
2637
+ "id": "PUT",
2638
+ "title": "PUT"
2639
+ }
2640
+ ],
2641
+ "id": "com.apple.shortcuts.is.workflow.actions.downloadurl.WFHTTPMethod",
2642
+ "kind": 4,
2643
+ "name": "Method",
2644
+ "pythonName": "downloadurl_wfhttpmethod"
2645
+ }
2646
+ ],
2647
+ "wfKey": "WFHTTPMethod"
2648
+ },
2649
+ {
2650
+ "description": null,
2651
+ "label": "JSON Values",
2652
+ "pythonKeyword": "json_values",
2653
+ "required": false,
2654
+ "types": [
2655
+ {
2656
+ "id": "dictionary",
2657
+ "kind": 1,
2658
+ "pythonName": "dict[Any, Any]"
2659
+ }
2660
+ ],
2661
+ "wfKey": "WFJSONValues"
2662
+ },
2663
+ {
2664
+ "description": null,
2665
+ "label": "File",
2666
+ "pythonKeyword": "file",
2667
+ "required": false,
2668
+ "types": [
2669
+ {
2670
+ "id": "com.apple.shortcuts.WFContentItem",
2671
+ "kind": 2,
2672
+ "name": "Anything",
2673
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
2674
+ }
2675
+ ],
2676
+ "wfKey": "WFRequestVariable"
2677
+ },
2678
+ {
2679
+ "description": null,
2680
+ "label": "URL",
2681
+ "pythonKeyword": "url",
2682
+ "required": false,
2683
+ "types": [
2684
+ {
2685
+ "id": "string",
2686
+ "kind": 1,
2687
+ "pythonName": "str"
2688
+ }
2689
+ ],
2690
+ "wfKey": "WFURL"
2691
+ }
2692
+ ],
2693
+ "pythonName": "com_apple_shortcuts_get_contents_of_url",
2694
+ "sampleShortcuts": [
2695
+ "NL - Web JSON"
2696
+ ],
2697
+ "sourceFunctions": {
2698
+ "com_apple_shortcuts_get_contents_of_url": [
2699
+ "url"
2700
+ ]
2701
+ },
2702
+ "status": "catalog_ready_observed_keywords",
2703
+ "summary": "Gets the contents of URLs passed into the action. Useful for downloading files and web content, or for making API requests.",
2704
+ "toolRendererEmbedded": false,
2705
+ "toolRendererScriptingUtility": false,
2706
+ "toolType": "action"
2707
+ },
2708
+ "is.workflow.actions.file.select": {
2709
+ "keywords": [
2710
+ "file",
2711
+ "document",
2712
+ "picker",
2713
+ "open",
2714
+ "folder"
2715
+ ],
2716
+ "name": "Select File",
2717
+ "outputResultName": "File",
2718
+ "parameters": [
2719
+ {
2720
+ "description": null,
2721
+ "label": "Select Multiple",
2722
+ "pythonKeyword": "select_multiple",
2723
+ "required": false,
2724
+ "types": [
2725
+ {
2726
+ "id": "bool",
2727
+ "kind": 1,
2728
+ "pythonName": "bool"
2729
+ }
2730
+ ],
2731
+ "wfKey": "SelectMultiple"
2732
+ },
2733
+ {
2734
+ "description": null,
2735
+ "label": "Type",
2736
+ "pythonKeyword": "type",
2737
+ "required": false,
2738
+ "types": [
2739
+ {
2740
+ "cases": [
2741
+ {
2742
+ "id": "Files",
2743
+ "title": "Files"
2744
+ },
2745
+ {
2746
+ "id": "Folders",
2747
+ "title": "Folders"
2748
+ }
2749
+ ],
2750
+ "id": "com.apple.shortcuts.is.workflow.actions.file.select.WFPickingMode",
2751
+ "kind": 4,
2752
+ "name": "Type",
2753
+ "pythonName": "file_select_wfpicking_mode"
2754
+ }
2755
+ ],
2756
+ "wfKey": "WFPickingMode"
2757
+ }
2758
+ ],
2759
+ "pythonName": "finder_select_file",
2760
+ "sampleShortcuts": [
2761
+ "NL - Files"
2762
+ ],
2763
+ "sourceFunctions": {
2764
+ "finder_select_file": []
2765
+ },
2766
+ "status": "catalog_ready_observed_keywords",
2767
+ "summary": "Prompts to select files or folders.",
2768
+ "toolRendererEmbedded": false,
2769
+ "toolRendererScriptingUtility": false,
2770
+ "toolType": "action"
2771
+ },
2772
+ "is.workflow.actions.getitemfromlist": {
2773
+ "keywords": [
2774
+ "indices",
2775
+ "index",
2776
+ "subset",
2777
+ "first",
2778
+ "last",
2779
+ "random"
2780
+ ],
2781
+ "name": "Get Item from List",
2782
+ "outputResultName": "Item from List",
2783
+ "parameters": [
2784
+ {
2785
+ "description": null,
2786
+ "label": "List",
2787
+ "pythonKeyword": "list",
2788
+ "required": false,
2789
+ "types": [
2790
+ {
2791
+ "id": "com.apple.shortcuts.WFContentItem",
2792
+ "kind": 2,
2793
+ "name": "Anything",
2794
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
2795
+ }
2796
+ ],
2797
+ "wfKey": "WFInput"
2798
+ },
2799
+ {
2800
+ "description": null,
2801
+ "label": "Index",
2802
+ "pythonKeyword": "index",
2803
+ "required": false,
2804
+ "types": [
2805
+ {
2806
+ "id": "int",
2807
+ "kind": 1,
2808
+ "pythonName": "int"
2809
+ }
2810
+ ],
2811
+ "wfKey": "WFItemIndex"
2812
+ },
2813
+ {
2814
+ "description": null,
2815
+ "label": "End Index",
2816
+ "pythonKeyword": "end_index",
2817
+ "required": false,
2818
+ "types": [
2819
+ {
2820
+ "id": "int",
2821
+ "kind": 1,
2822
+ "pythonName": "int"
2823
+ }
2824
+ ],
2825
+ "wfKey": "WFItemRangeEnd"
2826
+ },
2827
+ {
2828
+ "description": null,
2829
+ "label": "Start Index",
2830
+ "pythonKeyword": "start_index",
2831
+ "required": false,
2832
+ "types": [
2833
+ {
2834
+ "id": "int",
2835
+ "kind": 1,
2836
+ "pythonName": "int"
2837
+ }
2838
+ ],
2839
+ "wfKey": "WFItemRangeStart"
2840
+ },
2841
+ {
2842
+ "description": null,
2843
+ "label": "Get",
2844
+ "pythonKeyword": "get",
2845
+ "required": false,
2846
+ "types": [
2847
+ {
2848
+ "cases": [
2849
+ {
2850
+ "id": "First Item",
2851
+ "title": "First Item"
2852
+ },
2853
+ {
2854
+ "id": "Item At Index",
2855
+ "title": "Item at Index"
2856
+ },
2857
+ {
2858
+ "id": "Items in Range",
2859
+ "title": "Items in Range"
2860
+ },
2861
+ {
2862
+ "id": "Last Item",
2863
+ "title": "Last Item"
2864
+ },
2865
+ {
2866
+ "id": "Random Item",
2867
+ "title": "Random Item"
2868
+ }
2869
+ ],
2870
+ "id": "com.apple.shortcuts.is.workflow.actions.getitemfromlist.WFItemSpecifier",
2871
+ "kind": 4,
2872
+ "name": "Get",
2873
+ "pythonName": "getitemfromlist_wfitem_specifier"
2874
+ }
2875
+ ],
2876
+ "wfKey": "WFItemSpecifier"
2877
+ }
2878
+ ],
2879
+ "pythonName": "com_apple_shortcuts_get_item_from_list",
2880
+ "sampleShortcuts": [
2881
+ "Funny Hello World",
2882
+ "NL - Files"
2883
+ ],
2884
+ "sourceFunctions": {
2885
+ "com_apple_shortcuts_get_item_from_list": [
2886
+ "list"
2887
+ ]
2888
+ },
2889
+ "status": "catalog_ready_observed_keywords",
2890
+ "summary": "Returns one or more items from the list passed as input. You can get the first item, the last item, a random item, the item at a particular index, or items in a range of indexes.",
2891
+ "toolRendererEmbedded": false,
2892
+ "toolRendererScriptingUtility": false,
2893
+ "toolType": "action"
2894
+ },
2895
+ "is.workflow.actions.gettext": {
2896
+ "keywords": [
2897
+ "text",
2898
+ "such text",
2899
+ "very speech",
2900
+ "much words",
2901
+ "so wow",
2902
+ "string"
2903
+ ],
2904
+ "name": "Text",
2905
+ "outputResultName": "Text",
2906
+ "parameters": [
2907
+ {
2908
+ "description": null,
2909
+ "label": "Text",
2910
+ "pythonKeyword": "text",
2911
+ "required": false,
2912
+ "types": [
2913
+ {
2914
+ "id": "string",
2915
+ "kind": 1,
2916
+ "pythonName": "str"
2917
+ }
2918
+ ],
2919
+ "wfKey": "WFTextActionText"
2920
+ }
2921
+ ],
2922
+ "pythonName": "com_apple_shortcuts_text",
2923
+ "sampleShortcuts": [
2924
+ "Add to List and Otherwise If",
2925
+ "NL - Files"
2926
+ ],
2927
+ "sourceFunctions": {
2928
+ "com_apple_shortcuts_text": [
2929
+ "text"
2930
+ ]
2931
+ },
2932
+ "status": "catalog_ready_observed_keywords",
2933
+ "summary": "Passes the specified text to the next action.",
2934
+ "toolRendererEmbedded": true,
2935
+ "toolRendererScriptingUtility": true,
2936
+ "toolType": "action"
2937
+ },
2938
+ "is.workflow.actions.getvalueforkey": {
2939
+ "keywords": [
2940
+ "json",
2941
+ "plist",
2942
+ "xml",
2943
+ "urlencoded",
2944
+ "query",
2945
+ "string",
2946
+ "for",
2947
+ "key"
2948
+ ],
2949
+ "name": "Get Dictionary Value",
2950
+ "outputResultName": "Dictionary Value",
2951
+ "parameters": [
2952
+ {
2953
+ "description": null,
2954
+ "label": "Key",
2955
+ "pythonKeyword": null,
2956
+ "required": false,
2957
+ "types": [
2958
+ {
2959
+ "id": "string",
2960
+ "kind": 1,
2961
+ "pythonName": "str"
2962
+ }
2963
+ ],
2964
+ "wfKey": "WFDictionaryKey"
2965
+ },
2966
+ {
2967
+ "description": null,
2968
+ "label": "Get",
2969
+ "pythonKeyword": null,
2970
+ "required": false,
2971
+ "types": [
2972
+ {
2973
+ "cases": [
2974
+ {
2975
+ "id": "All Keys",
2976
+ "title": "All Keys"
2977
+ },
2978
+ {
2979
+ "id": "All Values",
2980
+ "title": "All Values"
2981
+ },
2982
+ {
2983
+ "id": "Value",
2984
+ "title": "Value"
2985
+ }
2986
+ ],
2987
+ "id": "com.apple.shortcuts.is.workflow.actions.getvalueforkey.WFGetDictionaryValueType",
2988
+ "kind": 4,
2989
+ "name": "Get",
2990
+ "pythonName": "getvalueforkey_wfget_dictionary_value_type"
2991
+ }
2992
+ ],
2993
+ "wfKey": "WFGetDictionaryValueType"
2994
+ },
2995
+ {
2996
+ "description": null,
2997
+ "label": "Dictionary",
2998
+ "pythonKeyword": null,
2999
+ "required": false,
3000
+ "types": [
3001
+ {
3002
+ "id": "com.apple.shortcuts.WFContentItem",
3003
+ "kind": 2,
3004
+ "name": "Anything",
3005
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3006
+ }
3007
+ ],
3008
+ "wfKey": "WFInput"
3009
+ }
3010
+ ],
3011
+ "pythonName": "com_apple_shortcuts_get_dictionary_value",
3012
+ "sampleShortcuts": [
3013
+ "NL - Web JSON"
3014
+ ],
3015
+ "sourceFunctions": {
3016
+ "com_apple_shortcuts_get_dictionary_value": []
3017
+ },
3018
+ "status": "catalog_ready_source_examples",
3019
+ "summary": "Gets the value for the specified key in the dictionary passed into the action.",
3020
+ "toolRendererEmbedded": true,
3021
+ "toolRendererScriptingUtility": true,
3022
+ "toolType": "action"
3023
+ },
3024
+ "is.workflow.actions.getvariable": {
3025
+ "keywords": [
3026
+ "programming",
3027
+ "scripting",
3028
+ "var"
3029
+ ],
3030
+ "name": "Get Variable",
3031
+ "outputResultName": "Variable",
3032
+ "parameters": [
3033
+ {
3034
+ "description": null,
3035
+ "label": "Variable",
3036
+ "pythonKeyword": null,
3037
+ "required": false,
3038
+ "types": [
3039
+ {
3040
+ "id": "com.apple.shortcuts.WFContentItem",
3041
+ "kind": 2,
3042
+ "name": "Anything",
3043
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3044
+ }
3045
+ ],
3046
+ "wfKey": "WFVariable"
3047
+ }
3048
+ ],
3049
+ "pythonName": "com_apple_shortcuts_get_variable",
3050
+ "sampleShortcuts": [],
3051
+ "sourceFunctions": {},
3052
+ "status": "toolrenderer_embedded_toolkit_metadata",
3053
+ "summary": "Gets the value of the specified variable and passes it to the next action.",
3054
+ "toolRendererEmbedded": true,
3055
+ "toolRendererScriptingUtility": true,
3056
+ "toolType": "action"
3057
+ },
3058
+ "is.workflow.actions.list": {
3059
+ "keywords": [
3060
+ "array"
3061
+ ],
3062
+ "name": "List",
3063
+ "outputResultName": "List",
3064
+ "parameters": [
3065
+ {
3066
+ "description": null,
3067
+ "label": null,
3068
+ "pythonKeyword": "wfitems",
3069
+ "required": null,
3070
+ "types": [],
3071
+ "wfKey": "WFItems"
3072
+ }
3073
+ ],
3074
+ "pythonName": "com_apple_shortcuts_list",
3075
+ "sampleShortcuts": [
3076
+ "Add to List and Otherwise If",
3077
+ "NL - List Conditional"
3078
+ ],
3079
+ "sourceFunctions": {},
3080
+ "status": "catalog_ready_observed_keywords",
3081
+ "summary": "Allows you to specify a list of items to be passed to the next action.",
3082
+ "toolRendererEmbedded": true,
3083
+ "toolRendererScriptingUtility": true,
3084
+ "toolType": "action"
3085
+ },
3086
+ "is.workflow.actions.measurement.convert": {
3087
+ "keywords": [
3088
+ "degrees",
3089
+ "distance",
3090
+ "pressure",
3091
+ "measure",
3092
+ "speed",
3093
+ "weather"
3094
+ ],
3095
+ "name": "Convert Measurement",
3096
+ "outputResultName": "Converted Measurement",
3097
+ "parameters": [
3098
+ {
3099
+ "description": null,
3100
+ "label": "Measurement",
3101
+ "pythonKeyword": null,
3102
+ "required": false,
3103
+ "types": [
3104
+ {
3105
+ "id": "com.apple.shortcuts.WFContentItem",
3106
+ "kind": 2,
3107
+ "name": "Anything",
3108
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3109
+ }
3110
+ ],
3111
+ "wfKey": "WFInput"
3112
+ },
3113
+ {
3114
+ "description": null,
3115
+ "label": "Unit",
3116
+ "pythonKeyword": null,
3117
+ "required": false,
3118
+ "types": [
3119
+ {
3120
+ "cases": [
3121
+ {
3122
+ "id": "Mm",
3123
+ "title": "Mm"
3124
+ },
3125
+ {
3126
+ "id": "NM",
3127
+ "title": "NM"
3128
+ },
3129
+ {
3130
+ "id": "cm",
3131
+ "title": "cm"
3132
+ },
3133
+ {
3134
+ "id": "dam",
3135
+ "title": "dam"
3136
+ },
3137
+ {
3138
+ "id": "dm",
3139
+ "title": "dm"
3140
+ },
3141
+ {
3142
+ "id": "ft",
3143
+ "title": "ft"
3144
+ },
3145
+ {
3146
+ "id": "ftm",
3147
+ "title": "ftm"
3148
+ },
3149
+ {
3150
+ "id": "fur",
3151
+ "title": "fur"
3152
+ },
3153
+ {
3154
+ "id": "hm",
3155
+ "title": "hm"
3156
+ },
3157
+ {
3158
+ "id": "in",
3159
+ "title": "in"
3160
+ },
3161
+ {
3162
+ "id": "km",
3163
+ "title": "km"
3164
+ },
3165
+ {
3166
+ "id": "ly",
3167
+ "title": "ly"
3168
+ },
3169
+ {
3170
+ "id": "m",
3171
+ "title": "m"
3172
+ },
3173
+ {
3174
+ "id": "mi",
3175
+ "title": "mi"
3176
+ },
3177
+ {
3178
+ "id": "mm",
3179
+ "title": "mm"
3180
+ },
3181
+ {
3182
+ "id": "nm",
3183
+ "title": "nm"
3184
+ },
3185
+ {
3186
+ "id": "pc",
3187
+ "title": "pc"
3188
+ },
3189
+ {
3190
+ "id": "pm",
3191
+ "title": "pm"
3192
+ },
3193
+ {
3194
+ "id": "smi",
3195
+ "title": "smi"
3196
+ },
3197
+ {
3198
+ "id": "ua",
3199
+ "title": "ua"
3200
+ },
3201
+ {
3202
+ "id": "yd",
3203
+ "title": "yd"
3204
+ },
3205
+ {
3206
+ "id": "\u00b5m",
3207
+ "title": "\u00b5m"
3208
+ }
3209
+ ],
3210
+ "id": "com.apple.shortcuts.is.workflow.actions.measurement.convert.WFMeasurementUnit",
3211
+ "kind": 4,
3212
+ "name": "Unit",
3213
+ "pythonName": "measurement_convert_wfmeasurement_unit"
3214
+ }
3215
+ ],
3216
+ "wfKey": "WFMeasurementUnit"
3217
+ },
3218
+ {
3219
+ "description": null,
3220
+ "label": "Type",
3221
+ "pythonKeyword": null,
3222
+ "required": false,
3223
+ "types": [
3224
+ {
3225
+ "cases": [
3226
+ {
3227
+ "id": "Acceleration",
3228
+ "title": "Acceleration"
3229
+ },
3230
+ {
3231
+ "id": "Angle",
3232
+ "title": "Angle"
3233
+ },
3234
+ {
3235
+ "id": "Area",
3236
+ "title": "Area"
3237
+ },
3238
+ {
3239
+ "id": "Concentration Mass",
3240
+ "title": "Concentration Mass"
3241
+ },
3242
+ {
3243
+ "id": "Dispersion",
3244
+ "title": "Dispersion"
3245
+ },
3246
+ {
3247
+ "id": "Duration",
3248
+ "title": "Duration"
3249
+ },
3250
+ {
3251
+ "id": "Electric Charge",
3252
+ "title": "Electric Charge"
3253
+ },
3254
+ {
3255
+ "id": "Electric Current",
3256
+ "title": "Electric Current"
3257
+ },
3258
+ {
3259
+ "id": "Electric Potential Difference",
3260
+ "title": "Electric Potential Difference"
3261
+ },
3262
+ {
3263
+ "id": "Electric Resistance",
3264
+ "title": "Electric Resistance"
3265
+ },
3266
+ {
3267
+ "id": "Energy",
3268
+ "title": "Energy"
3269
+ },
3270
+ {
3271
+ "id": "Frequency",
3272
+ "title": "Frequency"
3273
+ },
3274
+ {
3275
+ "id": "Fuel Efficiency",
3276
+ "title": "Fuel Efficiency"
3277
+ },
3278
+ {
3279
+ "id": "Illuminance",
3280
+ "title": "Illuminance"
3281
+ },
3282
+ {
3283
+ "id": "Information Storage",
3284
+ "title": "Information Storage"
3285
+ },
3286
+ {
3287
+ "id": "Length",
3288
+ "title": "Length"
3289
+ },
3290
+ {
3291
+ "id": "Mass",
3292
+ "title": "Mass"
3293
+ },
3294
+ {
3295
+ "id": "Power",
3296
+ "title": "Power"
3297
+ },
3298
+ {
3299
+ "id": "Pressure",
3300
+ "title": "Pressure"
3301
+ },
3302
+ {
3303
+ "id": "Speed",
3304
+ "title": "Speed"
3305
+ },
3306
+ {
3307
+ "id": "Temperature",
3308
+ "title": "Temperature"
3309
+ },
3310
+ {
3311
+ "id": "Volume",
3312
+ "title": "Volume"
3313
+ }
3314
+ ],
3315
+ "id": "com.apple.shortcuts.is.workflow.actions.measurement.convert.WFMeasurementUnitType",
3316
+ "kind": 4,
3317
+ "name": "Type",
3318
+ "pythonName": "measurement_convert_wfmeasurement_unit_type"
3319
+ }
3320
+ ],
3321
+ "wfKey": "WFMeasurementUnitType"
3322
+ }
3323
+ ],
3324
+ "pythonName": "com_apple_measure_convert_measurement",
3325
+ "sampleShortcuts": [],
3326
+ "sourceFunctions": {},
3327
+ "status": "toolrenderer_embedded_toolkit_metadata",
3328
+ "summary": "Converts the measurements passed into the action to the specified unit.",
3329
+ "toolRendererEmbedded": true,
3330
+ "toolRendererScriptingUtility": false,
3331
+ "toolType": "action"
3332
+ },
3333
+ "is.workflow.actions.nothing": {
3334
+ "keywords": [
3335
+ "nil",
3336
+ "nothing",
3337
+ "empty",
3338
+ "discard",
3339
+ "clear"
3340
+ ],
3341
+ "name": "Nothing",
3342
+ "outputResultName": null,
3343
+ "parameters": [],
3344
+ "pythonName": "com_apple_shortcuts_nothing",
3345
+ "sampleShortcuts": [
3346
+ "Add to List and Otherwise If"
3347
+ ],
3348
+ "sourceFunctions": {},
3349
+ "status": "catalog_ready_source_examples",
3350
+ "summary": "This action does nothing and produces no output. It is useful to separate blocks of actions, or to explicitly pass an empty input to an action.",
3351
+ "toolRendererEmbedded": true,
3352
+ "toolRendererScriptingUtility": true,
3353
+ "toolType": "action"
3354
+ },
3355
+ "is.workflow.actions.notification": {
3356
+ "keywords": [
3357
+ "local",
3358
+ "notification",
3359
+ "show",
3360
+ "send",
3361
+ "alert",
3362
+ "reminder",
3363
+ "push"
3364
+ ],
3365
+ "name": "Show Notification",
3366
+ "outputResultName": null,
3367
+ "parameters": [
3368
+ {
3369
+ "description": null,
3370
+ "label": "Attachment",
3371
+ "pythonKeyword": "attachment",
3372
+ "required": false,
3373
+ "types": [
3374
+ {
3375
+ "id": "com.apple.shortcuts.WFContentItem",
3376
+ "kind": 2,
3377
+ "name": "Anything",
3378
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3379
+ }
3380
+ ],
3381
+ "wfKey": "WFInput"
3382
+ },
3383
+ {
3384
+ "description": null,
3385
+ "label": "Body",
3386
+ "pythonKeyword": "body",
3387
+ "required": false,
3388
+ "types": [
3389
+ {
3390
+ "id": "string",
3391
+ "kind": 1,
3392
+ "pythonName": "str"
3393
+ }
3394
+ ],
3395
+ "wfKey": "WFNotificationActionBody"
3396
+ },
3397
+ {
3398
+ "description": null,
3399
+ "label": "Play Sound",
3400
+ "pythonKeyword": "play_sound",
3401
+ "required": false,
3402
+ "types": [
3403
+ {
3404
+ "id": "bool",
3405
+ "kind": 1,
3406
+ "pythonName": "bool"
3407
+ }
3408
+ ],
3409
+ "wfKey": "WFNotificationActionSound"
3410
+ },
3411
+ {
3412
+ "description": null,
3413
+ "label": "Title",
3414
+ "pythonKeyword": "title",
3415
+ "required": false,
3416
+ "types": [
3417
+ {
3418
+ "id": "string",
3419
+ "kind": 1,
3420
+ "pythonName": "str"
3421
+ }
3422
+ ],
3423
+ "wfKey": "WFNotificationActionTitle"
3424
+ }
3425
+ ],
3426
+ "pythonName": "com_apple_shortcuts_show_notification",
3427
+ "sampleShortcuts": [
3428
+ "NL - Inline Automation App",
3429
+ "NL - Inline Automation Time"
3430
+ ],
3431
+ "sourceFunctions": {
3432
+ "com_apple_shortcuts_show_notification": [
3433
+ "body",
3434
+ "title"
3435
+ ]
3436
+ },
3437
+ "status": "catalog_ready_observed_keywords",
3438
+ "summary": "Displays a local notification.",
3439
+ "toolRendererEmbedded": false,
3440
+ "toolRendererScriptingUtility": false,
3441
+ "toolType": "action"
3442
+ },
3443
+ "is.workflow.actions.properties.files": {
3444
+ "keywords": [
3445
+ "property",
3446
+ "properties",
3447
+ "fetch"
3448
+ ],
3449
+ "name": "Get Details of Files",
3450
+ "outputResultName": "Details of Files",
3451
+ "parameters": [
3452
+ {
3453
+ "description": null,
3454
+ "label": "Detail",
3455
+ "pythonKeyword": "detail",
3456
+ "required": false,
3457
+ "types": [
3458
+ {
3459
+ "cases": [
3460
+ {
3461
+ "id": "Creation Date",
3462
+ "title": "Date Created"
3463
+ },
3464
+ {
3465
+ "id": "File Extension",
3466
+ "title": "File Extension"
3467
+ },
3468
+ {
3469
+ "id": "File Path",
3470
+ "title": "File Path"
3471
+ },
3472
+ {
3473
+ "id": "File Size",
3474
+ "title": "File Size"
3475
+ },
3476
+ {
3477
+ "id": "Last Modified Date",
3478
+ "title": "Date Modified"
3479
+ },
3480
+ {
3481
+ "id": "Name",
3482
+ "title": "Name"
3483
+ }
3484
+ ],
3485
+ "id": "com.apple.shortcuts.is.workflow.actions.properties.files.WFContentItemPropertyName",
3486
+ "kind": 4,
3487
+ "name": "Detail",
3488
+ "pythonName": "properties_files_wfcontent_item_property_name"
3489
+ }
3490
+ ],
3491
+ "wfKey": "WFContentItemPropertyName"
3492
+ },
3493
+ {
3494
+ "description": null,
3495
+ "label": "File",
3496
+ "pythonKeyword": "file",
3497
+ "required": false,
3498
+ "types": [
3499
+ {
3500
+ "id": "com.apple.shortcuts.WFContentItem",
3501
+ "kind": 2,
3502
+ "name": "Anything",
3503
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3504
+ }
3505
+ ],
3506
+ "wfKey": "WFInput"
3507
+ }
3508
+ ],
3509
+ "pythonName": "com_apple_shortcuts_get_details_of_files",
3510
+ "sampleShortcuts": [
3511
+ "NL - Files"
3512
+ ],
3513
+ "sourceFunctions": {
3514
+ "com_apple_shortcuts_get_details_of_files": [
3515
+ "detail",
3516
+ "file"
3517
+ ]
3518
+ },
3519
+ "status": "catalog_ready_observed_keywords",
3520
+ "summary": "Gets a specific piece of information from the files passed into the action.",
3521
+ "toolRendererEmbedded": false,
3522
+ "toolRendererScriptingUtility": false,
3523
+ "toolType": "action"
3524
+ },
3525
+ "is.workflow.actions.runapplescript": {
3526
+ "keywords": [
3527
+ "apple",
3528
+ "script",
3529
+ "hypertalk",
3530
+ "event",
3531
+ "OSA"
3532
+ ],
3533
+ "name": "Run AppleScript",
3534
+ "outputResultName": "AppleScript Result",
3535
+ "parameters": [
3536
+ {
3537
+ "description": null,
3538
+ "label": "Input",
3539
+ "pythonKeyword": null,
3540
+ "required": false,
3541
+ "types": [
3542
+ {
3543
+ "id": "com.apple.shortcuts.WFContentItem",
3544
+ "kind": 2,
3545
+ "name": "Anything",
3546
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3547
+ }
3548
+ ],
3549
+ "wfKey": "Input"
3550
+ },
3551
+ {
3552
+ "description": null,
3553
+ "label": "",
3554
+ "pythonKeyword": null,
3555
+ "required": false,
3556
+ "types": [
3557
+ {
3558
+ "id": "string",
3559
+ "kind": 1,
3560
+ "pythonName": "str"
3561
+ }
3562
+ ],
3563
+ "wfKey": "Script"
3564
+ }
3565
+ ],
3566
+ "pythonName": "com_apple_script_editor_2_run_apple_script",
3567
+ "sampleShortcuts": [],
3568
+ "sourceFunctions": {},
3569
+ "status": "toolrenderer_embedded_toolkit_metadata",
3570
+ "summary": "This action executes an AppleScript.",
3571
+ "toolRendererEmbedded": true,
3572
+ "toolRendererScriptingUtility": true,
3573
+ "toolType": "action"
3574
+ },
3575
+ "is.workflow.actions.runjavascriptforautomation": {
3576
+ "keywords": [
3577
+ "jxa",
3578
+ "apple",
3579
+ "script",
3580
+ "applescript",
3581
+ "event",
3582
+ "OSA"
3583
+ ],
3584
+ "name": "Run JavaScript for Mac Automation",
3585
+ "outputResultName": "JavaScript Result",
3586
+ "parameters": [
3587
+ {
3588
+ "description": null,
3589
+ "label": "Input",
3590
+ "pythonKeyword": null,
3591
+ "required": false,
3592
+ "types": [
3593
+ {
3594
+ "id": "com.apple.shortcuts.WFContentItem",
3595
+ "kind": 2,
3596
+ "name": "Anything",
3597
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3598
+ }
3599
+ ],
3600
+ "wfKey": "Input"
3601
+ },
3602
+ {
3603
+ "description": null,
3604
+ "label": "",
3605
+ "pythonKeyword": null,
3606
+ "required": false,
3607
+ "types": [
3608
+ {
3609
+ "id": "string",
3610
+ "kind": 1,
3611
+ "pythonName": "str"
3612
+ }
3613
+ ],
3614
+ "wfKey": "Script"
3615
+ }
3616
+ ],
3617
+ "pythonName": "com_apple_script_editor_2_run_java_script_for_mac_automation",
3618
+ "sampleShortcuts": [],
3619
+ "sourceFunctions": {},
3620
+ "status": "toolrenderer_embedded_toolkit_metadata",
3621
+ "summary": "This action executes a JavaScript for Automation (JXA) script.",
3622
+ "toolRendererEmbedded": true,
3623
+ "toolRendererScriptingUtility": true,
3624
+ "toolType": "action"
3625
+ },
3626
+ "is.workflow.actions.runjavascriptonwebpage": {
3627
+ "keywords": [
3628
+ "script",
3629
+ "safari",
3630
+ "java",
3631
+ "javascript",
3632
+ "web page",
3633
+ "webkit",
3634
+ "browser",
3635
+ "json",
3636
+ "web",
3637
+ "page",
3638
+ "website"
3639
+ ],
3640
+ "name": "Run JavaScript on Active Safari Tab",
3641
+ "outputResultName": "JavaScript Result",
3642
+ "parameters": [
3643
+ {
3644
+ "description": null,
3645
+ "label": "Web Page",
3646
+ "pythonKeyword": null,
3647
+ "required": false,
3648
+ "types": [
3649
+ {
3650
+ "id": "com.apple.shortcuts.WFContentItem",
3651
+ "kind": 2,
3652
+ "name": "Anything",
3653
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3654
+ }
3655
+ ],
3656
+ "wfKey": "WFInput"
3657
+ },
3658
+ {
3659
+ "description": null,
3660
+ "label": "JavaScript",
3661
+ "pythonKeyword": null,
3662
+ "required": false,
3663
+ "types": [
3664
+ {
3665
+ "id": "string",
3666
+ "kind": 1,
3667
+ "pythonName": "str"
3668
+ }
3669
+ ],
3670
+ "wfKey": "WFJavaScript"
3671
+ }
3672
+ ],
3673
+ "pythonName": "safari_run_java_script_on_active_safari_tab",
3674
+ "sampleShortcuts": [],
3675
+ "sourceFunctions": {},
3676
+ "status": "toolrenderer_embedded_toolkit_metadata",
3677
+ "summary": "Runs JavaScript on a Safari web page passed in as input",
3678
+ "toolRendererEmbedded": true,
3679
+ "toolRendererScriptingUtility": true,
3680
+ "toolType": "action"
3681
+ },
3682
+ "is.workflow.actions.runshellscript": {
3683
+ "keywords": [
3684
+ "script",
3685
+ "terminal",
3686
+ "bash",
3687
+ "zsh"
3688
+ ],
3689
+ "name": "Run Shell Script",
3690
+ "outputResultName": "Shell Script Result",
3691
+ "parameters": [
3692
+ {
3693
+ "description": null,
3694
+ "label": "Input",
3695
+ "pythonKeyword": null,
3696
+ "required": false,
3697
+ "types": [
3698
+ {
3699
+ "id": "com.apple.shortcuts.WFContentItem",
3700
+ "kind": 2,
3701
+ "name": "Anything",
3702
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3703
+ }
3704
+ ],
3705
+ "wfKey": "Input"
3706
+ },
3707
+ {
3708
+ "description": "to stdin: The input will be converted to a file and directed to the stdin pipe of the script.\nas arguments: The input will be converted to a list of strings and passed as arguments to the script.",
3709
+ "label": "Pass Input",
3710
+ "pythonKeyword": null,
3711
+ "required": false,
3712
+ "types": [
3713
+ {
3714
+ "cases": [
3715
+ {
3716
+ "id": "as arguments",
3717
+ "title": "as arguments"
3718
+ },
3719
+ {
3720
+ "id": "to stdin",
3721
+ "title": "to stdin"
3722
+ }
3723
+ ],
3724
+ "id": "com.apple.shortcuts.is.workflow.actions.runshellscript.InputMode",
3725
+ "kind": 4,
3726
+ "name": "Pass Input",
3727
+ "pythonName": "runshellscript_input_mode"
3728
+ }
3729
+ ],
3730
+ "wfKey": "InputMode"
3731
+ },
3732
+ {
3733
+ "description": "When enabled, Shortcuts will ask for an administrator\u2019s password and run the script as the root user. This is similar to using sudo on the command line.",
3734
+ "label": "Run as Administrator",
3735
+ "pythonKeyword": null,
3736
+ "required": false,
3737
+ "types": [
3738
+ {
3739
+ "id": "bool",
3740
+ "kind": 1,
3741
+ "pythonName": "bool"
3742
+ }
3743
+ ],
3744
+ "wfKey": "RunAsRoot"
3745
+ },
3746
+ {
3747
+ "description": null,
3748
+ "label": "",
3749
+ "pythonKeyword": null,
3750
+ "required": false,
3751
+ "types": [
3752
+ {
3753
+ "id": "string",
3754
+ "kind": 1,
3755
+ "pythonName": "str"
3756
+ }
3757
+ ],
3758
+ "wfKey": "Script"
3759
+ },
3760
+ {
3761
+ "description": "The shell to use for interpreting and running the script.",
3762
+ "label": "Shell",
3763
+ "pythonKeyword": null,
3764
+ "required": false,
3765
+ "types": [
3766
+ {
3767
+ "id": "string",
3768
+ "kind": 1,
3769
+ "pythonName": "str"
3770
+ }
3771
+ ],
3772
+ "wfKey": "Shell"
3773
+ }
3774
+ ],
3775
+ "pythonName": "com_apple_terminal_run_shell_script",
3776
+ "sampleShortcuts": [],
3777
+ "sourceFunctions": {},
3778
+ "status": "toolrenderer_embedded_toolkit_metadata",
3779
+ "summary": "This action executes a UNIX shell script. The script will execute starting in your user\u2019s home directory.",
3780
+ "toolRendererEmbedded": true,
3781
+ "toolRendererScriptingUtility": true,
3782
+ "toolType": "action"
3783
+ },
3784
+ "is.workflow.actions.runsshscript": {
3785
+ "keywords": [
3786
+ "unix",
3787
+ "shell",
3788
+ "script",
3789
+ "ssh",
3790
+ "terminal",
3791
+ "linux",
3792
+ "mac"
3793
+ ],
3794
+ "name": "Run Script Over SSH",
3795
+ "outputResultName": "Shell Script Result",
3796
+ "parameters": [
3797
+ {
3798
+ "description": null,
3799
+ "label": "Input",
3800
+ "pythonKeyword": null,
3801
+ "required": false,
3802
+ "types": [
3803
+ {
3804
+ "id": "com.apple.shortcuts.WFContentItem",
3805
+ "kind": 2,
3806
+ "name": "Anything",
3807
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3808
+ }
3809
+ ],
3810
+ "wfKey": "WFInput"
3811
+ },
3812
+ {
3813
+ "description": null,
3814
+ "label": "Authentication",
3815
+ "pythonKeyword": null,
3816
+ "required": false,
3817
+ "types": [
3818
+ {
3819
+ "cases": [
3820
+ {
3821
+ "id": "Password",
3822
+ "title": "Password"
3823
+ },
3824
+ {
3825
+ "id": "SSH Key",
3826
+ "title": "SSH Key"
3827
+ }
3828
+ ],
3829
+ "id": "com.apple.shortcuts.is.workflow.actions.runsshscript.WFSSHAuthenticationType",
3830
+ "kind": 4,
3831
+ "name": "Authentication",
3832
+ "pythonName": "runsshscript_wfsshauthentication_type"
3833
+ }
3834
+ ],
3835
+ "wfKey": "WFSSHAuthenticationType"
3836
+ },
3837
+ {
3838
+ "description": null,
3839
+ "label": "Host",
3840
+ "pythonKeyword": null,
3841
+ "required": false,
3842
+ "types": [
3843
+ {
3844
+ "id": "string",
3845
+ "kind": 1,
3846
+ "pythonName": "str"
3847
+ }
3848
+ ],
3849
+ "wfKey": "WFSSHHost"
3850
+ },
3851
+ {
3852
+ "description": null,
3853
+ "label": "Password",
3854
+ "pythonKeyword": null,
3855
+ "required": false,
3856
+ "types": [
3857
+ {
3858
+ "id": "string",
3859
+ "kind": 1,
3860
+ "pythonName": "str"
3861
+ }
3862
+ ],
3863
+ "wfKey": "WFSSHPassword"
3864
+ },
3865
+ {
3866
+ "description": null,
3867
+ "label": "Port",
3868
+ "pythonKeyword": null,
3869
+ "required": false,
3870
+ "types": [
3871
+ {
3872
+ "id": "string",
3873
+ "kind": 1,
3874
+ "pythonName": "str"
3875
+ }
3876
+ ],
3877
+ "wfKey": "WFSSHPort"
3878
+ },
3879
+ {
3880
+ "description": null,
3881
+ "label": "Script",
3882
+ "pythonKeyword": null,
3883
+ "required": false,
3884
+ "types": [
3885
+ {
3886
+ "id": "string",
3887
+ "kind": 1,
3888
+ "pythonName": "str"
3889
+ }
3890
+ ],
3891
+ "wfKey": "WFSSHScript"
3892
+ },
3893
+ {
3894
+ "description": null,
3895
+ "label": "User",
3896
+ "pythonKeyword": null,
3897
+ "required": false,
3898
+ "types": [
3899
+ {
3900
+ "id": "string",
3901
+ "kind": 1,
3902
+ "pythonName": "str"
3903
+ }
3904
+ ],
3905
+ "wfKey": "WFSSHUser"
3906
+ }
3907
+ ],
3908
+ "pythonName": "com_apple_shortcuts_run_script_over_ssh",
3909
+ "sampleShortcuts": [],
3910
+ "sourceFunctions": {},
3911
+ "status": "toolrenderer_embedded_toolkit_metadata",
3912
+ "summary": "Runs a script on a remote computer over SSH.",
3913
+ "toolRendererEmbedded": true,
3914
+ "toolRendererScriptingUtility": true,
3915
+ "toolType": "action"
3916
+ },
3917
+ "is.workflow.actions.setitemname": {
3918
+ "keywords": [
3919
+ "title"
3920
+ ],
3921
+ "name": "Set Name",
3922
+ "outputResultName": "Renamed Item",
3923
+ "parameters": [
3924
+ {
3925
+ "description": "By default, Shortcuts will automatically include a file extension if one isn't specified. Turn this on if you want to create a file with no extension.",
3926
+ "label": "Don't Include File Extension",
3927
+ "pythonKeyword": "don_t_include_file_extension",
3928
+ "required": false,
3929
+ "types": [
3930
+ {
3931
+ "id": "bool",
3932
+ "kind": 1,
3933
+ "pythonName": "bool"
3934
+ }
3935
+ ],
3936
+ "wfKey": "WFDontIncludeFileExtension"
3937
+ },
3938
+ {
3939
+ "description": null,
3940
+ "label": "Input",
3941
+ "pythonKeyword": "input",
3942
+ "required": false,
3943
+ "types": [
3944
+ {
3945
+ "id": "com.apple.shortcuts.WFContentItem",
3946
+ "kind": 2,
3947
+ "name": "Anything",
3948
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
3949
+ }
3950
+ ],
3951
+ "wfKey": "WFInput"
3952
+ },
3953
+ {
3954
+ "description": null,
3955
+ "label": "Name",
3956
+ "pythonKeyword": "name",
3957
+ "required": false,
3958
+ "types": [
3959
+ {
3960
+ "id": "string",
3961
+ "kind": 1,
3962
+ "pythonName": "str"
3963
+ }
3964
+ ],
3965
+ "wfKey": "WFName"
3966
+ }
3967
+ ],
3968
+ "pythonName": "com_apple_shortcuts_set_name",
3969
+ "sampleShortcuts": [
3970
+ "NL - Files"
3971
+ ],
3972
+ "sourceFunctions": {
3973
+ "com_apple_shortcuts_set_name": [
3974
+ "don_t_include_file_extension",
3975
+ "input",
3976
+ "name"
3977
+ ]
3978
+ },
3979
+ "status": "catalog_ready_observed_keywords",
3980
+ "summary": "Sets the name of the item passed as input.",
3981
+ "toolRendererEmbedded": false,
3982
+ "toolRendererScriptingUtility": false,
3983
+ "toolType": "action"
3984
+ },
3985
+ "is.workflow.actions.setvariable": {
3986
+ "keywords": [
3987
+ "programming",
3988
+ "scripting",
3989
+ "var"
3990
+ ],
3991
+ "name": "Set Variable",
3992
+ "outputResultName": null,
3993
+ "parameters": [
3994
+ {
3995
+ "description": null,
3996
+ "label": "Input",
3997
+ "pythonKeyword": "input",
3998
+ "required": false,
3999
+ "types": [
4000
+ {
4001
+ "id": "com.apple.shortcuts.WFContentItem",
4002
+ "kind": 2,
4003
+ "name": "Anything",
4004
+ "pythonName": "com_apple_shortcuts_wfcontent_item"
4005
+ }
4006
+ ],
4007
+ "wfKey": "WFInput"
4008
+ },
4009
+ {
4010
+ "description": null,
4011
+ "label": "Variable",
4012
+ "pythonKeyword": "variable",
4013
+ "required": false,
4014
+ "types": [
4015
+ {
4016
+ "id": "string",
4017
+ "kind": 1,
4018
+ "pythonName": "str"
4019
+ }
4020
+ ],
4021
+ "wfKey": "WFVariableName"
4022
+ }
4023
+ ],
4024
+ "pythonName": "com_apple_shortcuts_set_variable",
4025
+ "sampleShortcuts": [
4026
+ "Add to List and Otherwise If"
4027
+ ],
4028
+ "sourceFunctions": {},
4029
+ "status": "catalog_ready_observed_keywords",
4030
+ "summary": "Sets the value of the specified variable to the input of this action.",
4031
+ "toolRendererEmbedded": false,
4032
+ "toolRendererScriptingUtility": false,
4033
+ "toolType": "action"
4034
+ },
4035
+ "is.workflow.actions.showresult": {
4036
+ "keywords": [
4037
+ "text",
4038
+ "result",
4039
+ "string",
4040
+ "display",
4041
+ "alert",
4042
+ "present",
4043
+ "reveal",
4044
+ "notification",
4045
+ "image",
4046
+ "output"
4047
+ ],
4048
+ "name": "Show Content",
4049
+ "outputResultName": null,
4050
+ "parameters": [
4051
+ {
4052
+ "description": null,
4053
+ "label": "Content",
4054
+ "pythonKeyword": "content",
4055
+ "required": true,
4056
+ "types": [
4057
+ {
4058
+ "id": "string",
4059
+ "kind": 1,
4060
+ "pythonName": "str"
4061
+ }
4062
+ ],
4063
+ "wfKey": "Text"
4064
+ }
4065
+ ],
4066
+ "pythonName": "com_apple_shortcuts_show_content",
4067
+ "sampleShortcuts": [
4068
+ "Funny Hello World",
4069
+ "NL - Apple Intelligence",
4070
+ "NL - List Conditional",
4071
+ "NL - Web JSON"
4072
+ ],
4073
+ "sourceFunctions": {
4074
+ "com_apple_shortcuts_show_content": [
4075
+ "content"
4076
+ ]
4077
+ },
4078
+ "status": "catalog_ready_observed_keywords",
4079
+ "summary": "Shows a preview of the provided content. If run from Siri, speaks the provided text.",
4080
+ "toolRendererEmbedded": false,
4081
+ "toolRendererScriptingUtility": false,
4082
+ "toolType": "action"
4083
+ }
4084
+ }
4085
+ }