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,1791 @@
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>WFQuickActionSurfaces</key>
6
+ <array/>
7
+ <key>WFWorkflowActions</key>
8
+ <array>
9
+ <dict>
10
+ <key>WFWorkflowActionIdentifier</key>
11
+ <string>is.workflow.actions.comment</string>
12
+ <key>WFWorkflowActionParameters</key>
13
+ <dict>
14
+ <key>WFCommentActionText</key>
15
+ <string>Redirect user profiles and individual posts from their original Mastodon instance back to your own instance.</string>
16
+ </dict>
17
+ </dict>
18
+ <dict>
19
+ <key>WFWorkflowActionIdentifier</key>
20
+ <string>is.workflow.actions.comment</string>
21
+ <key>WFWorkflowActionParameters</key>
22
+ <dict>
23
+ <key>WFCommentActionText</key>
24
+ <string>Enter your Mastodon app access token. You can create a Mastodon app in Settings &gt; Applications at your local Mastodon instance.
25
+
26
+ Make sure to add read:search permissions to the app.
27
+
28
+ This token will be used to communicate securely with the Mastodon API.</string>
29
+ </dict>
30
+ </dict>
31
+ <dict>
32
+ <key>WFWorkflowActionIdentifier</key>
33
+ <string>is.workflow.actions.gettext</string>
34
+ <key>WFWorkflowActionParameters</key>
35
+ <dict>
36
+ <key>CustomOutputName</key>
37
+ <string>Token</string>
38
+ <key>UUID</key>
39
+ <string>07DF77BD-13D5-49E5-A58D-0F9FD0907B74</string>
40
+ <key>WFTextActionText</key>
41
+ <string></string>
42
+ </dict>
43
+ </dict>
44
+ <dict>
45
+ <key>WFWorkflowActionIdentifier</key>
46
+ <string>is.workflow.actions.comment</string>
47
+ <key>WFWorkflowActionParameters</key>
48
+ <dict>
49
+ <key>WFCommentActionText</key>
50
+ <string>Enter the base URL of your Mastodon instance *without* a trailing slash at the end.
51
+
52
+ e.g. https://mastodon.social</string>
53
+ </dict>
54
+ </dict>
55
+ <dict>
56
+ <key>WFWorkflowActionIdentifier</key>
57
+ <string>is.workflow.actions.url</string>
58
+ <key>WFWorkflowActionParameters</key>
59
+ <dict>
60
+ <key>CustomOutputName</key>
61
+ <string>Mastodon Instance</string>
62
+ <key>UUID</key>
63
+ <string>17179A0E-1E7D-40E5-8C05-23F2517E6550</string>
64
+ </dict>
65
+ </dict>
66
+ <dict>
67
+ <key>WFWorkflowActionIdentifier</key>
68
+ <string>is.workflow.actions.setvariable</string>
69
+ <key>WFWorkflowActionParameters</key>
70
+ <dict>
71
+ <key>WFInput</key>
72
+ <dict>
73
+ <key>Value</key>
74
+ <dict>
75
+ <key>OutputName</key>
76
+ <string>Mastodon Instance</string>
77
+ <key>OutputUUID</key>
78
+ <string>17179A0E-1E7D-40E5-8C05-23F2517E6550</string>
79
+ <key>Type</key>
80
+ <string>ActionOutput</string>
81
+ </dict>
82
+ <key>WFSerializationType</key>
83
+ <string>WFTextTokenAttachment</string>
84
+ </dict>
85
+ <key>WFVariableName</key>
86
+ <string>Your Mastodon Instance</string>
87
+ </dict>
88
+ </dict>
89
+ <dict>
90
+ <key>WFWorkflowActionIdentifier</key>
91
+ <string>is.workflow.actions.comment</string>
92
+ <key>WFWorkflowActionParameters</key>
93
+ <dict>
94
+ <key>WFCommentActionText</key>
95
+ <string>This is the URL of the profile or toot we want redirect.</string>
96
+ </dict>
97
+ </dict>
98
+ <dict>
99
+ <key>WFWorkflowActionIdentifier</key>
100
+ <string>is.workflow.actions.detect.link</string>
101
+ <key>WFWorkflowActionParameters</key>
102
+ <dict>
103
+ <key>UUID</key>
104
+ <string>1AB4F2B0-AEAB-465E-ACBC-D3B2C6D31EA3</string>
105
+ <key>WFInput</key>
106
+ <dict>
107
+ <key>Value</key>
108
+ <dict>
109
+ <key>attachmentsByRange</key>
110
+ <dict>
111
+ <key>{0, 1}</key>
112
+ <dict>
113
+ <key>Type</key>
114
+ <string>ExtensionInput</string>
115
+ </dict>
116
+ </dict>
117
+ <key>string</key>
118
+ <string></string>
119
+ </dict>
120
+ <key>WFSerializationType</key>
121
+ <string>WFTextTokenString</string>
122
+ </dict>
123
+ </dict>
124
+ </dict>
125
+ <dict>
126
+ <key>WFWorkflowActionIdentifier</key>
127
+ <string>is.workflow.actions.setvariable</string>
128
+ <key>WFWorkflowActionParameters</key>
129
+ <dict>
130
+ <key>WFInput</key>
131
+ <dict>
132
+ <key>Value</key>
133
+ <dict>
134
+ <key>OutputName</key>
135
+ <string>URLs</string>
136
+ <key>OutputUUID</key>
137
+ <string>1AB4F2B0-AEAB-465E-ACBC-D3B2C6D31EA3</string>
138
+ <key>Type</key>
139
+ <string>ActionOutput</string>
140
+ </dict>
141
+ <key>WFSerializationType</key>
142
+ <string>WFTextTokenAttachment</string>
143
+ </dict>
144
+ <key>WFVariableName</key>
145
+ <string>Input URL</string>
146
+ </dict>
147
+ </dict>
148
+ <dict>
149
+ <key>WFWorkflowActionIdentifier</key>
150
+ <string>is.workflow.actions.comment</string>
151
+ <key>WFWorkflowActionParameters</key>
152
+ <dict>
153
+ <key>WFCommentActionText</key>
154
+ <string>If the input is empty, add different ways to try and get a URL.</string>
155
+ </dict>
156
+ </dict>
157
+ <dict>
158
+ <key>WFWorkflowActionIdentifier</key>
159
+ <string>is.workflow.actions.conditional</string>
160
+ <key>WFWorkflowActionParameters</key>
161
+ <dict>
162
+ <key>GroupingIdentifier</key>
163
+ <string>DD012B7D-2731-4B17-B17B-E7FADB510A8F</string>
164
+ <key>WFCondition</key>
165
+ <integer>101</integer>
166
+ <key>WFControlFlowMode</key>
167
+ <integer>0</integer>
168
+ <key>WFInput</key>
169
+ <dict>
170
+ <key>Type</key>
171
+ <string>Variable</string>
172
+ <key>Variable</key>
173
+ <dict>
174
+ <key>Value</key>
175
+ <dict>
176
+ <key>Type</key>
177
+ <string>Variable</string>
178
+ <key>VariableName</key>
179
+ <string>Input URL</string>
180
+ </dict>
181
+ <key>WFSerializationType</key>
182
+ <string>WFTextTokenAttachment</string>
183
+ </dict>
184
+ </dict>
185
+ </dict>
186
+ </dict>
187
+ <dict>
188
+ <key>WFWorkflowActionIdentifier</key>
189
+ <string>is.workflow.actions.conditional</string>
190
+ <key>WFWorkflowActionParameters</key>
191
+ <dict>
192
+ <key>GroupingIdentifier</key>
193
+ <string>4820A771-A752-46C7-924E-90380913E26C</string>
194
+ <key>WFCondition</key>
195
+ <integer>4</integer>
196
+ <key>WFConditionalActionString</key>
197
+ <string>Mac</string>
198
+ <key>WFControlFlowMode</key>
199
+ <integer>0</integer>
200
+ <key>WFInput</key>
201
+ <dict>
202
+ <key>Type</key>
203
+ <string>Variable</string>
204
+ <key>Variable</key>
205
+ <dict>
206
+ <key>Value</key>
207
+ <dict>
208
+ <key>Aggrandizements</key>
209
+ <array>
210
+ <dict>
211
+ <key>PropertyName</key>
212
+ <string>Device Model</string>
213
+ <key>Type</key>
214
+ <string>WFPropertyVariableAggrandizement</string>
215
+ </dict>
216
+ </array>
217
+ <key>Type</key>
218
+ <string>DeviceDetails</string>
219
+ </dict>
220
+ <key>WFSerializationType</key>
221
+ <string>WFTextTokenAttachment</string>
222
+ </dict>
223
+ </dict>
224
+ </dict>
225
+ </dict>
226
+ <dict>
227
+ <key>WFWorkflowActionIdentifier</key>
228
+ <string>is.workflow.actions.comment</string>
229
+ <key>WFWorkflowActionParameters</key>
230
+ <dict>
231
+ <key>WFCommentActionText</key>
232
+ <string>This step assumes that the user is looking at a Mastodon page in Safari for Mac. To do this, we need to check first if Safari is the frontmost app. Enabling scripting actions in Shortcuts is necessary for this step.</string>
233
+ </dict>
234
+ </dict>
235
+ <dict>
236
+ <key>WFWorkflowActionIdentifier</key>
237
+ <string>is.workflow.actions.runapplescript</string>
238
+ <key>WFWorkflowActionParameters</key>
239
+ <dict>
240
+ <key>Script</key>
241
+ <string>on run {input, parameters}
242
+ <key>UUID</key>
243
+ <string>897A48A0-CCAB-41A8-BC53-58E9CDA7AD5E</string>
244
+ </dict>
245
+ </dict>
246
+ <dict>
247
+ <key>WFWorkflowActionIdentifier</key>
248
+ <string>is.workflow.actions.conditional</string>
249
+ <key>WFWorkflowActionParameters</key>
250
+ <dict>
251
+ <key>GroupingIdentifier</key>
252
+ <string>071CA4F8-BDA5-4185-B87E-3491CF3C4ACE</string>
253
+ <key>WFCondition</key>
254
+ <integer>99</integer>
255
+ <key>WFConditionalActionString</key>
256
+ <string>Safari</string>
257
+ <key>WFControlFlowMode</key>
258
+ <integer>0</integer>
259
+ <key>WFInput</key>
260
+ <dict>
261
+ <key>Type</key>
262
+ <string>Variable</string>
263
+ <key>Variable</key>
264
+ <dict>
265
+ <key>Value</key>
266
+ <dict>
267
+ <key>Aggrandizements</key>
268
+ <array>
269
+ <dict>
270
+ <key>CoercionItemClass</key>
271
+ <string>WFStringContentItem</string>
272
+ <key>Type</key>
273
+ <string>WFCoercionVariableAggrandizement</string>
274
+ </dict>
275
+ </array>
276
+ <key>OutputName</key>
277
+ <string>AppleScript Result</string>
278
+ <key>OutputUUID</key>
279
+ <string>897A48A0-CCAB-41A8-BC53-58E9CDA7AD5E</string>
280
+ <key>Type</key>
281
+ <string>ActionOutput</string>
282
+ </dict>
283
+ <key>WFSerializationType</key>
284
+ <string>WFTextTokenAttachment</string>
285
+ </dict>
286
+ </dict>
287
+ </dict>
288
+ </dict>
289
+ <dict>
290
+ <key>WFWorkflowActionIdentifier</key>
291
+ <string>is.workflow.actions.safari.geturl</string>
292
+ <key>WFWorkflowActionParameters</key>
293
+ <dict>
294
+ <key>UUID</key>
295
+ <string>0758937D-C7FD-4C56-8F5A-D7D763B3835A</string>
296
+ </dict>
297
+ </dict>
298
+ <dict>
299
+ <key>WFWorkflowActionIdentifier</key>
300
+ <string>is.workflow.actions.setvariable</string>
301
+ <key>WFWorkflowActionParameters</key>
302
+ <dict>
303
+ <key>WFInput</key>
304
+ <dict>
305
+ <key>Value</key>
306
+ <dict>
307
+ <key>Aggrandizements</key>
308
+ <array>
309
+ <dict>
310
+ <key>PropertyName</key>
311
+ <string>Page URL</string>
312
+ <key>Type</key>
313
+ <string>WFPropertyVariableAggrandizement</string>
314
+ </dict>
315
+ </array>
316
+ <key>OutputName</key>
317
+ <string>Web Page</string>
318
+ <key>OutputUUID</key>
319
+ <string>0758937D-C7FD-4C56-8F5A-D7D763B3835A</string>
320
+ <key>Type</key>
321
+ <string>ActionOutput</string>
322
+ </dict>
323
+ <key>WFSerializationType</key>
324
+ <string>WFTextTokenAttachment</string>
325
+ </dict>
326
+ <key>WFVariableName</key>
327
+ <string>Input URL</string>
328
+ </dict>
329
+ </dict>
330
+ <dict>
331
+ <key>WFWorkflowActionIdentifier</key>
332
+ <string>is.workflow.actions.conditional</string>
333
+ <key>WFWorkflowActionParameters</key>
334
+ <dict>
335
+ <key>GroupingIdentifier</key>
336
+ <string>071CA4F8-BDA5-4185-B87E-3491CF3C4ACE</string>
337
+ <key>WFControlFlowMode</key>
338
+ <integer>1</integer>
339
+ </dict>
340
+ </dict>
341
+ <dict>
342
+ <key>WFWorkflowActionIdentifier</key>
343
+ <string>is.workflow.actions.comment</string>
344
+ <key>WFWorkflowActionParameters</key>
345
+ <dict>
346
+ <key>WFCommentActionText</key>
347
+ <string>Shortcut is running on Mac, but the frontmost app is NOT Safari</string>
348
+ </dict>
349
+ </dict>
350
+ <dict>
351
+ <key>WFWorkflowActionIdentifier</key>
352
+ <string>is.workflow.actions.conditional</string>
353
+ <key>WFWorkflowActionParameters</key>
354
+ <dict>
355
+ <key>GroupingIdentifier</key>
356
+ <string>071CA4F8-BDA5-4185-B87E-3491CF3C4ACE</string>
357
+ <key>WFControlFlowMode</key>
358
+ <integer>2</integer>
359
+ </dict>
360
+ </dict>
361
+ <dict>
362
+ <key>WFWorkflowActionIdentifier</key>
363
+ <string>is.workflow.actions.conditional</string>
364
+ <key>WFWorkflowActionParameters</key>
365
+ <dict>
366
+ <key>GroupingIdentifier</key>
367
+ <string>4820A771-A752-46C7-924E-90380913E26C</string>
368
+ <key>UUID</key>
369
+ <string>B1CC6C62-0423-4E87-ACBC-08CE0DEC3704</string>
370
+ <key>WFControlFlowMode</key>
371
+ <integer>2</integer>
372
+ </dict>
373
+ </dict>
374
+ <dict>
375
+ <key>WFWorkflowActionIdentifier</key>
376
+ <string>is.workflow.actions.conditional</string>
377
+ <key>WFWorkflowActionParameters</key>
378
+ <dict>
379
+ <key>GroupingIdentifier</key>
380
+ <string>58E0EBBD-F563-4BC8-BA89-EF954C3CB1BF</string>
381
+ <key>WFCondition</key>
382
+ <integer>101</integer>
383
+ <key>WFControlFlowMode</key>
384
+ <integer>0</integer>
385
+ <key>WFInput</key>
386
+ <dict>
387
+ <key>Type</key>
388
+ <string>Variable</string>
389
+ <key>Variable</key>
390
+ <dict>
391
+ <key>Value</key>
392
+ <dict>
393
+ <key>Type</key>
394
+ <string>Variable</string>
395
+ <key>VariableName</key>
396
+ <string>Input URL</string>
397
+ </dict>
398
+ <key>WFSerializationType</key>
399
+ <string>WFTextTokenAttachment</string>
400
+ </dict>
401
+ </dict>
402
+ </dict>
403
+ </dict>
404
+ <dict>
405
+ <key>WFWorkflowActionIdentifier</key>
406
+ <string>is.workflow.actions.comment</string>
407
+ <key>WFWorkflowActionParameters</key>
408
+ <dict>
409
+ <key>WFCommentActionText</key>
410
+ <string>Use Gruber's improved RegEx to match web URLs. Credit to: https://daringfireball.net/2010/07/improved_regex_for_matching_urls</string>
411
+ </dict>
412
+ </dict>
413
+ <dict>
414
+ <key>WFWorkflowActionIdentifier</key>
415
+ <string>is.workflow.actions.text.match</string>
416
+ <key>WFWorkflowActionParameters</key>
417
+ <dict>
418
+ <key>UUID</key>
419
+ <string>483E4F39-3D8E-40AF-A6F5-F8EB92C52CD4</string>
420
+ <key>WFMatchTextPattern</key>
421
+ <string>(?i)\b((?:https?:(?:/{1,3}|[a-z0-9%])|[a-z0-9.\-]+[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|Ja|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)/)(?:[^\s()&lt;&gt;{}\[\]]+|\([^\s()]*?\([^\s()]+\)[^\s()]*?\)|\([^\s]+?\))+(?:\([^\s()]*?\([^\s()]+\)[^\s()]*?\)|\([^\s]+?\)|[^\s`!()\[\]{};:'".,&lt;&gt;?«»“”‘’])|(?:(?&lt;!@)[a-z0-9]+(?:[.\-][a-z0-9]+)*[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|Ja|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw)\b/?(?!@)))</string>
422
+ <key>text</key>
423
+ <dict>
424
+ <key>Value</key>
425
+ <dict>
426
+ <key>attachmentsByRange</key>
427
+ <dict>
428
+ <key>{0, 1}</key>
429
+ <dict>
430
+ <key>Type</key>
431
+ <string>Clipboard</string>
432
+ </dict>
433
+ </dict>
434
+ <key>string</key>
435
+ <string></string>
436
+ </dict>
437
+ <key>WFSerializationType</key>
438
+ <string>WFTextTokenString</string>
439
+ </dict>
440
+ </dict>
441
+ </dict>
442
+ <dict>
443
+ <key>WFWorkflowActionIdentifier</key>
444
+ <string>is.workflow.actions.conditional</string>
445
+ <key>WFWorkflowActionParameters</key>
446
+ <dict>
447
+ <key>GroupingIdentifier</key>
448
+ <string>F980226B-1E9A-49AC-BAF9-C456BA98D63C</string>
449
+ <key>WFCondition</key>
450
+ <integer>100</integer>
451
+ <key>WFControlFlowMode</key>
452
+ <integer>0</integer>
453
+ <key>WFInput</key>
454
+ <dict>
455
+ <key>Type</key>
456
+ <string>Variable</string>
457
+ <key>Variable</key>
458
+ <dict>
459
+ <key>Value</key>
460
+ <dict>
461
+ <key>OutputName</key>
462
+ <string>Matches</string>
463
+ <key>OutputUUID</key>
464
+ <string>483E4F39-3D8E-40AF-A6F5-F8EB92C52CD4</string>
465
+ <key>Type</key>
466
+ <string>ActionOutput</string>
467
+ </dict>
468
+ <key>WFSerializationType</key>
469
+ <string>WFTextTokenAttachment</string>
470
+ </dict>
471
+ </dict>
472
+ </dict>
473
+ </dict>
474
+ <dict>
475
+ <key>WFWorkflowActionIdentifier</key>
476
+ <string>is.workflow.actions.detect.text</string>
477
+ <key>WFWorkflowActionParameters</key>
478
+ <dict>
479
+ <key>UUID</key>
480
+ <string>B271D0D0-E5FF-4E82-99F2-3F16831C22C9</string>
481
+ <key>WFInput</key>
482
+ <dict>
483
+ <key>Value</key>
484
+ <dict>
485
+ <key>OutputName</key>
486
+ <string>Matches</string>
487
+ <key>OutputUUID</key>
488
+ <string>483E4F39-3D8E-40AF-A6F5-F8EB92C52CD4</string>
489
+ <key>Type</key>
490
+ <string>ActionOutput</string>
491
+ </dict>
492
+ <key>WFSerializationType</key>
493
+ <string>WFTextTokenAttachment</string>
494
+ </dict>
495
+ </dict>
496
+ </dict>
497
+ <dict>
498
+ <key>WFWorkflowActionIdentifier</key>
499
+ <string>is.workflow.actions.setvariable</string>
500
+ <key>WFWorkflowActionParameters</key>
501
+ <dict>
502
+ <key>WFInput</key>
503
+ <dict>
504
+ <key>Value</key>
505
+ <dict>
506
+ <key>OutputName</key>
507
+ <string>Text</string>
508
+ <key>OutputUUID</key>
509
+ <string>B271D0D0-E5FF-4E82-99F2-3F16831C22C9</string>
510
+ <key>Type</key>
511
+ <string>ActionOutput</string>
512
+ </dict>
513
+ <key>WFSerializationType</key>
514
+ <string>WFTextTokenAttachment</string>
515
+ </dict>
516
+ <key>WFVariableName</key>
517
+ <string>Input URL</string>
518
+ </dict>
519
+ </dict>
520
+ <dict>
521
+ <key>WFWorkflowActionIdentifier</key>
522
+ <string>is.workflow.actions.conditional</string>
523
+ <key>WFWorkflowActionParameters</key>
524
+ <dict>
525
+ <key>GroupingIdentifier</key>
526
+ <string>F980226B-1E9A-49AC-BAF9-C456BA98D63C</string>
527
+ <key>WFControlFlowMode</key>
528
+ <integer>2</integer>
529
+ </dict>
530
+ </dict>
531
+ <dict>
532
+ <key>WFWorkflowActionIdentifier</key>
533
+ <string>is.workflow.actions.conditional</string>
534
+ <key>WFWorkflowActionParameters</key>
535
+ <dict>
536
+ <key>GroupingIdentifier</key>
537
+ <string>58E0EBBD-F563-4BC8-BA89-EF954C3CB1BF</string>
538
+ <key>UUID</key>
539
+ <string>0D8B4DA0-6F21-4F9E-AEF1-28C00EE61C6E</string>
540
+ <key>WFControlFlowMode</key>
541
+ <integer>2</integer>
542
+ </dict>
543
+ </dict>
544
+ <dict>
545
+ <key>WFWorkflowActionIdentifier</key>
546
+ <string>is.workflow.actions.comment</string>
547
+ <key>WFWorkflowActionParameters</key>
548
+ <dict>
549
+ <key>WFCommentActionText</key>
550
+ <string>The share sheet, Mac, and clipboard methods have failed. It's time to ask the user to input a URL manually</string>
551
+ </dict>
552
+ </dict>
553
+ <dict>
554
+ <key>WFWorkflowActionIdentifier</key>
555
+ <string>is.workflow.actions.conditional</string>
556
+ <key>WFWorkflowActionParameters</key>
557
+ <dict>
558
+ <key>GroupingIdentifier</key>
559
+ <string>D3CDDA40-2D1B-4978-8636-194DF46CB669</string>
560
+ <key>WFCondition</key>
561
+ <integer>101</integer>
562
+ <key>WFControlFlowMode</key>
563
+ <integer>0</integer>
564
+ <key>WFInput</key>
565
+ <dict>
566
+ <key>Type</key>
567
+ <string>Variable</string>
568
+ <key>Variable</key>
569
+ <dict>
570
+ <key>Value</key>
571
+ <dict>
572
+ <key>Type</key>
573
+ <string>Variable</string>
574
+ <key>VariableName</key>
575
+ <string>Input URL</string>
576
+ </dict>
577
+ <key>WFSerializationType</key>
578
+ <string>WFTextTokenAttachment</string>
579
+ </dict>
580
+ </dict>
581
+ </dict>
582
+ </dict>
583
+ <dict>
584
+ <key>WFWorkflowActionIdentifier</key>
585
+ <string>is.workflow.actions.ask</string>
586
+ <key>WFWorkflowActionParameters</key>
587
+ <dict>
588
+ <key>UUID</key>
589
+ <string>30884DDC-D60F-4902-B019-8799CADB521D</string>
590
+ <key>WFAskActionPrompt</key>
591
+ <string>Enter Link to Mastodon Profile or Post</string>
592
+ <key>WFInputType</key>
593
+ <string>URL</string>
594
+ </dict>
595
+ </dict>
596
+ <dict>
597
+ <key>WFWorkflowActionIdentifier</key>
598
+ <string>is.workflow.actions.setvariable</string>
599
+ <key>WFWorkflowActionParameters</key>
600
+ <dict>
601
+ <key>WFInput</key>
602
+ <dict>
603
+ <key>Value</key>
604
+ <dict>
605
+ <key>OutputName</key>
606
+ <string>Provided Input</string>
607
+ <key>OutputUUID</key>
608
+ <string>30884DDC-D60F-4902-B019-8799CADB521D</string>
609
+ <key>Type</key>
610
+ <string>ActionOutput</string>
611
+ </dict>
612
+ <key>WFSerializationType</key>
613
+ <string>WFTextTokenAttachment</string>
614
+ </dict>
615
+ <key>WFVariableName</key>
616
+ <string>Input URL</string>
617
+ </dict>
618
+ </dict>
619
+ <dict>
620
+ <key>WFWorkflowActionIdentifier</key>
621
+ <string>is.workflow.actions.conditional</string>
622
+ <key>WFWorkflowActionParameters</key>
623
+ <dict>
624
+ <key>GroupingIdentifier</key>
625
+ <string>D3CDDA40-2D1B-4978-8636-194DF46CB669</string>
626
+ <key>UUID</key>
627
+ <string>33C977D8-51A7-4971-BFB8-43F461989EC4</string>
628
+ <key>WFControlFlowMode</key>
629
+ <integer>2</integer>
630
+ </dict>
631
+ </dict>
632
+ <dict>
633
+ <key>WFWorkflowActionIdentifier</key>
634
+ <string>is.workflow.actions.conditional</string>
635
+ <key>WFWorkflowActionParameters</key>
636
+ <dict>
637
+ <key>GroupingIdentifier</key>
638
+ <string>DD012B7D-2731-4B17-B17B-E7FADB510A8F</string>
639
+ <key>WFControlFlowMode</key>
640
+ <integer>1</integer>
641
+ </dict>
642
+ </dict>
643
+ <dict>
644
+ <key>WFWorkflowActionIdentifier</key>
645
+ <string>is.workflow.actions.comment</string>
646
+ <key>WFWorkflowActionParameters</key>
647
+ <dict>
648
+ <key>WFCommentActionText</key>
649
+ <string>Input URL has value now</string>
650
+ </dict>
651
+ </dict>
652
+ <dict>
653
+ <key>WFWorkflowActionIdentifier</key>
654
+ <string>is.workflow.actions.conditional</string>
655
+ <key>WFWorkflowActionParameters</key>
656
+ <dict>
657
+ <key>GroupingIdentifier</key>
658
+ <string>DD012B7D-2731-4B17-B17B-E7FADB510A8F</string>
659
+ <key>UUID</key>
660
+ <string>5029ADF6-83FB-4FBA-AEF5-4FA487099FC0</string>
661
+ <key>WFControlFlowMode</key>
662
+ <integer>2</integer>
663
+ </dict>
664
+ </dict>
665
+ <dict>
666
+ <key>WFWorkflowActionIdentifier</key>
667
+ <string>is.workflow.actions.comment</string>
668
+ <key>WFWorkflowActionParameters</key>
669
+ <dict>
670
+ <key>WFCommentActionText</key>
671
+ <string>Check if we're dealing with a profile or a post</string>
672
+ </dict>
673
+ </dict>
674
+ <dict>
675
+ <key>WFWorkflowActionIdentifier</key>
676
+ <string>is.workflow.actions.text.match</string>
677
+ <key>WFWorkflowActionParameters</key>
678
+ <dict>
679
+ <key>UUID</key>
680
+ <string>FE0B7752-28C2-4D94-A2F1-A9C0BF933C18</string>
681
+ <key>WFMatchTextPattern</key>
682
+ <string>http.*\/(@[^\/]*)$</string>
683
+ <key>text</key>
684
+ <dict>
685
+ <key>Value</key>
686
+ <dict>
687
+ <key>attachmentsByRange</key>
688
+ <dict>
689
+ <key>{0, 1}</key>
690
+ <dict>
691
+ <key>Type</key>
692
+ <string>Variable</string>
693
+ <key>VariableName</key>
694
+ <string>Input URL</string>
695
+ </dict>
696
+ </dict>
697
+ <key>string</key>
698
+ <string></string>
699
+ </dict>
700
+ <key>WFSerializationType</key>
701
+ <string>WFTextTokenString</string>
702
+ </dict>
703
+ </dict>
704
+ </dict>
705
+ <dict>
706
+ <key>WFWorkflowActionIdentifier</key>
707
+ <string>is.workflow.actions.text.match.getgroup</string>
708
+ <key>WFWorkflowActionParameters</key>
709
+ <dict>
710
+ <key>UUID</key>
711
+ <string>371B9EEA-F9EB-4685-B522-8192EE158BC9</string>
712
+ <key>matches</key>
713
+ <dict>
714
+ <key>Value</key>
715
+ <dict>
716
+ <key>OutputName</key>
717
+ <string>Matches</string>
718
+ <key>OutputUUID</key>
719
+ <string>FE0B7752-28C2-4D94-A2F1-A9C0BF933C18</string>
720
+ <key>Type</key>
721
+ <string>ActionOutput</string>
722
+ </dict>
723
+ <key>WFSerializationType</key>
724
+ <string>WFTextTokenAttachment</string>
725
+ </dict>
726
+ </dict>
727
+ </dict>
728
+ <dict>
729
+ <key>WFWorkflowActionIdentifier</key>
730
+ <string>is.workflow.actions.setvariable</string>
731
+ <key>WFWorkflowActionParameters</key>
732
+ <dict>
733
+ <key>WFInput</key>
734
+ <dict>
735
+ <key>Value</key>
736
+ <dict>
737
+ <key>OutputName</key>
738
+ <string>Text</string>
739
+ <key>OutputUUID</key>
740
+ <string>371B9EEA-F9EB-4685-B522-8192EE158BC9</string>
741
+ <key>Type</key>
742
+ <string>ActionOutput</string>
743
+ </dict>
744
+ <key>WFSerializationType</key>
745
+ <string>WFTextTokenAttachment</string>
746
+ </dict>
747
+ <key>WFVariableName</key>
748
+ <string>Username</string>
749
+ </dict>
750
+ </dict>
751
+ <dict>
752
+ <key>WFWorkflowActionIdentifier</key>
753
+ <string>is.workflow.actions.conditional</string>
754
+ <key>WFWorkflowActionParameters</key>
755
+ <dict>
756
+ <key>GroupingIdentifier</key>
757
+ <string>2B0E1827-DEC1-4DB3-A35D-372D0D53F5D7</string>
758
+ <key>WFCondition</key>
759
+ <integer>100</integer>
760
+ <key>WFControlFlowMode</key>
761
+ <integer>0</integer>
762
+ <key>WFInput</key>
763
+ <dict>
764
+ <key>Type</key>
765
+ <string>Variable</string>
766
+ <key>Variable</key>
767
+ <dict>
768
+ <key>Value</key>
769
+ <dict>
770
+ <key>Type</key>
771
+ <string>Variable</string>
772
+ <key>VariableName</key>
773
+ <string>Username</string>
774
+ </dict>
775
+ <key>WFSerializationType</key>
776
+ <string>WFTextTokenAttachment</string>
777
+ </dict>
778
+ </dict>
779
+ </dict>
780
+ </dict>
781
+ <dict>
782
+ <key>WFWorkflowActionIdentifier</key>
783
+ <string>is.workflow.actions.comment</string>
784
+ <key>WFWorkflowActionParameters</key>
785
+ <dict>
786
+ <key>WFCommentActionText</key>
787
+ <string>It's a profile URL. Need to check if it's native to this instance or external</string>
788
+ </dict>
789
+ </dict>
790
+ <dict>
791
+ <key>WFWorkflowActionIdentifier</key>
792
+ <string>is.workflow.actions.text.match</string>
793
+ <key>WFWorkflowActionParameters</key>
794
+ <dict>
795
+ <key>UUID</key>
796
+ <string>365E8BB4-2E7E-457A-950B-D5B084638A68</string>
797
+ <key>WFMatchTextPattern</key>
798
+ <string>(@.*)(@.*\..*)</string>
799
+ <key>text</key>
800
+ <dict>
801
+ <key>Value</key>
802
+ <dict>
803
+ <key>attachmentsByRange</key>
804
+ <dict>
805
+ <key>{0, 1}</key>
806
+ <dict>
807
+ <key>Type</key>
808
+ <string>Variable</string>
809
+ <key>VariableName</key>
810
+ <string>Username</string>
811
+ </dict>
812
+ </dict>
813
+ <key>string</key>
814
+ <string></string>
815
+ </dict>
816
+ <key>WFSerializationType</key>
817
+ <string>WFTextTokenString</string>
818
+ </dict>
819
+ </dict>
820
+ </dict>
821
+ <dict>
822
+ <key>WFWorkflowActionIdentifier</key>
823
+ <string>is.workflow.actions.conditional</string>
824
+ <key>WFWorkflowActionParameters</key>
825
+ <dict>
826
+ <key>GroupingIdentifier</key>
827
+ <string>EC41FB43-79B1-48F4-8BBF-76A36EBACFF8</string>
828
+ <key>WFCondition</key>
829
+ <integer>100</integer>
830
+ <key>WFControlFlowMode</key>
831
+ <integer>0</integer>
832
+ <key>WFInput</key>
833
+ <dict>
834
+ <key>Type</key>
835
+ <string>Variable</string>
836
+ <key>Variable</key>
837
+ <dict>
838
+ <key>Value</key>
839
+ <dict>
840
+ <key>OutputName</key>
841
+ <string>Matches</string>
842
+ <key>OutputUUID</key>
843
+ <string>365E8BB4-2E7E-457A-950B-D5B084638A68</string>
844
+ <key>Type</key>
845
+ <string>ActionOutput</string>
846
+ </dict>
847
+ <key>WFSerializationType</key>
848
+ <string>WFTextTokenAttachment</string>
849
+ </dict>
850
+ </dict>
851
+ </dict>
852
+ </dict>
853
+ <dict>
854
+ <key>WFWorkflowActionIdentifier</key>
855
+ <string>is.workflow.actions.comment</string>
856
+ <key>WFWorkflowActionParameters</key>
857
+ <dict>
858
+ <key>WFCommentActionText</key>
859
+ <string>It is a profile URL from another instance</string>
860
+ </dict>
861
+ </dict>
862
+ <dict>
863
+ <key>WFWorkflowActionIdentifier</key>
864
+ <string>is.workflow.actions.text.match.getgroup</string>
865
+ <key>WFWorkflowActionParameters</key>
866
+ <dict>
867
+ <key>UUID</key>
868
+ <string>A6FB2940-E2D5-4C08-9651-E68EC75DADC2</string>
869
+ <key>matches</key>
870
+ <dict>
871
+ <key>Value</key>
872
+ <dict>
873
+ <key>OutputName</key>
874
+ <string>Matches</string>
875
+ <key>OutputUUID</key>
876
+ <string>365E8BB4-2E7E-457A-950B-D5B084638A68</string>
877
+ <key>Type</key>
878
+ <string>ActionOutput</string>
879
+ </dict>
880
+ <key>WFSerializationType</key>
881
+ <string>WFTextTokenAttachment</string>
882
+ </dict>
883
+ </dict>
884
+ </dict>
885
+ <dict>
886
+ <key>WFWorkflowActionIdentifier</key>
887
+ <string>is.workflow.actions.setvariable</string>
888
+ <key>WFWorkflowActionParameters</key>
889
+ <dict>
890
+ <key>WFInput</key>
891
+ <dict>
892
+ <key>Value</key>
893
+ <dict>
894
+ <key>OutputName</key>
895
+ <string>Text</string>
896
+ <key>OutputUUID</key>
897
+ <string>A6FB2940-E2D5-4C08-9651-E68EC75DADC2</string>
898
+ <key>Type</key>
899
+ <string>ActionOutput</string>
900
+ </dict>
901
+ <key>WFSerializationType</key>
902
+ <string>WFTextTokenAttachment</string>
903
+ </dict>
904
+ <key>WFVariableName</key>
905
+ <string>Username</string>
906
+ </dict>
907
+ </dict>
908
+ <dict>
909
+ <key>WFWorkflowActionIdentifier</key>
910
+ <string>is.workflow.actions.text.match.getgroup</string>
911
+ <key>WFWorkflowActionParameters</key>
912
+ <dict>
913
+ <key>UUID</key>
914
+ <string>D3B78FFF-DEAA-40BF-B697-EFB33C411AE2</string>
915
+ <key>WFGroupIndex</key>
916
+ <string>2</string>
917
+ <key>matches</key>
918
+ <dict>
919
+ <key>Value</key>
920
+ <dict>
921
+ <key>OutputName</key>
922
+ <string>Matches</string>
923
+ <key>OutputUUID</key>
924
+ <string>365E8BB4-2E7E-457A-950B-D5B084638A68</string>
925
+ <key>Type</key>
926
+ <string>ActionOutput</string>
927
+ </dict>
928
+ <key>WFSerializationType</key>
929
+ <string>WFTextTokenAttachment</string>
930
+ </dict>
931
+ </dict>
932
+ </dict>
933
+ <dict>
934
+ <key>WFWorkflowActionIdentifier</key>
935
+ <string>is.workflow.actions.setvariable</string>
936
+ <key>WFWorkflowActionParameters</key>
937
+ <dict>
938
+ <key>WFInput</key>
939
+ <dict>
940
+ <key>Value</key>
941
+ <dict>
942
+ <key>OutputName</key>
943
+ <string>Text</string>
944
+ <key>OutputUUID</key>
945
+ <string>D3B78FFF-DEAA-40BF-B697-EFB33C411AE2</string>
946
+ <key>Type</key>
947
+ <string>ActionOutput</string>
948
+ </dict>
949
+ <key>WFSerializationType</key>
950
+ <string>WFTextTokenAttachment</string>
951
+ </dict>
952
+ <key>WFVariableName</key>
953
+ <string>Other Instance</string>
954
+ </dict>
955
+ </dict>
956
+ <dict>
957
+ <key>WFWorkflowActionIdentifier</key>
958
+ <string>is.workflow.actions.conditional</string>
959
+ <key>WFWorkflowActionParameters</key>
960
+ <dict>
961
+ <key>GroupingIdentifier</key>
962
+ <string>EC41FB43-79B1-48F4-8BBF-76A36EBACFF8</string>
963
+ <key>WFControlFlowMode</key>
964
+ <integer>1</integer>
965
+ </dict>
966
+ </dict>
967
+ <dict>
968
+ <key>WFWorkflowActionIdentifier</key>
969
+ <string>is.workflow.actions.comment</string>
970
+ <key>WFWorkflowActionParameters</key>
971
+ <dict>
972
+ <key>WFCommentActionText</key>
973
+ <string>This is a profile but it's hosted on this instance we're looking at </string>
974
+ </dict>
975
+ </dict>
976
+ <dict>
977
+ <key>WFWorkflowActionIdentifier</key>
978
+ <string>is.workflow.actions.geturlcomponent</string>
979
+ <key>WFWorkflowActionParameters</key>
980
+ <dict>
981
+ <key>UUID</key>
982
+ <string>ED1C3229-46D4-44ED-AB19-51E7A5821ECF</string>
983
+ <key>WFURL</key>
984
+ <dict>
985
+ <key>Value</key>
986
+ <dict>
987
+ <key>attachmentsByRange</key>
988
+ <dict>
989
+ <key>{0, 1}</key>
990
+ <dict>
991
+ <key>Type</key>
992
+ <string>Variable</string>
993
+ <key>VariableName</key>
994
+ <string>Input URL</string>
995
+ </dict>
996
+ </dict>
997
+ <key>string</key>
998
+ <string></string>
999
+ </dict>
1000
+ <key>WFSerializationType</key>
1001
+ <string>WFTextTokenString</string>
1002
+ </dict>
1003
+ <key>WFURLComponent</key>
1004
+ <string>Host</string>
1005
+ </dict>
1006
+ </dict>
1007
+ <dict>
1008
+ <key>WFWorkflowActionIdentifier</key>
1009
+ <string>is.workflow.actions.gettext</string>
1010
+ <key>WFWorkflowActionParameters</key>
1011
+ <dict>
1012
+ <key>UUID</key>
1013
+ <string>DED13FA5-F0F1-4A9F-974E-46A7DB044869</string>
1014
+ <key>WFTextActionText</key>
1015
+ <dict>
1016
+ <key>Value</key>
1017
+ <dict>
1018
+ <key>attachmentsByRange</key>
1019
+ <dict>
1020
+ <key>{1, 1}</key>
1021
+ <dict>
1022
+ <key>OutputName</key>
1023
+ <string>Component of URL</string>
1024
+ <key>OutputUUID</key>
1025
+ <string>ED1C3229-46D4-44ED-AB19-51E7A5821ECF</string>
1026
+ <key>Type</key>
1027
+ <string>ActionOutput</string>
1028
+ </dict>
1029
+ </dict>
1030
+ <key>string</key>
1031
+ <string>@</string>
1032
+ </dict>
1033
+ <key>WFSerializationType</key>
1034
+ <string>WFTextTokenString</string>
1035
+ </dict>
1036
+ </dict>
1037
+ </dict>
1038
+ <dict>
1039
+ <key>WFWorkflowActionIdentifier</key>
1040
+ <string>is.workflow.actions.setvariable</string>
1041
+ <key>WFWorkflowActionParameters</key>
1042
+ <dict>
1043
+ <key>WFInput</key>
1044
+ <dict>
1045
+ <key>Value</key>
1046
+ <dict>
1047
+ <key>OutputName</key>
1048
+ <string>Text</string>
1049
+ <key>OutputUUID</key>
1050
+ <string>DED13FA5-F0F1-4A9F-974E-46A7DB044869</string>
1051
+ <key>Type</key>
1052
+ <string>ActionOutput</string>
1053
+ </dict>
1054
+ <key>WFSerializationType</key>
1055
+ <string>WFTextTokenAttachment</string>
1056
+ </dict>
1057
+ <key>WFVariableName</key>
1058
+ <string>Other Instance</string>
1059
+ </dict>
1060
+ </dict>
1061
+ <dict>
1062
+ <key>WFWorkflowActionIdentifier</key>
1063
+ <string>is.workflow.actions.conditional</string>
1064
+ <key>WFWorkflowActionParameters</key>
1065
+ <dict>
1066
+ <key>GroupingIdentifier</key>
1067
+ <string>EC41FB43-79B1-48F4-8BBF-76A36EBACFF8</string>
1068
+ <key>UUID</key>
1069
+ <string>42C3F8D3-089C-4397-94F3-BA58EF2E6F48</string>
1070
+ <key>WFControlFlowMode</key>
1071
+ <integer>2</integer>
1072
+ </dict>
1073
+ </dict>
1074
+ <dict>
1075
+ <key>WFWorkflowActionIdentifier</key>
1076
+ <string>is.workflow.actions.url</string>
1077
+ <key>WFWorkflowActionParameters</key>
1078
+ <dict>
1079
+ <key>UUID</key>
1080
+ <string>110655A9-ED3B-449C-8CC3-7D5485BF74BA</string>
1081
+ <key>WFURLActionURL</key>
1082
+ <dict>
1083
+ <key>Value</key>
1084
+ <dict>
1085
+ <key>attachmentsByRange</key>
1086
+ <dict>
1087
+ <key>{0, 1}</key>
1088
+ <dict>
1089
+ <key>Type</key>
1090
+ <string>Variable</string>
1091
+ <key>VariableName</key>
1092
+ <string>Your Mastodon Instance</string>
1093
+ </dict>
1094
+ <key>{2, 1}</key>
1095
+ <dict>
1096
+ <key>Type</key>
1097
+ <string>Variable</string>
1098
+ <key>VariableName</key>
1099
+ <string>Username</string>
1100
+ </dict>
1101
+ <key>{3, 1}</key>
1102
+ <dict>
1103
+ <key>Type</key>
1104
+ <string>Variable</string>
1105
+ <key>VariableName</key>
1106
+ <string>Other Instance</string>
1107
+ </dict>
1108
+ </dict>
1109
+ <key>string</key>
1110
+ <string>/</string>
1111
+ </dict>
1112
+ <key>WFSerializationType</key>
1113
+ <string>WFTextTokenString</string>
1114
+ </dict>
1115
+ </dict>
1116
+ </dict>
1117
+ <dict>
1118
+ <key>WFWorkflowActionIdentifier</key>
1119
+ <string>is.workflow.actions.openurl</string>
1120
+ <key>WFWorkflowActionParameters</key>
1121
+ <dict>
1122
+ <key>UUID</key>
1123
+ <string>C27F30EF-0342-4F2E-BD4C-94F58C4E0E91</string>
1124
+ <key>WFInput</key>
1125
+ <dict>
1126
+ <key>Value</key>
1127
+ <dict>
1128
+ <key>OutputName</key>
1129
+ <string>URL</string>
1130
+ <key>OutputUUID</key>
1131
+ <string>110655A9-ED3B-449C-8CC3-7D5485BF74BA</string>
1132
+ <key>Type</key>
1133
+ <string>ActionOutput</string>
1134
+ </dict>
1135
+ <key>WFSerializationType</key>
1136
+ <string>WFTextTokenAttachment</string>
1137
+ </dict>
1138
+ </dict>
1139
+ </dict>
1140
+ <dict>
1141
+ <key>WFWorkflowActionIdentifier</key>
1142
+ <string>is.workflow.actions.exit</string>
1143
+ <key>WFWorkflowActionParameters</key>
1144
+ <dict/>
1145
+ </dict>
1146
+ <dict>
1147
+ <key>WFWorkflowActionIdentifier</key>
1148
+ <string>is.workflow.actions.conditional</string>
1149
+ <key>WFWorkflowActionParameters</key>
1150
+ <dict>
1151
+ <key>GroupingIdentifier</key>
1152
+ <string>2B0E1827-DEC1-4DB3-A35D-372D0D53F5D7</string>
1153
+ <key>WFControlFlowMode</key>
1154
+ <integer>1</integer>
1155
+ </dict>
1156
+ </dict>
1157
+ <dict>
1158
+ <key>WFWorkflowActionIdentifier</key>
1159
+ <string>is.workflow.actions.comment</string>
1160
+ <key>WFWorkflowActionParameters</key>
1161
+ <dict>
1162
+ <key>WFCommentActionText</key>
1163
+ <string>It's a post. Same as above, we need to check if the post is being viewed on its original instance first.</string>
1164
+ </dict>
1165
+ </dict>
1166
+ <dict>
1167
+ <key>WFWorkflowActionIdentifier</key>
1168
+ <string>is.workflow.actions.text.match</string>
1169
+ <key>WFWorkflowActionParameters</key>
1170
+ <dict>
1171
+ <key>UUID</key>
1172
+ <string>0908F938-1519-4702-877B-6787CF68CC32</string>
1173
+ <key>WFMatchTextPattern</key>
1174
+ <string>.*(@.*)(@.*\..*)</string>
1175
+ <key>text</key>
1176
+ <dict>
1177
+ <key>Value</key>
1178
+ <dict>
1179
+ <key>attachmentsByRange</key>
1180
+ <dict>
1181
+ <key>{0, 1}</key>
1182
+ <dict>
1183
+ <key>Type</key>
1184
+ <string>Variable</string>
1185
+ <key>VariableName</key>
1186
+ <string>Input URL</string>
1187
+ </dict>
1188
+ </dict>
1189
+ <key>string</key>
1190
+ <string></string>
1191
+ </dict>
1192
+ <key>WFSerializationType</key>
1193
+ <string>WFTextTokenString</string>
1194
+ </dict>
1195
+ </dict>
1196
+ </dict>
1197
+ <dict>
1198
+ <key>WFWorkflowActionIdentifier</key>
1199
+ <string>is.workflow.actions.conditional</string>
1200
+ <key>WFWorkflowActionParameters</key>
1201
+ <dict>
1202
+ <key>GroupingIdentifier</key>
1203
+ <string>B7A24235-8530-4B0C-8C7B-908E92AAB441</string>
1204
+ <key>WFCondition</key>
1205
+ <integer>100</integer>
1206
+ <key>WFControlFlowMode</key>
1207
+ <integer>0</integer>
1208
+ <key>WFInput</key>
1209
+ <dict>
1210
+ <key>Type</key>
1211
+ <string>Variable</string>
1212
+ <key>Variable</key>
1213
+ <dict>
1214
+ <key>Value</key>
1215
+ <dict>
1216
+ <key>OutputName</key>
1217
+ <string>Matches</string>
1218
+ <key>OutputUUID</key>
1219
+ <string>0908F938-1519-4702-877B-6787CF68CC32</string>
1220
+ <key>Type</key>
1221
+ <string>ActionOutput</string>
1222
+ </dict>
1223
+ <key>WFSerializationType</key>
1224
+ <string>WFTextTokenAttachment</string>
1225
+ </dict>
1226
+ </dict>
1227
+ </dict>
1228
+ </dict>
1229
+ <dict>
1230
+ <key>WFWorkflowActionIdentifier</key>
1231
+ <string>is.workflow.actions.comment</string>
1232
+ <key>WFWorkflowActionParameters</key>
1233
+ <dict>
1234
+ <key>WFCommentActionText</key>
1235
+ <string>The post is not from this instance.</string>
1236
+ </dict>
1237
+ </dict>
1238
+ <dict>
1239
+ <key>WFWorkflowActionIdentifier</key>
1240
+ <string>is.workflow.actions.alert</string>
1241
+ <key>WFWorkflowActionParameters</key>
1242
+ <dict>
1243
+ <key>WFAlertActionCancelButtonShown</key>
1244
+ <false/>
1245
+ <key>WFAlertActionMessage</key>
1246
+ <string>You're viewing a post from another Mastodon instance.
1247
+
1248
+ To redirect this post to your own instance, please open its original page first.</string>
1249
+ <key>WFAlertActionTitle</key>
1250
+ <string>❌ Error ❌</string>
1251
+ </dict>
1252
+ </dict>
1253
+ <dict>
1254
+ <key>WFWorkflowActionIdentifier</key>
1255
+ <string>is.workflow.actions.exit</string>
1256
+ <key>WFWorkflowActionParameters</key>
1257
+ <dict/>
1258
+ </dict>
1259
+ <dict>
1260
+ <key>WFWorkflowActionIdentifier</key>
1261
+ <string>is.workflow.actions.conditional</string>
1262
+ <key>WFWorkflowActionParameters</key>
1263
+ <dict>
1264
+ <key>GroupingIdentifier</key>
1265
+ <string>B7A24235-8530-4B0C-8C7B-908E92AAB441</string>
1266
+ <key>UUID</key>
1267
+ <string>D52FA609-8109-41FF-8E5F-EC4209BA600F</string>
1268
+ <key>WFControlFlowMode</key>
1269
+ <integer>2</integer>
1270
+ </dict>
1271
+ </dict>
1272
+ <dict>
1273
+ <key>WFWorkflowActionIdentifier</key>
1274
+ <string>is.workflow.actions.comment</string>
1275
+ <key>WFWorkflowActionParameters</key>
1276
+ <dict>
1277
+ <key>WFCommentActionText</key>
1278
+ <string>The post is from this instance.</string>
1279
+ </dict>
1280
+ </dict>
1281
+ <dict>
1282
+ <key>WFWorkflowActionIdentifier</key>
1283
+ <string>is.workflow.actions.url</string>
1284
+ <key>WFWorkflowActionParameters</key>
1285
+ <dict>
1286
+ <key>CustomOutputName</key>
1287
+ <string>Search API URL</string>
1288
+ <key>UUID</key>
1289
+ <string>9CD90681-A4FA-41D4-BEB5-97778C2460F3</string>
1290
+ <key>WFURLActionURL</key>
1291
+ <dict>
1292
+ <key>Value</key>
1293
+ <dict>
1294
+ <key>attachmentsByRange</key>
1295
+ <dict>
1296
+ <key>{0, 1}</key>
1297
+ <dict>
1298
+ <key>Type</key>
1299
+ <string>Variable</string>
1300
+ <key>VariableName</key>
1301
+ <string>Your Mastodon Instance</string>
1302
+ </dict>
1303
+ <key>{18, 1}</key>
1304
+ <dict>
1305
+ <key>Type</key>
1306
+ <string>Variable</string>
1307
+ <key>VariableName</key>
1308
+ <string>Input URL</string>
1309
+ </dict>
1310
+ </dict>
1311
+ <key>string</key>
1312
+ <string>/api/v2/search?q=&amp;type=statuses&amp;resolve=true</string>
1313
+ </dict>
1314
+ <key>WFSerializationType</key>
1315
+ <string>WFTextTokenString</string>
1316
+ </dict>
1317
+ </dict>
1318
+ </dict>
1319
+ <dict>
1320
+ <key>WFWorkflowActionIdentifier</key>
1321
+ <string>is.workflow.actions.downloadurl</string>
1322
+ <key>WFWorkflowActionParameters</key>
1323
+ <dict>
1324
+ <key>ShowHeaders</key>
1325
+ <true/>
1326
+ <key>UUID</key>
1327
+ <string>12251A19-E5BC-4710-A610-F7623B1563C2</string>
1328
+ <key>WFHTTPHeaders</key>
1329
+ <dict>
1330
+ <key>Value</key>
1331
+ <dict>
1332
+ <key>WFDictionaryFieldValueItems</key>
1333
+ <array>
1334
+ <dict>
1335
+ <key>WFItemType</key>
1336
+ <integer>0</integer>
1337
+ <key>WFKey</key>
1338
+ <dict>
1339
+ <key>Value</key>
1340
+ <dict>
1341
+ <key>string</key>
1342
+ <string>Authorization</string>
1343
+ </dict>
1344
+ <key>WFSerializationType</key>
1345
+ <string>WFTextTokenString</string>
1346
+ </dict>
1347
+ <key>WFValue</key>
1348
+ <dict>
1349
+ <key>Value</key>
1350
+ <dict>
1351
+ <key>attachmentsByRange</key>
1352
+ <dict>
1353
+ <key>{7, 1}</key>
1354
+ <dict>
1355
+ <key>OutputName</key>
1356
+ <string>Token</string>
1357
+ <key>OutputUUID</key>
1358
+ <string>07DF77BD-13D5-49E5-A58D-0F9FD0907B74</string>
1359
+ <key>Type</key>
1360
+ <string>ActionOutput</string>
1361
+ </dict>
1362
+ </dict>
1363
+ <key>string</key>
1364
+ <string>Bearer </string>
1365
+ </dict>
1366
+ <key>WFSerializationType</key>
1367
+ <string>WFTextTokenString</string>
1368
+ </dict>
1369
+ </dict>
1370
+ </array>
1371
+ </dict>
1372
+ <key>WFSerializationType</key>
1373
+ <string>WFDictionaryFieldValue</string>
1374
+ </dict>
1375
+ <key>WFHTTPMethod</key>
1376
+ <string>GET</string>
1377
+ <key>WFJSONValues</key>
1378
+ <dict>
1379
+ <key>Value</key>
1380
+ <dict>
1381
+ <key>WFDictionaryFieldValueItems</key>
1382
+ <array>
1383
+ <dict>
1384
+ <key>WFItemType</key>
1385
+ <integer>0</integer>
1386
+ <key>WFKey</key>
1387
+ <dict>
1388
+ <key>Value</key>
1389
+ <dict>
1390
+ <key>string</key>
1391
+ <string>q</string>
1392
+ </dict>
1393
+ <key>WFSerializationType</key>
1394
+ <string>WFTextTokenString</string>
1395
+ </dict>
1396
+ <key>WFValue</key>
1397
+ <dict>
1398
+ <key>Value</key>
1399
+ <dict>
1400
+ <key>attachmentsByRange</key>
1401
+ <dict>
1402
+ <key>{0, 1}</key>
1403
+ <dict>
1404
+ <key>OutputName</key>
1405
+ <string>Status</string>
1406
+ <key>OutputUUID</key>
1407
+ <string>8F3ED525-F0F9-4AC2-800F-26F927312465</string>
1408
+ <key>Type</key>
1409
+ <string>ActionOutput</string>
1410
+ </dict>
1411
+ </dict>
1412
+ <key>string</key>
1413
+ <string></string>
1414
+ </dict>
1415
+ <key>WFSerializationType</key>
1416
+ <string>WFTextTokenString</string>
1417
+ </dict>
1418
+ </dict>
1419
+ <dict>
1420
+ <key>WFItemType</key>
1421
+ <integer>0</integer>
1422
+ <key>WFKey</key>
1423
+ <dict>
1424
+ <key>Value</key>
1425
+ <dict>
1426
+ <key>string</key>
1427
+ <string>type</string>
1428
+ </dict>
1429
+ <key>WFSerializationType</key>
1430
+ <string>WFTextTokenString</string>
1431
+ </dict>
1432
+ <key>WFValue</key>
1433
+ <dict>
1434
+ <key>Value</key>
1435
+ <dict>
1436
+ <key>string</key>
1437
+ <string>statuses</string>
1438
+ </dict>
1439
+ <key>WFSerializationType</key>
1440
+ <string>WFTextTokenString</string>
1441
+ </dict>
1442
+ </dict>
1443
+ </array>
1444
+ </dict>
1445
+ <key>WFSerializationType</key>
1446
+ <string>WFDictionaryFieldValue</string>
1447
+ </dict>
1448
+ <key>WFURL</key>
1449
+ <dict>
1450
+ <key>Value</key>
1451
+ <dict>
1452
+ <key>attachmentsByRange</key>
1453
+ <dict>
1454
+ <key>{0, 1}</key>
1455
+ <dict>
1456
+ <key>OutputName</key>
1457
+ <string>Search API URL</string>
1458
+ <key>OutputUUID</key>
1459
+ <string>9CD90681-A4FA-41D4-BEB5-97778C2460F3</string>
1460
+ <key>Type</key>
1461
+ <string>ActionOutput</string>
1462
+ </dict>
1463
+ </dict>
1464
+ <key>string</key>
1465
+ <string></string>
1466
+ </dict>
1467
+ <key>WFSerializationType</key>
1468
+ <string>WFTextTokenString</string>
1469
+ </dict>
1470
+ </dict>
1471
+ </dict>
1472
+ <dict>
1473
+ <key>WFWorkflowActionIdentifier</key>
1474
+ <string>is.workflow.actions.detect.dictionary</string>
1475
+ <key>WFWorkflowActionParameters</key>
1476
+ <dict>
1477
+ <key>UUID</key>
1478
+ <string>9557B52D-F57B-45CF-85C9-DE62CD6CC62E</string>
1479
+ <key>WFInput</key>
1480
+ <dict>
1481
+ <key>Value</key>
1482
+ <dict>
1483
+ <key>OutputName</key>
1484
+ <string>Contents of URL</string>
1485
+ <key>OutputUUID</key>
1486
+ <string>12251A19-E5BC-4710-A610-F7623B1563C2</string>
1487
+ <key>Type</key>
1488
+ <string>ActionOutput</string>
1489
+ </dict>
1490
+ <key>WFSerializationType</key>
1491
+ <string>WFTextTokenAttachment</string>
1492
+ </dict>
1493
+ </dict>
1494
+ </dict>
1495
+ <dict>
1496
+ <key>WFWorkflowActionIdentifier</key>
1497
+ <string>is.workflow.actions.getvalueforkey</string>
1498
+ <key>WFWorkflowActionParameters</key>
1499
+ <dict>
1500
+ <key>CustomOutputName</key>
1501
+ <string>Status</string>
1502
+ <key>UUID</key>
1503
+ <string>85096209-C24D-43A2-8B94-3446C084D6F8</string>
1504
+ <key>WFDictionaryKey</key>
1505
+ <string>statuses</string>
1506
+ <key>WFInput</key>
1507
+ <dict>
1508
+ <key>Value</key>
1509
+ <dict>
1510
+ <key>OutputName</key>
1511
+ <string>Dictionary</string>
1512
+ <key>OutputUUID</key>
1513
+ <string>9557B52D-F57B-45CF-85C9-DE62CD6CC62E</string>
1514
+ <key>Type</key>
1515
+ <string>ActionOutput</string>
1516
+ </dict>
1517
+ <key>WFSerializationType</key>
1518
+ <string>WFTextTokenAttachment</string>
1519
+ </dict>
1520
+ </dict>
1521
+ </dict>
1522
+ <dict>
1523
+ <key>WFWorkflowActionIdentifier</key>
1524
+ <string>is.workflow.actions.conditional</string>
1525
+ <key>WFWorkflowActionParameters</key>
1526
+ <dict>
1527
+ <key>GroupingIdentifier</key>
1528
+ <string>D6CD22F3-1204-402C-9170-869773487CD2</string>
1529
+ <key>WFCondition</key>
1530
+ <integer>101</integer>
1531
+ <key>WFControlFlowMode</key>
1532
+ <integer>0</integer>
1533
+ <key>WFInput</key>
1534
+ <dict>
1535
+ <key>Type</key>
1536
+ <string>Variable</string>
1537
+ <key>Variable</key>
1538
+ <dict>
1539
+ <key>Value</key>
1540
+ <dict>
1541
+ <key>OutputName</key>
1542
+ <string>Status</string>
1543
+ <key>OutputUUID</key>
1544
+ <string>85096209-C24D-43A2-8B94-3446C084D6F8</string>
1545
+ <key>Type</key>
1546
+ <string>ActionOutput</string>
1547
+ </dict>
1548
+ <key>WFSerializationType</key>
1549
+ <string>WFTextTokenAttachment</string>
1550
+ </dict>
1551
+ </dict>
1552
+ </dict>
1553
+ </dict>
1554
+ <dict>
1555
+ <key>WFWorkflowActionIdentifier</key>
1556
+ <string>is.workflow.actions.alert</string>
1557
+ <key>WFWorkflowActionParameters</key>
1558
+ <dict>
1559
+ <key>WFAlertActionCancelButtonShown</key>
1560
+ <false/>
1561
+ <key>WFAlertActionMessage</key>
1562
+ <string>The shortcut couldn't look up the post's link.
1563
+
1564
+ Please make sure to pass a valid post URL to this shortcut and try again.</string>
1565
+ <key>WFAlertActionTitle</key>
1566
+ <string>❌ Error ❌</string>
1567
+ </dict>
1568
+ </dict>
1569
+ <dict>
1570
+ <key>WFWorkflowActionIdentifier</key>
1571
+ <string>is.workflow.actions.exit</string>
1572
+ <key>WFWorkflowActionParameters</key>
1573
+ <dict/>
1574
+ </dict>
1575
+ <dict>
1576
+ <key>WFWorkflowActionIdentifier</key>
1577
+ <string>is.workflow.actions.conditional</string>
1578
+ <key>WFWorkflowActionParameters</key>
1579
+ <dict>
1580
+ <key>GroupingIdentifier</key>
1581
+ <string>D6CD22F3-1204-402C-9170-869773487CD2</string>
1582
+ <key>WFControlFlowMode</key>
1583
+ <integer>2</integer>
1584
+ </dict>
1585
+ </dict>
1586
+ <dict>
1587
+ <key>WFWorkflowActionIdentifier</key>
1588
+ <string>is.workflow.actions.getvalueforkey</string>
1589
+ <key>WFWorkflowActionParameters</key>
1590
+ <dict>
1591
+ <key>CustomOutputName</key>
1592
+ <string>Username</string>
1593
+ <key>UUID</key>
1594
+ <string>7B833DAB-2E78-4442-BDA4-829083327754</string>
1595
+ <key>WFDictionaryKey</key>
1596
+ <string>account.acct</string>
1597
+ <key>WFInput</key>
1598
+ <dict>
1599
+ <key>Value</key>
1600
+ <dict>
1601
+ <key>Aggrandizements</key>
1602
+ <array>
1603
+ <dict>
1604
+ <key>CoercionItemClass</key>
1605
+ <string>WFDictionaryContentItem</string>
1606
+ <key>Type</key>
1607
+ <string>WFCoercionVariableAggrandizement</string>
1608
+ </dict>
1609
+ </array>
1610
+ <key>OutputName</key>
1611
+ <string>Status</string>
1612
+ <key>OutputUUID</key>
1613
+ <string>85096209-C24D-43A2-8B94-3446C084D6F8</string>
1614
+ <key>Type</key>
1615
+ <string>ActionOutput</string>
1616
+ </dict>
1617
+ <key>WFSerializationType</key>
1618
+ <string>WFTextTokenAttachment</string>
1619
+ </dict>
1620
+ </dict>
1621
+ </dict>
1622
+ <dict>
1623
+ <key>WFWorkflowActionIdentifier</key>
1624
+ <string>is.workflow.actions.getvalueforkey</string>
1625
+ <key>WFWorkflowActionParameters</key>
1626
+ <dict>
1627
+ <key>CustomOutputName</key>
1628
+ <string>ID</string>
1629
+ <key>UUID</key>
1630
+ <string>539C410A-D76E-46D0-B71E-F36E45009F95</string>
1631
+ <key>WFDictionaryKey</key>
1632
+ <string>id</string>
1633
+ <key>WFInput</key>
1634
+ <dict>
1635
+ <key>Value</key>
1636
+ <dict>
1637
+ <key>OutputName</key>
1638
+ <string>Status</string>
1639
+ <key>OutputUUID</key>
1640
+ <string>85096209-C24D-43A2-8B94-3446C084D6F8</string>
1641
+ <key>Type</key>
1642
+ <string>ActionOutput</string>
1643
+ </dict>
1644
+ <key>WFSerializationType</key>
1645
+ <string>WFTextTokenAttachment</string>
1646
+ </dict>
1647
+ </dict>
1648
+ </dict>
1649
+ <dict>
1650
+ <key>WFWorkflowActionIdentifier</key>
1651
+ <string>is.workflow.actions.gettext</string>
1652
+ <key>WFWorkflowActionParameters</key>
1653
+ <dict>
1654
+ <key>CustomOutputName</key>
1655
+ <string>Final Post URL</string>
1656
+ <key>UUID</key>
1657
+ <string>71BDB55B-D5B3-4990-BB75-580FC7908E76</string>
1658
+ <key>WFTextActionText</key>
1659
+ <dict>
1660
+ <key>Value</key>
1661
+ <dict>
1662
+ <key>attachmentsByRange</key>
1663
+ <dict>
1664
+ <key>{0, 1}</key>
1665
+ <dict>
1666
+ <key>Type</key>
1667
+ <string>Variable</string>
1668
+ <key>VariableName</key>
1669
+ <string>Your Mastodon Instance</string>
1670
+ </dict>
1671
+ <key>{3, 1}</key>
1672
+ <dict>
1673
+ <key>OutputName</key>
1674
+ <string>Username</string>
1675
+ <key>OutputUUID</key>
1676
+ <string>7B833DAB-2E78-4442-BDA4-829083327754</string>
1677
+ <key>Type</key>
1678
+ <string>ActionOutput</string>
1679
+ </dict>
1680
+ <key>{5, 1}</key>
1681
+ <dict>
1682
+ <key>OutputName</key>
1683
+ <string>ID</string>
1684
+ <key>OutputUUID</key>
1685
+ <string>539C410A-D76E-46D0-B71E-F36E45009F95</string>
1686
+ <key>Type</key>
1687
+ <string>ActionOutput</string>
1688
+ </dict>
1689
+ </dict>
1690
+ <key>string</key>
1691
+ <string>/@/</string>
1692
+ </dict>
1693
+ <key>WFSerializationType</key>
1694
+ <string>WFTextTokenString</string>
1695
+ </dict>
1696
+ </dict>
1697
+ </dict>
1698
+ <dict>
1699
+ <key>WFWorkflowActionIdentifier</key>
1700
+ <string>is.workflow.actions.openurl</string>
1701
+ <key>WFWorkflowActionParameters</key>
1702
+ <dict>
1703
+ <key>UUID</key>
1704
+ <string>E120BC82-04B4-4512-B333-9458C14B0EA8</string>
1705
+ <key>WFInput</key>
1706
+ <dict>
1707
+ <key>Value</key>
1708
+ <dict>
1709
+ <key>OutputName</key>
1710
+ <string>Final Post URL</string>
1711
+ <key>OutputUUID</key>
1712
+ <string>71BDB55B-D5B3-4990-BB75-580FC7908E76</string>
1713
+ <key>Type</key>
1714
+ <string>ActionOutput</string>
1715
+ </dict>
1716
+ <key>WFSerializationType</key>
1717
+ <string>WFTextTokenAttachment</string>
1718
+ </dict>
1719
+ </dict>
1720
+ </dict>
1721
+ <dict>
1722
+ <key>WFWorkflowActionIdentifier</key>
1723
+ <string>is.workflow.actions.conditional</string>
1724
+ <key>WFWorkflowActionParameters</key>
1725
+ <dict>
1726
+ <key>GroupingIdentifier</key>
1727
+ <string>2B0E1827-DEC1-4DB3-A35D-372D0D53F5D7</string>
1728
+ <key>UUID</key>
1729
+ <string>55E64EDC-840C-4B7B-97E6-D53FB033C3FF</string>
1730
+ <key>WFControlFlowMode</key>
1731
+ <integer>2</integer>
1732
+ </dict>
1733
+ </dict>
1734
+ </array>
1735
+ <key>WFWorkflowClientVersion</key>
1736
+ <string>1306.1</string>
1737
+ <key>WFWorkflowHasOutputFallback</key>
1738
+ <false/>
1739
+ <key>WFWorkflowHasShortcutInputVariables</key>
1740
+ <true/>
1741
+ <key>WFWorkflowIcon</key>
1742
+ <dict>
1743
+ <key>WFWorkflowIconGlyphNumber</key>
1744
+ <integer>61583</integer>
1745
+ <key>WFWorkflowIconStartColor</key>
1746
+ <integer>2071128575</integer>
1747
+ </dict>
1748
+ <key>WFWorkflowImportQuestions</key>
1749
+ <array>
1750
+ <dict>
1751
+ <key>ActionIndex</key>
1752
+ <integer>2</integer>
1753
+ <key>Category</key>
1754
+ <string>Parameter</string>
1755
+ <key>DefaultValue</key>
1756
+ <string></string>
1757
+ <key>ParameterKey</key>
1758
+ <string>WFTextActionText</string>
1759
+ <key>Text</key>
1760
+ <string>Enter your Mastodon app access token. You can create a Mastodon app in Settings &gt; Applications at your local Mastodon instance. Make sure to add read:search permissions to the app. This token will be used to communicate securely with the Mastodon API.</string>
1761
+ </dict>
1762
+ <dict>
1763
+ <key>ActionIndex</key>
1764
+ <integer>4</integer>
1765
+ <key>Category</key>
1766
+ <string>Parameter</string>
1767
+ <key>ParameterKey</key>
1768
+ <string>WFURLActionURL</string>
1769
+ <key>Text</key>
1770
+ <string>Enter the base URL of your Mastodon instance *without* a trailing slash at the end. e.g. https://mastodon.social</string>
1771
+ </dict>
1772
+ </array>
1773
+ <key>WFWorkflowInputContentItemClasses</key>
1774
+ <array>
1775
+ <string>WFSafariWebPageContentItem</string>
1776
+ </array>
1777
+ <key>WFWorkflowMinimumClientVersion</key>
1778
+ <integer>900</integer>
1779
+ <key>WFWorkflowMinimumClientVersionString</key>
1780
+ <string>900</string>
1781
+ <key>WFWorkflowOutputContentItemClasses</key>
1782
+ <array/>
1783
+ <key>WFWorkflowTypes</key>
1784
+ <array>
1785
+ <string>ActionExtension</string>
1786
+ <string>Watch</string>
1787
+ <string>QuickActions</string>
1788
+ <string>MenuBar</string>
1789
+ </array>
1790
+ </dict>
1791
+ </plist>