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,136 @@
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>Search the App Store for an app and save its icon to the Photos app.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.searchappstore</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>UUID</key>
22
+ <string>D97CFFD0-4B5E-4AA3-8261-B17601F642C4</string>
23
+ <key>WFAttribute</key>
24
+ <string>All</string>
25
+ <key>WFEntity</key>
26
+ <string>iPhone</string>
27
+ <key>WFItemLimit</key>
28
+ <real>5</real>
29
+ <key>WFSearchTerm</key>
30
+ <dict>
31
+ <key>Value</key>
32
+ <dict>
33
+ <key>attachmentsByRange</key>
34
+ <dict>
35
+ <key>{0, 1}</key>
36
+ <dict>
37
+ <key>Type</key>
38
+ <string>Ask</string>
39
+ </dict>
40
+ </dict>
41
+ <key>string</key>
42
+ <string></string>
43
+ </dict>
44
+ <key>WFSerializationType</key>
45
+ <string>WFTextTokenString</string>
46
+ </dict>
47
+ </dict>
48
+ </dict>
49
+ <dict>
50
+ <key>WFWorkflowActionIdentifier</key>
51
+ <string>is.workflow.actions.choosefromlist</string>
52
+ <key>WFWorkflowActionParameters</key>
53
+ <dict>
54
+ <key>WFChooseFromListActionPrompt</key>
55
+ <string>Apps</string>
56
+ </dict>
57
+ </dict>
58
+ <dict>
59
+ <key>WFWorkflowActionIdentifier</key>
60
+ <string>is.workflow.actions.properties.appstore</string>
61
+ <key>WFWorkflowActionParameters</key>
62
+ <dict>
63
+ <key>WFContentItemPropertyName</key>
64
+ <string>Artwork URL</string>
65
+ </dict>
66
+ </dict>
67
+ <dict>
68
+ <key>WFWorkflowActionIdentifier</key>
69
+ <string>is.workflow.actions.downloadurl</string>
70
+ <key>WFWorkflowActionParameters</key>
71
+ <dict/>
72
+ </dict>
73
+ <dict>
74
+ <key>WFWorkflowActionIdentifier</key>
75
+ <string>is.workflow.actions.detect.images</string>
76
+ <key>WFWorkflowActionParameters</key>
77
+ <dict/>
78
+ </dict>
79
+ <dict>
80
+ <key>WFWorkflowActionIdentifier</key>
81
+ <string>is.workflow.actions.image.mask</string>
82
+ <key>WFWorkflowActionParameters</key>
83
+ <dict>
84
+ <key>WFMaskType</key>
85
+ <string>Icon</string>
86
+ </dict>
87
+ </dict>
88
+ <dict>
89
+ <key>WFWorkflowActionIdentifier</key>
90
+ <string>is.workflow.actions.savetocameraroll</string>
91
+ <key>WFWorkflowActionParameters</key>
92
+ <dict/>
93
+ </dict>
94
+ </array>
95
+ <key>WFWorkflowClientRelease</key>
96
+ <string>2.1</string>
97
+ <key>WFWorkflowClientVersion</key>
98
+ <string>710</string>
99
+ <key>WFWorkflowIcon</key>
100
+ <dict>
101
+ <key>WFWorkflowIconGlyphNumber</key>
102
+ <integer>59468</integer>
103
+ <key>WFWorkflowIconImageData</key>
104
+ <data>
105
+ </data>
106
+ <key>WFWorkflowIconStartColor</key>
107
+ <integer>-12365313</integer>
108
+ </dict>
109
+ <key>WFWorkflowImportQuestions</key>
110
+ <array/>
111
+ <key>WFWorkflowInputContentItemClasses</key>
112
+ <array>
113
+ <string>WFAppStoreAppContentItem</string>
114
+ <string>WFArticleContentItem</string>
115
+ <string>WFContactContentItem</string>
116
+ <string>WFDateContentItem</string>
117
+ <string>WFEmailAddressContentItem</string>
118
+ <string>WFGenericFileContentItem</string>
119
+ <string>WFImageContentItem</string>
120
+ <string>WFiTunesProductContentItem</string>
121
+ <string>WFLocationContentItem</string>
122
+ <string>WFDCMapsLinkContentItem</string>
123
+ <string>WFAVAssetContentItem</string>
124
+ <string>WFPDFContentItem</string>
125
+ <string>WFPhoneNumberContentItem</string>
126
+ <string>WFRichTextContentItem</string>
127
+ <string>WFSafariWebPageContentItem</string>
128
+ <string>WFStringContentItem</string>
129
+ <string>WFURLContentItem</string>
130
+ </array>
131
+ <key>WFWorkflowTypes</key>
132
+ <array>
133
+ <string>WatchKit</string>
134
+ </array>
135
+ </dict>
136
+ </plist>