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,780 @@
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>Start a new timer in your Toggl account. The timer can be assigned a specific description, task, and tag using variables.</string>
14
+ </dict>
15
+ </dict>
16
+ <dict>
17
+ <key>WFWorkflowActionIdentifier</key>
18
+ <string>is.workflow.actions.comment</string>
19
+ <key>WFWorkflowActionParameters</key>
20
+ <dict>
21
+ <key>WFCommentActionText</key>
22
+ <string>Check the comments to identify what each action saves.
23
+
24
+ For the shortcut to work, you'll need to have project and task IDs. You can extract these IDs from your account using the Prepare Toggl Template shortcut, also shared on the Club-only page.
25
+
26
+ If you don't want to use tasks or tags, simply delete the 'task' or 'tag' items from the main Dictionary action; you will also need to delete the 'tags' and 'tid' items from the Request Body of the Get Contents of URL action.</string>
27
+ </dict>
28
+ </dict>
29
+ <dict>
30
+ <key>WFWorkflowActionIdentifier</key>
31
+ <string>is.workflow.actions.gettext</string>
32
+ <key>WFWorkflowActionParameters</key>
33
+ <dict>
34
+ <key>UUID</key>
35
+ <string>6B158059-65B8-41A2-932B-47E96D7AB0E7</string>
36
+ <key>WFTextActionText</key>
37
+ <string>email:password</string>
38
+ </dict>
39
+ </dict>
40
+ <dict>
41
+ <key>WFWorkflowActionIdentifier</key>
42
+ <string>is.workflow.actions.base64encode</string>
43
+ <key>WFWorkflowActionParameters</key>
44
+ <dict>
45
+ <key>CustomOutputName</key>
46
+ <string>Auth</string>
47
+ <key>UUID</key>
48
+ <string>FAD01238-E5D3-4C33-8C83-39CA660D0010</string>
49
+ <key>WFBase64LineBreakMode</key>
50
+ <string>None</string>
51
+ <key>WFEncodeMode</key>
52
+ <string>Encode</string>
53
+ </dict>
54
+ </dict>
55
+ <dict>
56
+ <key>WFWorkflowActionIdentifier</key>
57
+ <string>is.workflow.actions.comment</string>
58
+ <key>WFWorkflowActionParameters</key>
59
+ <dict>
60
+ <key>WFCommentActionText</key>
61
+ <string>Timer description.</string>
62
+ </dict>
63
+ </dict>
64
+ <dict>
65
+ <key>WFWorkflowActionIdentifier</key>
66
+ <string>is.workflow.actions.gettext</string>
67
+ <key>WFWorkflowActionParameters</key>
68
+ <dict>
69
+ <key>CustomOutputName</key>
70
+ <string>Timer</string>
71
+ <key>UUID</key>
72
+ <string>9902FD4B-E1C0-4D2E-A321-D003733BC7F6</string>
73
+ <key>WFTextActionText</key>
74
+ <string>Workflow Corner</string>
75
+ </dict>
76
+ </dict>
77
+ <dict>
78
+ <key>WFWorkflowActionIdentifier</key>
79
+ <string>is.workflow.actions.comment</string>
80
+ <key>WFWorkflowActionParameters</key>
81
+ <dict>
82
+ <key>WFCommentActionText</key>
83
+ <string>Project ID</string>
84
+ </dict>
85
+ </dict>
86
+ <dict>
87
+ <key>WFWorkflowActionIdentifier</key>
88
+ <string>is.workflow.actions.gettext</string>
89
+ <key>WFWorkflowActionParameters</key>
90
+ <dict>
91
+ <key>CustomOutputName</key>
92
+ <string>Project ID</string>
93
+ <key>UUID</key>
94
+ <string>B90F6E5C-B056-4F67-90B3-E78AAEDA7902</string>
95
+ <key>WFTextActionText</key>
96
+ <string>PASTE PROJECT ID HERE</string>
97
+ </dict>
98
+ </dict>
99
+ <dict>
100
+ <key>WFWorkflowActionIdentifier</key>
101
+ <string>is.workflow.actions.comment</string>
102
+ <key>WFWorkflowActionParameters</key>
103
+ <dict>
104
+ <key>WFCommentActionText</key>
105
+ <string>Task ID</string>
106
+ </dict>
107
+ </dict>
108
+ <dict>
109
+ <key>WFWorkflowActionIdentifier</key>
110
+ <string>is.workflow.actions.gettext</string>
111
+ <key>WFWorkflowActionParameters</key>
112
+ <dict>
113
+ <key>CustomOutputName</key>
114
+ <string>Task ID</string>
115
+ <key>UUID</key>
116
+ <string>05E1A4EA-7F0C-4572-8A72-FB4A84CB2E61</string>
117
+ <key>WFTextActionText</key>
118
+ <string>PASTE TASK ID HERE</string>
119
+ </dict>
120
+ </dict>
121
+ <dict>
122
+ <key>WFWorkflowActionIdentifier</key>
123
+ <string>is.workflow.actions.comment</string>
124
+ <key>WFWorkflowActionParameters</key>
125
+ <dict>
126
+ <key>WFCommentActionText</key>
127
+ <string>Tag</string>
128
+ </dict>
129
+ </dict>
130
+ <dict>
131
+ <key>WFWorkflowActionIdentifier</key>
132
+ <string>is.workflow.actions.gettext</string>
133
+ <key>WFWorkflowActionParameters</key>
134
+ <dict>
135
+ <key>CustomOutputName</key>
136
+ <string>Tag</string>
137
+ <key>UUID</key>
138
+ <string>DF20CE28-2D1E-41FA-8672-CE02DE8B6301</string>
139
+ <key>WFTextActionText</key>
140
+ <string>PASTE TAG HERE</string>
141
+ </dict>
142
+ </dict>
143
+ <dict>
144
+ <key>WFWorkflowActionIdentifier</key>
145
+ <string>is.workflow.actions.dictionary</string>
146
+ <key>WFWorkflowActionParameters</key>
147
+ <dict>
148
+ <key>UUID</key>
149
+ <string>7E447BDE-ADF6-4149-8DD7-D9CD4FB8C36C</string>
150
+ <key>WFItems</key>
151
+ <dict>
152
+ <key>Value</key>
153
+ <dict>
154
+ <key>WFDictionaryFieldValueItems</key>
155
+ <array>
156
+ <dict>
157
+ <key>WFItemType</key>
158
+ <integer>0</integer>
159
+ <key>WFKey</key>
160
+ <dict>
161
+ <key>Value</key>
162
+ <dict>
163
+ <key>attachmentsByRange</key>
164
+ <dict/>
165
+ <key>string</key>
166
+ <string>timer</string>
167
+ </dict>
168
+ <key>WFSerializationType</key>
169
+ <string>WFTextTokenString</string>
170
+ </dict>
171
+ <key>WFValue</key>
172
+ <dict>
173
+ <key>Value</key>
174
+ <dict>
175
+ <key>attachmentsByRange</key>
176
+ <dict>
177
+ <key>{0, 1}</key>
178
+ <dict>
179
+ <key>OutputName</key>
180
+ <string>Timer</string>
181
+ <key>OutputUUID</key>
182
+ <string>9902FD4B-E1C0-4D2E-A321-D003733BC7F6</string>
183
+ <key>Type</key>
184
+ <string>ActionOutput</string>
185
+ </dict>
186
+ </dict>
187
+ <key>string</key>
188
+ <string></string>
189
+ </dict>
190
+ <key>WFSerializationType</key>
191
+ <string>WFTextTokenString</string>
192
+ </dict>
193
+ </dict>
194
+ <dict>
195
+ <key>WFItemType</key>
196
+ <integer>0</integer>
197
+ <key>WFKey</key>
198
+ <dict>
199
+ <key>Value</key>
200
+ <dict>
201
+ <key>attachmentsByRange</key>
202
+ <dict/>
203
+ <key>string</key>
204
+ <string>project</string>
205
+ </dict>
206
+ <key>WFSerializationType</key>
207
+ <string>WFTextTokenString</string>
208
+ </dict>
209
+ <key>WFValue</key>
210
+ <dict>
211
+ <key>Value</key>
212
+ <dict>
213
+ <key>attachmentsByRange</key>
214
+ <dict>
215
+ <key>{0, 1}</key>
216
+ <dict>
217
+ <key>OutputName</key>
218
+ <string>Project ID</string>
219
+ <key>OutputUUID</key>
220
+ <string>B90F6E5C-B056-4F67-90B3-E78AAEDA7902</string>
221
+ <key>Type</key>
222
+ <string>ActionOutput</string>
223
+ </dict>
224
+ </dict>
225
+ <key>string</key>
226
+ <string></string>
227
+ </dict>
228
+ <key>WFSerializationType</key>
229
+ <string>WFTextTokenString</string>
230
+ </dict>
231
+ </dict>
232
+ <dict>
233
+ <key>WFItemType</key>
234
+ <integer>0</integer>
235
+ <key>WFKey</key>
236
+ <dict>
237
+ <key>Value</key>
238
+ <dict>
239
+ <key>attachmentsByRange</key>
240
+ <dict/>
241
+ <key>string</key>
242
+ <string>task</string>
243
+ </dict>
244
+ <key>WFSerializationType</key>
245
+ <string>WFTextTokenString</string>
246
+ </dict>
247
+ <key>WFValue</key>
248
+ <dict>
249
+ <key>Value</key>
250
+ <dict>
251
+ <key>attachmentsByRange</key>
252
+ <dict>
253
+ <key>{0, 1}</key>
254
+ <dict>
255
+ <key>OutputName</key>
256
+ <string>Task ID</string>
257
+ <key>OutputUUID</key>
258
+ <string>05E1A4EA-7F0C-4572-8A72-FB4A84CB2E61</string>
259
+ <key>Type</key>
260
+ <string>ActionOutput</string>
261
+ </dict>
262
+ </dict>
263
+ <key>string</key>
264
+ <string></string>
265
+ </dict>
266
+ <key>WFSerializationType</key>
267
+ <string>WFTextTokenString</string>
268
+ </dict>
269
+ </dict>
270
+ <dict>
271
+ <key>WFItemType</key>
272
+ <integer>0</integer>
273
+ <key>WFKey</key>
274
+ <dict>
275
+ <key>Value</key>
276
+ <dict>
277
+ <key>attachmentsByRange</key>
278
+ <dict/>
279
+ <key>string</key>
280
+ <string>tag</string>
281
+ </dict>
282
+ <key>WFSerializationType</key>
283
+ <string>WFTextTokenString</string>
284
+ </dict>
285
+ <key>WFValue</key>
286
+ <dict>
287
+ <key>Value</key>
288
+ <dict>
289
+ <key>attachmentsByRange</key>
290
+ <dict>
291
+ <key>{0, 1}</key>
292
+ <dict>
293
+ <key>OutputName</key>
294
+ <string>Tag</string>
295
+ <key>OutputUUID</key>
296
+ <string>DF20CE28-2D1E-41FA-8672-CE02DE8B6301</string>
297
+ <key>Type</key>
298
+ <string>ActionOutput</string>
299
+ </dict>
300
+ </dict>
301
+ <key>string</key>
302
+ <string></string>
303
+ </dict>
304
+ <key>WFSerializationType</key>
305
+ <string>WFTextTokenString</string>
306
+ </dict>
307
+ </dict>
308
+ </array>
309
+ </dict>
310
+ <key>WFSerializationType</key>
311
+ <string>WFDictionaryFieldValue</string>
312
+ </dict>
313
+ </dict>
314
+ </dict>
315
+ <dict>
316
+ <key>WFWorkflowActionIdentifier</key>
317
+ <string>is.workflow.actions.url</string>
318
+ <key>WFWorkflowActionParameters</key>
319
+ <dict>
320
+ <key>UUID</key>
321
+ <string>DD85C3E7-2791-4213-A072-80FE27217DF6</string>
322
+ <key>WFURLActionURL</key>
323
+ <string>https://www.toggl.com/api/v8/time_entries/start</string>
324
+ </dict>
325
+ </dict>
326
+ <dict>
327
+ <key>WFWorkflowActionIdentifier</key>
328
+ <string>is.workflow.actions.downloadurl</string>
329
+ <key>WFWorkflowActionParameters</key>
330
+ <dict>
331
+ <key>Advanced</key>
332
+ <true/>
333
+ <key>ShowHeaders</key>
334
+ <true/>
335
+ <key>UUID</key>
336
+ <string>EEAF20D6-178B-4108-A0FE-5DD1DD04C0E8</string>
337
+ <key>WFFormValues</key>
338
+ <dict>
339
+ <key>Value</key>
340
+ <dict>
341
+ <key>WFDictionaryFieldValueItems</key>
342
+ <array/>
343
+ </dict>
344
+ <key>WFSerializationType</key>
345
+ <string>WFDictionaryFieldValue</string>
346
+ </dict>
347
+ <key>WFHTTPBodyType</key>
348
+ <string>JSON</string>
349
+ <key>WFHTTPHeaders</key>
350
+ <dict>
351
+ <key>Value</key>
352
+ <dict>
353
+ <key>WFDictionaryFieldValueItems</key>
354
+ <array>
355
+ <dict>
356
+ <key>WFItemType</key>
357
+ <integer>0</integer>
358
+ <key>WFKey</key>
359
+ <dict>
360
+ <key>Value</key>
361
+ <dict>
362
+ <key>attachmentsByRange</key>
363
+ <dict/>
364
+ <key>string</key>
365
+ <string>Authorization</string>
366
+ </dict>
367
+ <key>WFSerializationType</key>
368
+ <string>WFTextTokenString</string>
369
+ </dict>
370
+ <key>WFValue</key>
371
+ <dict>
372
+ <key>Value</key>
373
+ <dict>
374
+ <key>attachmentsByRange</key>
375
+ <dict>
376
+ <key>{6, 1}</key>
377
+ <dict>
378
+ <key>OutputName</key>
379
+ <string>Auth</string>
380
+ <key>OutputUUID</key>
381
+ <string>FAD01238-E5D3-4C33-8C83-39CA660D0010</string>
382
+ <key>Type</key>
383
+ <string>ActionOutput</string>
384
+ </dict>
385
+ </dict>
386
+ <key>string</key>
387
+ <string>Basic </string>
388
+ </dict>
389
+ <key>WFSerializationType</key>
390
+ <string>WFTextTokenString</string>
391
+ </dict>
392
+ </dict>
393
+ </array>
394
+ </dict>
395
+ <key>WFSerializationType</key>
396
+ <string>WFDictionaryFieldValue</string>
397
+ </dict>
398
+ <key>WFHTTPMethod</key>
399
+ <string>POST</string>
400
+ <key>WFJSONValues</key>
401
+ <dict>
402
+ <key>Value</key>
403
+ <dict>
404
+ <key>WFDictionaryFieldValueItems</key>
405
+ <array>
406
+ <dict>
407
+ <key>WFItemType</key>
408
+ <integer>1</integer>
409
+ <key>WFKey</key>
410
+ <dict>
411
+ <key>Value</key>
412
+ <dict>
413
+ <key>attachmentsByRange</key>
414
+ <dict/>
415
+ <key>string</key>
416
+ <string>time_entry</string>
417
+ </dict>
418
+ <key>WFSerializationType</key>
419
+ <string>WFTextTokenString</string>
420
+ </dict>
421
+ <key>WFValue</key>
422
+ <dict>
423
+ <key>Value</key>
424
+ <dict>
425
+ <key>Value</key>
426
+ <dict>
427
+ <key>WFDictionaryFieldValueItems</key>
428
+ <array>
429
+ <dict>
430
+ <key>WFItemType</key>
431
+ <integer>0</integer>
432
+ <key>WFKey</key>
433
+ <dict>
434
+ <key>Value</key>
435
+ <dict>
436
+ <key>attachmentsByRange</key>
437
+ <dict/>
438
+ <key>string</key>
439
+ <string>description</string>
440
+ </dict>
441
+ <key>WFSerializationType</key>
442
+ <string>WFTextTokenString</string>
443
+ </dict>
444
+ <key>WFValue</key>
445
+ <dict>
446
+ <key>Value</key>
447
+ <dict>
448
+ <key>attachmentsByRange</key>
449
+ <dict>
450
+ <key>{0, 1}</key>
451
+ <dict>
452
+ <key>Aggrandizements</key>
453
+ <array>
454
+ <dict>
455
+ <key>DictionaryKey</key>
456
+ <string>timer</string>
457
+ <key>Type</key>
458
+ <string>WFDictionaryValueVariableAggrandizement</string>
459
+ </dict>
460
+ </array>
461
+ <key>OutputName</key>
462
+ <string>Dictionary</string>
463
+ <key>OutputUUID</key>
464
+ <string>7E447BDE-ADF6-4149-8DD7-D9CD4FB8C36C</string>
465
+ <key>Type</key>
466
+ <string>ActionOutput</string>
467
+ </dict>
468
+ </dict>
469
+ <key>string</key>
470
+ <string></string>
471
+ </dict>
472
+ <key>WFSerializationType</key>
473
+ <string>WFTextTokenString</string>
474
+ </dict>
475
+ </dict>
476
+ <dict>
477
+ <key>WFItemType</key>
478
+ <integer>0</integer>
479
+ <key>WFKey</key>
480
+ <dict>
481
+ <key>Value</key>
482
+ <dict>
483
+ <key>attachmentsByRange</key>
484
+ <dict/>
485
+ <key>string</key>
486
+ <string>pid</string>
487
+ </dict>
488
+ <key>WFSerializationType</key>
489
+ <string>WFTextTokenString</string>
490
+ </dict>
491
+ <key>WFValue</key>
492
+ <dict>
493
+ <key>Value</key>
494
+ <dict>
495
+ <key>attachmentsByRange</key>
496
+ <dict>
497
+ <key>{0, 1}</key>
498
+ <dict>
499
+ <key>Aggrandizements</key>
500
+ <array>
501
+ <dict>
502
+ <key>DictionaryKey</key>
503
+ <string>project</string>
504
+ <key>Type</key>
505
+ <string>WFDictionaryValueVariableAggrandizement</string>
506
+ </dict>
507
+ </array>
508
+ <key>OutputName</key>
509
+ <string>Dictionary</string>
510
+ <key>OutputUUID</key>
511
+ <string>7E447BDE-ADF6-4149-8DD7-D9CD4FB8C36C</string>
512
+ <key>Type</key>
513
+ <string>ActionOutput</string>
514
+ </dict>
515
+ </dict>
516
+ <key>string</key>
517
+ <string></string>
518
+ </dict>
519
+ <key>WFSerializationType</key>
520
+ <string>WFTextTokenString</string>
521
+ </dict>
522
+ </dict>
523
+ <dict>
524
+ <key>WFItemType</key>
525
+ <integer>0</integer>
526
+ <key>WFKey</key>
527
+ <dict>
528
+ <key>Value</key>
529
+ <dict>
530
+ <key>attachmentsByRange</key>
531
+ <dict/>
532
+ <key>string</key>
533
+ <string>created_with</string>
534
+ </dict>
535
+ <key>WFSerializationType</key>
536
+ <string>WFTextTokenString</string>
537
+ </dict>
538
+ <key>WFValue</key>
539
+ <dict>
540
+ <key>Value</key>
541
+ <dict>
542
+ <key>attachmentsByRange</key>
543
+ <dict/>
544
+ <key>string</key>
545
+ <string>Workflow</string>
546
+ </dict>
547
+ <key>WFSerializationType</key>
548
+ <string>WFTextTokenString</string>
549
+ </dict>
550
+ </dict>
551
+ <dict>
552
+ <key>WFItemType</key>
553
+ <integer>2</integer>
554
+ <key>WFKey</key>
555
+ <dict>
556
+ <key>Value</key>
557
+ <dict>
558
+ <key>attachmentsByRange</key>
559
+ <dict/>
560
+ <key>string</key>
561
+ <string>tags</string>
562
+ </dict>
563
+ <key>WFSerializationType</key>
564
+ <string>WFTextTokenString</string>
565
+ </dict>
566
+ <key>WFValue</key>
567
+ <dict>
568
+ <key>Value</key>
569
+ <array>
570
+ <dict>
571
+ <key>WFItemType</key>
572
+ <integer>0</integer>
573
+ <key>WFValue</key>
574
+ <dict>
575
+ <key>Value</key>
576
+ <dict>
577
+ <key>attachmentsByRange</key>
578
+ <dict>
579
+ <key>{0, 1}</key>
580
+ <dict>
581
+ <key>Aggrandizements</key>
582
+ <array>
583
+ <dict>
584
+ <key>DictionaryKey</key>
585
+ <string>tag</string>
586
+ <key>Type</key>
587
+ <string>WFDictionaryValueVariableAggrandizement</string>
588
+ </dict>
589
+ </array>
590
+ <key>OutputName</key>
591
+ <string>Dictionary</string>
592
+ <key>OutputUUID</key>
593
+ <string>7E447BDE-ADF6-4149-8DD7-D9CD4FB8C36C</string>
594
+ <key>Type</key>
595
+ <string>ActionOutput</string>
596
+ </dict>
597
+ </dict>
598
+ <key>string</key>
599
+ <string></string>
600
+ </dict>
601
+ <key>WFSerializationType</key>
602
+ <string>WFTextTokenString</string>
603
+ </dict>
604
+ </dict>
605
+ </array>
606
+ <key>WFSerializationType</key>
607
+ <string>WFArrayParameterState</string>
608
+ </dict>
609
+ </dict>
610
+ <dict>
611
+ <key>WFItemType</key>
612
+ <integer>0</integer>
613
+ <key>WFKey</key>
614
+ <dict>
615
+ <key>Value</key>
616
+ <dict>
617
+ <key>attachmentsByRange</key>
618
+ <dict/>
619
+ <key>string</key>
620
+ <string>tid</string>
621
+ </dict>
622
+ <key>WFSerializationType</key>
623
+ <string>WFTextTokenString</string>
624
+ </dict>
625
+ <key>WFValue</key>
626
+ <dict>
627
+ <key>Value</key>
628
+ <dict>
629
+ <key>attachmentsByRange</key>
630
+ <dict>
631
+ <key>{0, 1}</key>
632
+ <dict>
633
+ <key>Aggrandizements</key>
634
+ <array>
635
+ <dict>
636
+ <key>DictionaryKey</key>
637
+ <string>task</string>
638
+ <key>Type</key>
639
+ <string>WFDictionaryValueVariableAggrandizement</string>
640
+ </dict>
641
+ </array>
642
+ <key>OutputName</key>
643
+ <string>Dictionary</string>
644
+ <key>OutputUUID</key>
645
+ <string>7E447BDE-ADF6-4149-8DD7-D9CD4FB8C36C</string>
646
+ <key>Type</key>
647
+ <string>ActionOutput</string>
648
+ </dict>
649
+ </dict>
650
+ <key>string</key>
651
+ <string></string>
652
+ </dict>
653
+ <key>WFSerializationType</key>
654
+ <string>WFTextTokenString</string>
655
+ </dict>
656
+ </dict>
657
+ </array>
658
+ </dict>
659
+ <key>WFSerializationType</key>
660
+ <string>WFDictionaryFieldValue</string>
661
+ </dict>
662
+ <key>WFSerializationType</key>
663
+ <string>WFDictionaryFieldValue</string>
664
+ </dict>
665
+ </dict>
666
+ </array>
667
+ </dict>
668
+ <key>WFSerializationType</key>
669
+ <string>WFDictionaryFieldValue</string>
670
+ </dict>
671
+ </dict>
672
+ </dict>
673
+ <dict>
674
+ <key>WFWorkflowActionIdentifier</key>
675
+ <string>is.workflow.actions.getvalueforkey</string>
676
+ <key>WFWorkflowActionParameters</key>
677
+ <dict>
678
+ <key>WFDictionaryKey</key>
679
+ <string>data</string>
680
+ </dict>
681
+ </dict>
682
+ <dict>
683
+ <key>WFWorkflowActionIdentifier</key>
684
+ <string>is.workflow.actions.getvalueforkey</string>
685
+ <key>WFWorkflowActionParameters</key>
686
+ <dict>
687
+ <key>UUID</key>
688
+ <string>54761751-6E58-4F2A-B152-63E9018AA005</string>
689
+ <key>WFDictionaryKey</key>
690
+ <string>description</string>
691
+ </dict>
692
+ </dict>
693
+ <dict>
694
+ <key>WFWorkflowActionIdentifier</key>
695
+ <string>is.workflow.actions.showresult</string>
696
+ <key>WFWorkflowActionParameters</key>
697
+ <dict>
698
+ <key>Text</key>
699
+ <dict>
700
+ <key>Value</key>
701
+ <dict>
702
+ <key>attachmentsByRange</key>
703
+ <dict>
704
+ <key>{12, 1}</key>
705
+ <dict>
706
+ <key>OutputName</key>
707
+ <string>Dictionary Value</string>
708
+ <key>OutputUUID</key>
709
+ <string>54761751-6E58-4F2A-B152-63E9018AA005</string>
710
+ <key>Type</key>
711
+ <string>ActionOutput</string>
712
+ </dict>
713
+ </dict>
714
+ <key>string</key>
715
+ <string>Your timer '' was started.</string>
716
+ </dict>
717
+ <key>WFSerializationType</key>
718
+ <string>WFTextTokenString</string>
719
+ </dict>
720
+ </dict>
721
+ </dict>
722
+ </array>
723
+ <key>WFWorkflowClientRelease</key>
724
+ <string>2.1</string>
725
+ <key>WFWorkflowClientVersion</key>
726
+ <string>710</string>
727
+ <key>WFWorkflowIcon</key>
728
+ <dict>
729
+ <key>WFWorkflowIconGlyphNumber</key>
730
+ <integer>59657</integer>
731
+ <key>WFWorkflowIconImageData</key>
732
+ <data>
733
+ </data>
734
+ <key>WFWorkflowIconStartColor</key>
735
+ <integer>946986751</integer>
736
+ </dict>
737
+ <key>WFWorkflowImportQuestions</key>
738
+ <array>
739
+ <dict>
740
+ <key>ActionIndex</key>
741
+ <integer>2</integer>
742
+ <key>Category</key>
743
+ <string>Parameter</string>
744
+ <key>DefaultValue</key>
745
+ <string>email:password</string>
746
+ <key>ParameterKey</key>
747
+ <string>WFTextActionText</string>
748
+ <key>Text</key>
749
+ <string>Toggl Email and Password</string>
750
+ </dict>
751
+ </array>
752
+ <key>WFWorkflowInputContentItemClasses</key>
753
+ <array>
754
+ <string>WFAppStoreAppContentItem</string>
755
+ <string>WFArticleContentItem</string>
756
+ <string>WFContactContentItem</string>
757
+ <string>WFDateContentItem</string>
758
+ <string>WFEmailAddressContentItem</string>
759
+ <string>WFGenericFileContentItem</string>
760
+ <string>WFImageContentItem</string>
761
+ <string>WFiTunesProductContentItem</string>
762
+ <string>WFLocationContentItem</string>
763
+ <string>WFDCMapsLinkContentItem</string>
764
+ <string>WFAVAssetContentItem</string>
765
+ <string>WFPDFContentItem</string>
766
+ <string>WFPhoneNumberContentItem</string>
767
+ <string>WFRichTextContentItem</string>
768
+ <string>WFSafariWebPageContentItem</string>
769
+ <string>WFStringContentItem</string>
770
+ <string>WFURLContentItem</string>
771
+ </array>
772
+ <key>WFWorkflowMinimumClientVersion</key>
773
+ <integer>411</integer>
774
+ <key>WFWorkflowTypes</key>
775
+ <array>
776
+ <string>WatchKit</string>
777
+ <string>NCWidget</string>
778
+ </array>
779
+ </dict>
780
+ </plist>