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,321 @@
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>Copy the release notes for the latest version of an app shared from the App Store. By default, the shortcut searches the U.S. App Store, but you can change the country to your locale.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.detect.link</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>UUID</key>
22
+ <string>CE180FEC-6BBC-40DA-A2DC-19FF80E66E4F</string>
23
+ </dict>
24
+ </dict>
25
+ <dict>
26
+ <key>WFWorkflowActionIdentifier</key>
27
+ <string>is.workflow.actions.url.expand</string>
28
+ <key>WFWorkflowActionParameters</key>
29
+ <dict>
30
+ <key>UUID</key>
31
+ <string>F9FC8B3E-4327-4CE1-B189-7882A57674A4</string>
32
+ </dict>
33
+ </dict>
34
+ <dict>
35
+ <key>WFWorkflowActionIdentifier</key>
36
+ <string>is.workflow.actions.text.match</string>
37
+ <key>WFWorkflowActionParameters</key>
38
+ <dict>
39
+ <key>UUID</key>
40
+ <string>61666F90-124C-4F8D-8D5E-5D1490BF9CBE</string>
41
+ <key>WFMatchTextPattern</key>
42
+ <string>/id(\d+).*</string>
43
+ </dict>
44
+ </dict>
45
+ <dict>
46
+ <key>WFWorkflowActionIdentifier</key>
47
+ <string>is.workflow.actions.text.match.getgroup</string>
48
+ <key>WFWorkflowActionParameters</key>
49
+ <dict>
50
+ <key>UUID</key>
51
+ <string>2B30DA92-4376-43AB-8591-FA968F9D7AAC</string>
52
+ </dict>
53
+ </dict>
54
+ <dict>
55
+ <key>WFWorkflowActionIdentifier</key>
56
+ <string>is.workflow.actions.searchappstore</string>
57
+ <key>WFWorkflowActionParameters</key>
58
+ <dict>
59
+ <key>UUID</key>
60
+ <string>53FDA47C-7D37-4AC2-9F01-D3D8C2F83AA5</string>
61
+ <key>WFAttribute</key>
62
+ <string>Product ID</string>
63
+ <key>WFSearchTerm</key>
64
+ <dict>
65
+ <key>Value</key>
66
+ <dict>
67
+ <key>attachmentsByRange</key>
68
+ <dict>
69
+ <key>{0, 1}</key>
70
+ <dict>
71
+ <key>OutputName</key>
72
+ <string>Group from Matched Text</string>
73
+ <key>OutputUUID</key>
74
+ <string>2B30DA92-4376-43AB-8591-FA968F9D7AAC</string>
75
+ <key>Type</key>
76
+ <string>ActionOutput</string>
77
+ </dict>
78
+ </dict>
79
+ <key>string</key>
80
+ <string></string>
81
+ </dict>
82
+ <key>WFSerializationType</key>
83
+ <string>WFTextTokenString</string>
84
+ </dict>
85
+ </dict>
86
+ </dict>
87
+ <dict>
88
+ <key>WFWorkflowActionIdentifier</key>
89
+ <string>is.workflow.actions.properties.appstore</string>
90
+ <key>WFWorkflowActionParameters</key>
91
+ <dict>
92
+ <key>UUID</key>
93
+ <string>8B391712-8E91-4C26-BB1E-6923132CFD1A</string>
94
+ <key>WFContentItemPropertyName</key>
95
+ <string>Release Notes</string>
96
+ </dict>
97
+ </dict>
98
+ <dict>
99
+ <key>WFWorkflowActionIdentifier</key>
100
+ <string>is.workflow.actions.getvariable</string>
101
+ <key>WFWorkflowActionParameters</key>
102
+ <dict>
103
+ <key>WFVariable</key>
104
+ <dict>
105
+ <key>Value</key>
106
+ <dict>
107
+ <key>OutputName</key>
108
+ <string>App Store Apps</string>
109
+ <key>OutputUUID</key>
110
+ <string>53FDA47C-7D37-4AC2-9F01-D3D8C2F83AA5</string>
111
+ <key>Type</key>
112
+ <string>ActionOutput</string>
113
+ </dict>
114
+ <key>WFSerializationType</key>
115
+ <string>WFTextTokenAttachment</string>
116
+ </dict>
117
+ </dict>
118
+ </dict>
119
+ <dict>
120
+ <key>WFWorkflowActionIdentifier</key>
121
+ <string>is.workflow.actions.properties.appstore</string>
122
+ <key>WFWorkflowActionParameters</key>
123
+ <dict>
124
+ <key>WFContentItemPropertyName</key>
125
+ <string>Last Updated</string>
126
+ </dict>
127
+ </dict>
128
+ <dict>
129
+ <key>WFWorkflowActionIdentifier</key>
130
+ <string>is.workflow.actions.format.date</string>
131
+ <key>WFWorkflowActionParameters</key>
132
+ <dict>
133
+ <key>UUID</key>
134
+ <string>65E343D0-30CB-4538-B479-252FDD14A9FF</string>
135
+ <key>WFTimeFormatStyle</key>
136
+ <string>None</string>
137
+ </dict>
138
+ </dict>
139
+ <dict>
140
+ <key>WFWorkflowActionIdentifier</key>
141
+ <string>is.workflow.actions.getvariable</string>
142
+ <key>WFWorkflowActionParameters</key>
143
+ <dict>
144
+ <key>WFVariable</key>
145
+ <dict>
146
+ <key>Value</key>
147
+ <dict>
148
+ <key>OutputName</key>
149
+ <string>App Store Apps</string>
150
+ <key>OutputUUID</key>
151
+ <string>53FDA47C-7D37-4AC2-9F01-D3D8C2F83AA5</string>
152
+ <key>Type</key>
153
+ <string>ActionOutput</string>
154
+ </dict>
155
+ <key>WFSerializationType</key>
156
+ <string>WFTextTokenAttachment</string>
157
+ </dict>
158
+ </dict>
159
+ </dict>
160
+ <dict>
161
+ <key>WFWorkflowActionIdentifier</key>
162
+ <string>is.workflow.actions.properties.appstore</string>
163
+ <key>WFWorkflowActionParameters</key>
164
+ <dict>
165
+ <key>UUID</key>
166
+ <string>49039A11-52CC-4585-9A25-6258E3E60C9D</string>
167
+ <key>WFContentItemPropertyName</key>
168
+ <string>Name</string>
169
+ </dict>
170
+ </dict>
171
+ <dict>
172
+ <key>WFWorkflowActionIdentifier</key>
173
+ <string>is.workflow.actions.gettext</string>
174
+ <key>WFWorkflowActionParameters</key>
175
+ <dict>
176
+ <key>CustomOutputName</key>
177
+ <string>Title</string>
178
+ <key>UUID</key>
179
+ <string>B1933FD8-FB3E-45DB-871D-9239A0186C0B</string>
180
+ <key>WFTextActionText</key>
181
+ <dict>
182
+ <key>Value</key>
183
+ <dict>
184
+ <key>attachmentsByRange</key>
185
+ <dict>
186
+ <key>{18, 1}</key>
187
+ <dict>
188
+ <key>OutputName</key>
189
+ <string>Details of App Store App</string>
190
+ <key>OutputUUID</key>
191
+ <string>49039A11-52CC-4585-9A25-6258E3E60C9D</string>
192
+ <key>Type</key>
193
+ <string>ActionOutput</string>
194
+ </dict>
195
+ <key>{37, 1}</key>
196
+ <dict>
197
+ <key>OutputName</key>
198
+ <string>Formatted Date</string>
199
+ <key>OutputUUID</key>
200
+ <string>65E343D0-30CB-4538-B479-252FDD14A9FF</string>
201
+ <key>Type</key>
202
+ <string>ActionOutput</string>
203
+ </dict>
204
+ </dict>
205
+ <key>string</key>
206
+ <string>Release Notes for 
207
+
208
+ 🗓 Last Updated </string>
209
+ </dict>
210
+ <key>WFSerializationType</key>
211
+ <string>WFTextTokenString</string>
212
+ </dict>
213
+ </dict>
214
+ </dict>
215
+ <dict>
216
+ <key>WFWorkflowActionIdentifier</key>
217
+ <string>is.workflow.actions.alert</string>
218
+ <key>WFWorkflowActionParameters</key>
219
+ <dict>
220
+ <key>WFAlertActionMessage</key>
221
+ <dict>
222
+ <key>Value</key>
223
+ <dict>
224
+ <key>attachmentsByRange</key>
225
+ <dict>
226
+ <key>{0, 1}</key>
227
+ <dict>
228
+ <key>OutputName</key>
229
+ <string>Details of App Store App</string>
230
+ <key>OutputUUID</key>
231
+ <string>8B391712-8E91-4C26-BB1E-6923132CFD1A</string>
232
+ <key>Type</key>
233
+ <string>ActionOutput</string>
234
+ </dict>
235
+ </dict>
236
+ <key>string</key>
237
+ <string></string>
238
+ </dict>
239
+ <key>WFSerializationType</key>
240
+ <string>WFTextTokenString</string>
241
+ </dict>
242
+ <key>WFAlertActionTitle</key>
243
+ <dict>
244
+ <key>Value</key>
245
+ <dict>
246
+ <key>attachmentsByRange</key>
247
+ <dict>
248
+ <key>{0, 1}</key>
249
+ <dict>
250
+ <key>OutputName</key>
251
+ <string>Title</string>
252
+ <key>OutputUUID</key>
253
+ <string>B1933FD8-FB3E-45DB-871D-9239A0186C0B</string>
254
+ <key>Type</key>
255
+ <string>ActionOutput</string>
256
+ </dict>
257
+ </dict>
258
+ <key>string</key>
259
+ <string></string>
260
+ </dict>
261
+ <key>WFSerializationType</key>
262
+ <string>WFTextTokenString</string>
263
+ </dict>
264
+ </dict>
265
+ </dict>
266
+ <dict>
267
+ <key>WFWorkflowActionIdentifier</key>
268
+ <string>is.workflow.actions.getvariable</string>
269
+ <key>WFWorkflowActionParameters</key>
270
+ <dict>
271
+ <key>WFVariable</key>
272
+ <dict>
273
+ <key>Value</key>
274
+ <dict>
275
+ <key>OutputName</key>
276
+ <string>Details of App Store App</string>
277
+ <key>OutputUUID</key>
278
+ <string>8B391712-8E91-4C26-BB1E-6923132CFD1A</string>
279
+ <key>Type</key>
280
+ <string>ActionOutput</string>
281
+ </dict>
282
+ <key>WFSerializationType</key>
283
+ <string>WFTextTokenAttachment</string>
284
+ </dict>
285
+ </dict>
286
+ </dict>
287
+ <dict>
288
+ <key>WFWorkflowActionIdentifier</key>
289
+ <string>is.workflow.actions.setclipboard</string>
290
+ <key>WFWorkflowActionParameters</key>
291
+ <dict/>
292
+ </dict>
293
+ </array>
294
+ <key>WFWorkflowClientRelease</key>
295
+ <string>2.1</string>
296
+ <key>WFWorkflowClientVersion</key>
297
+ <string>710</string>
298
+ <key>WFWorkflowIcon</key>
299
+ <dict>
300
+ <key>WFWorkflowIconGlyphNumber</key>
301
+ <integer>59446</integer>
302
+ <key>WFWorkflowIconImageData</key>
303
+ <data>
304
+ </data>
305
+ <key>WFWorkflowIconStartColor</key>
306
+ <integer>2071128575</integer>
307
+ </dict>
308
+ <key>WFWorkflowImportQuestions</key>
309
+ <array/>
310
+ <key>WFWorkflowInputContentItemClasses</key>
311
+ <array>
312
+ <string>WFAppStoreAppContentItem</string>
313
+ </array>
314
+ <key>WFWorkflowMinimumClientVersion</key>
315
+ <integer>411</integer>
316
+ <key>WFWorkflowTypes</key>
317
+ <array>
318
+ <string>ActionExtension</string>
319
+ </array>
320
+ </dict>
321
+ </plist>