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,424 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>WFWorkflowActions</key>
6
+ <array>
7
+ <dict>
8
+ <key>WFWorkflowActionIdentifier</key>
9
+ <string>is.workflow.actions.comment</string>
10
+ <key>WFWorkflowActionParameters</key>
11
+ <dict>
12
+ <key>WFCommentActionText</key>
13
+ <string>Save selections from Safari webpages as highlights in Evernote. Ideal for articles that will have multiple highlights, which will be appended to the same note. The shortcut integrates with the ShareQuote shortcut to make it easy to share highlights with iOS extensions later.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.properties.safariwebpage</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>UUID</key>
22
+ <string>58397233-3DF2-42BA-8973-C82BF1159959</string>
23
+ <key>WFContentItemPropertyName</key>
24
+ <string>Page Selection</string>
25
+ </dict>
26
+ </dict>
27
+ <dict>
28
+ <key>WFWorkflowActionIdentifier</key>
29
+ <string>is.workflow.actions.getmarkdownfromrichtext</string>
30
+ <key>WFWorkflowActionParameters</key>
31
+ <dict>
32
+ <key>UUID</key>
33
+ <string>2DDA01D2-BDDB-478C-86ED-B292886642D3</string>
34
+ </dict>
35
+ </dict>
36
+ <dict>
37
+ <key>WFWorkflowActionIdentifier</key>
38
+ <string>is.workflow.actions.comment</string>
39
+ <key>WFWorkflowActionParameters</key>
40
+ <dict>
41
+ <key>WFCommentActionText</key>
42
+ <string>Clean trailing white space and new lines from the selection </string>
43
+ </dict>
44
+ </dict>
45
+ <dict>
46
+ <key>WFWorkflowActionIdentifier</key>
47
+ <string>is.workflow.actions.text.replace</string>
48
+ <key>WFWorkflowActionParameters</key>
49
+ <dict>
50
+ <key>WFReplaceTextFind</key>
51
+ <string>\s$</string>
52
+ <key>WFReplaceTextRegularExpression</key>
53
+ <true/>
54
+ <key>WFReplaceTextReplace</key>
55
+ <string></string>
56
+ </dict>
57
+ </dict>
58
+ <dict>
59
+ <key>WFWorkflowActionIdentifier</key>
60
+ <string>is.workflow.actions.text.replace</string>
61
+ <key>WFWorkflowActionParameters</key>
62
+ <dict>
63
+ <key>UUID</key>
64
+ <string>77980622-B3B8-428D-B14A-CB5A8516CE0E</string>
65
+ <key>WFReplaceTextFind</key>
66
+ <string>\n$</string>
67
+ <key>WFReplaceTextRegularExpression</key>
68
+ <true/>
69
+ <key>WFReplaceTextReplace</key>
70
+ <string></string>
71
+ </dict>
72
+ </dict>
73
+ <dict>
74
+ <key>WFWorkflowActionIdentifier</key>
75
+ <string>is.workflow.actions.gettext</string>
76
+ <key>WFWorkflowActionParameters</key>
77
+ <dict>
78
+ <key>UUID</key>
79
+ <string>E6973CAA-DC0D-4B4E-A172-0410F76F469A</string>
80
+ <key>WFTextActionText</key>
81
+ <dict>
82
+ <key>Value</key>
83
+ <dict>
84
+ <key>attachmentsByRange</key>
85
+ <dict>
86
+ <key>{1, 1}</key>
87
+ <dict>
88
+ <key>OutputName</key>
89
+ <string>Replace Text</string>
90
+ <key>OutputUUID</key>
91
+ <string>77980622-B3B8-428D-B14A-CB5A8516CE0E</string>
92
+ <key>Type</key>
93
+ <string>ActionOutput</string>
94
+ </dict>
95
+ </dict>
96
+ <key>string</key>
97
+ <string>**</string>
98
+ </dict>
99
+ <key>WFSerializationType</key>
100
+ <string>WFTextTokenString</string>
101
+ </dict>
102
+ </dict>
103
+ </dict>
104
+ <dict>
105
+ <key>WFWorkflowActionIdentifier</key>
106
+ <string>is.workflow.actions.getrichtextfrommarkdown</string>
107
+ <key>WFWorkflowActionParameters</key>
108
+ <dict>
109
+ <key>UUID</key>
110
+ <string>98961E9F-0572-407D-80C1-BFD39E2DF05F</string>
111
+ </dict>
112
+ </dict>
113
+ <dict>
114
+ <key>WFWorkflowActionIdentifier</key>
115
+ <string>is.workflow.actions.gethtmlfromrichtext</string>
116
+ <key>WFWorkflowActionParameters</key>
117
+ <dict>
118
+ <key>UUID</key>
119
+ <string>293AE1D9-0BE5-4C32-97C9-1B7DDF8C34F8</string>
120
+ </dict>
121
+ </dict>
122
+ <dict>
123
+ <key>WFWorkflowActionIdentifier</key>
124
+ <string>is.workflow.actions.comment</string>
125
+ <key>WFWorkflowActionParameters</key>
126
+ <dict>
127
+ <key>WFCommentActionText</key>
128
+ <string>Assemble portion of text that will be used by ShareQuote shortcut</string>
129
+ </dict>
130
+ </dict>
131
+ <dict>
132
+ <key>WFWorkflowActionIdentifier</key>
133
+ <string>is.workflow.actions.gettext</string>
134
+ <key>WFWorkflowActionParameters</key>
135
+ <dict>
136
+ <key>UUID</key>
137
+ <string>F190C9A2-920F-4DDD-9E94-0B648790A6C3</string>
138
+ <key>WFTextActionText</key>
139
+ <dict>
140
+ <key>Value</key>
141
+ <dict>
142
+ <key>attachmentsByRange</key>
143
+ <dict>
144
+ <key>{1, 1}</key>
145
+ <dict>
146
+ <key>OutputName</key>
147
+ <string>Replace Text</string>
148
+ <key>OutputUUID</key>
149
+ <string>77980622-B3B8-428D-B14A-CB5A8516CE0E</string>
150
+ <key>Type</key>
151
+ <string>ActionOutput</string>
152
+ </dict>
153
+ <key>{6, 1}</key>
154
+ <dict>
155
+ <key>Aggrandizements</key>
156
+ <array>
157
+ <dict>
158
+ <key>PropertyName</key>
159
+ <string>Page URL</string>
160
+ <key>Type</key>
161
+ <string>WFPropertyVariableAggrandizement</string>
162
+ </dict>
163
+ </array>
164
+ <key>Type</key>
165
+ <string>ExtensionInput</string>
166
+ </dict>
167
+ </dict>
168
+ <key>string</key>
169
+ <string>""
170
+
171
+
172
+ </string>
173
+ </dict>
174
+ <key>WFSerializationType</key>
175
+ <string>WFTextTokenString</string>
176
+ </dict>
177
+ </dict>
178
+ </dict>
179
+ <dict>
180
+ <key>WFWorkflowActionIdentifier</key>
181
+ <string>is.workflow.actions.urlencode</string>
182
+ <key>WFWorkflowActionParameters</key>
183
+ <dict>
184
+ <key>UUID</key>
185
+ <string>AB306F24-977D-4AFE-BF1E-4C2222D34CB5</string>
186
+ </dict>
187
+ </dict>
188
+ <dict>
189
+ <key>WFWorkflowActionIdentifier</key>
190
+ <string>is.workflow.actions.gettext</string>
191
+ <key>WFWorkflowActionParameters</key>
192
+ <dict>
193
+ <key>UUID</key>
194
+ <string>A1A29D53-2665-4602-BB34-18F5544F41A7</string>
195
+ <key>WFTextActionText</key>
196
+ <dict>
197
+ <key>Value</key>
198
+ <dict>
199
+ <key>attachmentsByRange</key>
200
+ <dict>
201
+ <key>{40, 1}</key>
202
+ <dict>
203
+ <key>OutputName</key>
204
+ <string>HTML from Rich Text</string>
205
+ <key>OutputUUID</key>
206
+ <string>293AE1D9-0BE5-4C32-97C9-1B7DDF8C34F8</string>
207
+ <key>Type</key>
208
+ <string>ActionOutput</string>
209
+ </dict>
210
+ <key>{58, 1}</key>
211
+ <dict>
212
+ <key>Aggrandizements</key>
213
+ <array>
214
+ <dict>
215
+ <key>PropertyName</key>
216
+ <string>Page URL</string>
217
+ <key>Type</key>
218
+ <string>WFPropertyVariableAggrandizement</string>
219
+ </dict>
220
+ </array>
221
+ <key>Type</key>
222
+ <string>ExtensionInput</string>
223
+ </dict>
224
+ </dict>
225
+ <key>string</key>
226
+ <string>&lt;span style="background-color: #FFFF00"&gt;&lt;/span&gt; &lt;a href=""&gt;∞&lt;/a&gt;</string>
227
+ </dict>
228
+ <key>WFSerializationType</key>
229
+ <string>WFTextTokenString</string>
230
+ </dict>
231
+ </dict>
232
+ </dict>
233
+ <dict>
234
+ <key>WFWorkflowActionIdentifier</key>
235
+ <string>is.workflow.actions.gettext</string>
236
+ <key>WFWorkflowActionParameters</key>
237
+ <dict>
238
+ <key>UUID</key>
239
+ <string>419F319F-C525-4628-BEAD-3D9A4FB638A2</string>
240
+ <key>WFTextActionText</key>
241
+ <dict>
242
+ <key>Value</key>
243
+ <dict>
244
+ <key>attachmentsByRange</key>
245
+ <dict>
246
+ <key>{13, 1}</key>
247
+ <dict>
248
+ <key>Aggrandizements</key>
249
+ <array>
250
+ <dict>
251
+ <key>Type</key>
252
+ <string>WFDateFormatVariableAggrandizement</string>
253
+ <key>WFDateFormatStyle</key>
254
+ <string>Medium</string>
255
+ <key>WFISO8601IncludeTime</key>
256
+ <false/>
257
+ <key>WFTimeFormatStyle</key>
258
+ <string>Short</string>
259
+ </dict>
260
+ </array>
261
+ <key>Type</key>
262
+ <string>CurrentDate</string>
263
+ </dict>
264
+ <key>{73, 1}</key>
265
+ <dict>
266
+ <key>OutputName</key>
267
+ <string>URL Encoded Text</string>
268
+ <key>OutputUUID</key>
269
+ <string>AB306F24-977D-4AFE-BF1E-4C2222D34CB5</string>
270
+ <key>Type</key>
271
+ <string>ActionOutput</string>
272
+ </dict>
273
+ </dict>
274
+ <key>string</key>
275
+ <string>**Highlight: ** ([Share](shortcuts://run-shortcut?name=ShareQuote&amp;input=))</string>
276
+ </dict>
277
+ <key>WFSerializationType</key>
278
+ <string>WFTextTokenString</string>
279
+ </dict>
280
+ </dict>
281
+ </dict>
282
+ <dict>
283
+ <key>WFWorkflowActionIdentifier</key>
284
+ <string>is.workflow.actions.getrichtextfrommarkdown</string>
285
+ <key>WFWorkflowActionParameters</key>
286
+ <dict>
287
+ <key>UUID</key>
288
+ <string>3193391D-E706-4862-8606-7DBBF3C4E21A</string>
289
+ </dict>
290
+ </dict>
291
+ <dict>
292
+ <key>WFWorkflowActionIdentifier</key>
293
+ <string>is.workflow.actions.gethtmlfromrichtext</string>
294
+ <key>WFWorkflowActionParameters</key>
295
+ <dict>
296
+ <key>CustomOutputName</key>
297
+ <string>Date</string>
298
+ <key>UUID</key>
299
+ <string>38387958-C3CE-427D-8506-629862F86E6B</string>
300
+ </dict>
301
+ </dict>
302
+ <dict>
303
+ <key>WFWorkflowActionIdentifier</key>
304
+ <string>is.workflow.actions.gettext</string>
305
+ <key>WFWorkflowActionParameters</key>
306
+ <dict>
307
+ <key>WFTextActionText</key>
308
+ <dict>
309
+ <key>Value</key>
310
+ <dict>
311
+ <key>attachmentsByRange</key>
312
+ <dict>
313
+ <key>{0, 1}</key>
314
+ <dict>
315
+ <key>OutputName</key>
316
+ <string>Date</string>
317
+ <key>OutputUUID</key>
318
+ <string>38387958-C3CE-427D-8506-629862F86E6B</string>
319
+ <key>Type</key>
320
+ <string>ActionOutput</string>
321
+ </dict>
322
+ <key>{2, 1}</key>
323
+ <dict>
324
+ <key>OutputName</key>
325
+ <string>Text</string>
326
+ <key>OutputUUID</key>
327
+ <string>A1A29D53-2665-4602-BB34-18F5544F41A7</string>
328
+ <key>Type</key>
329
+ <string>ActionOutput</string>
330
+ </dict>
331
+ </dict>
332
+ <key>string</key>
333
+ <string>
334
+ </string>
335
+ </dict>
336
+ <key>WFSerializationType</key>
337
+ <string>WFTextTokenString</string>
338
+ </dict>
339
+ </dict>
340
+ </dict>
341
+ <dict>
342
+ <key>WFWorkflowActionIdentifier</key>
343
+ <string>is.workflow.actions.getrichtextfromhtml</string>
344
+ <key>WFWorkflowActionParameters</key>
345
+ <dict/>
346
+ </dict>
347
+ <dict>
348
+ <key>WFWorkflowActionIdentifier</key>
349
+ <string>is.workflow.actions.evernote.append</string>
350
+ <key>WFWorkflowActionParameters</key>
351
+ <dict>
352
+ <key>WFEvernoteNotesNotebookName</key>
353
+ <string>Web Highlights</string>
354
+ <key>WFEvernoteNotesTitleSearch</key>
355
+ <dict>
356
+ <key>Value</key>
357
+ <dict>
358
+ <key>attachmentsByRange</key>
359
+ <dict>
360
+ <key>{0, 1}</key>
361
+ <dict>
362
+ <key>Aggrandizements</key>
363
+ <array>
364
+ <dict>
365
+ <key>CoercionItemClass</key>
366
+ <string>WFStringContentItem</string>
367
+ <key>Type</key>
368
+ <string>WFCoercionVariableAggrandizement</string>
369
+ </dict>
370
+ <dict>
371
+ <key>PropertyName</key>
372
+ <string>Name</string>
373
+ <key>PropertyUserInfo</key>
374
+ <string>WFItemName</string>
375
+ <key>Type</key>
376
+ <string>WFPropertyVariableAggrandizement</string>
377
+ </dict>
378
+ </array>
379
+ <key>OutputName</key>
380
+ <string>Details of Safari Webpage</string>
381
+ <key>OutputUUID</key>
382
+ <string>58397233-3DF2-42BA-8973-C82BF1159959</string>
383
+ <key>Type</key>
384
+ <string>ActionOutput</string>
385
+ </dict>
386
+ </dict>
387
+ <key>string</key>
388
+ <string></string>
389
+ </dict>
390
+ <key>WFSerializationType</key>
391
+ <string>WFTextTokenString</string>
392
+ </dict>
393
+ </dict>
394
+ </dict>
395
+ </array>
396
+ <key>WFWorkflowClientRelease</key>
397
+ <string>2.2</string>
398
+ <key>WFWorkflowClientVersion</key>
399
+ <string>770</string>
400
+ <key>WFWorkflowIcon</key>
401
+ <dict>
402
+ <key>WFWorkflowIconGlyphNumber</key>
403
+ <integer>59454</integer>
404
+ <key>WFWorkflowIconImageData</key>
405
+ <data>
406
+ </data>
407
+ <key>WFWorkflowIconStartColor</key>
408
+ <integer>4292093695</integer>
409
+ </dict>
410
+ <key>WFWorkflowImportQuestions</key>
411
+ <array/>
412
+ <key>WFWorkflowInputContentItemClasses</key>
413
+ <array>
414
+ <string>WFSafariWebPageContentItem</string>
415
+ </array>
416
+ <key>WFWorkflowMinimumClientVersion</key>
417
+ <integer>411</integer>
418
+ <key>WFWorkflowTypes</key>
419
+ <array>
420
+ <string>WatchKit</string>
421
+ <string>ActionExtension</string>
422
+ </array>
423
+ </dict>
424
+ </plist>