@firedrill-tools/slack 0.1.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 (58) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +369 -0
  3. package/firedrill/agent.target.json +17 -0
  4. package/firedrill/baseline.scenario.json +5 -0
  5. package/firedrill/bounds.scenario.json +112 -0
  6. package/firedrill/conformance.suite.json +21 -0
  7. package/firedrill/history-unavailable.scenario.json +11 -0
  8. package/firedrill/open-long-handles.scenario.json +263 -0
  9. package/firedrill/open-member-bound.scenario.json +24 -0
  10. package/firedrill/post-rate-limited.scenario.json +11 -0
  11. package/firedrill/response-budget.scenario.json +24 -0
  12. package/firedrill/slack-bounds.drill.json +428 -0
  13. package/firedrill/slack-denied.drill.json +74 -0
  14. package/firedrill/slack-fresh-install.drill.json +132 -0
  15. package/firedrill/slack-history-unavailable.drill.json +83 -0
  16. package/firedrill/slack-invalid-auth.drill.json +408 -0
  17. package/firedrill/slack-mcp-aliases.drill.json +219 -0
  18. package/firedrill/slack-open-long-handles.drill.json +82 -0
  19. package/firedrill/slack-open-member-bound.drill.json +135 -0
  20. package/firedrill/slack-post-rate-limited.drill.json +96 -0
  21. package/firedrill/slack-response-budget.drill.json +118 -0
  22. package/firedrill/slack-thread-many-repliers.drill.json +100 -0
  23. package/firedrill/slack-ts-sequence-full.drill.json +165 -0
  24. package/firedrill/slack-visibility.drill.json +110 -0
  25. package/firedrill/slack-web-api-flow.drill.json +896 -0
  26. package/firedrill/thread-many-repliers.scenario.json +79 -0
  27. package/firedrill/tools/slack/app/assets/ATTRIBUTION.md +40 -0
  28. package/firedrill/tools/slack/app/assets/fonts/OFL.txt +93 -0
  29. package/firedrill/tools/slack/app/assets/fonts/lato-latin-400.woff2 +0 -0
  30. package/firedrill/tools/slack/app/assets/fonts/lato-latin-700.woff2 +0 -0
  31. package/firedrill/tools/slack/app/assets/fonts/lato-latin-900.woff2 +0 -0
  32. package/firedrill/tools/slack/app/assets/slack-wordmark.svg +1 -0
  33. package/firedrill/tools/slack/app/assets/slack.svg +1 -0
  34. package/firedrill/tools/slack/app/site/app.js +2202 -0
  35. package/firedrill/tools/slack/app/site/assets/fonts/lato-latin-400.woff2 +0 -0
  36. package/firedrill/tools/slack/app/site/assets/fonts/lato-latin-700.woff2 +0 -0
  37. package/firedrill/tools/slack/app/site/assets/fonts/lato-latin-900.woff2 +0 -0
  38. package/firedrill/tools/slack/app/site/assets/slack-wordmark.svg +1 -0
  39. package/firedrill/tools/slack/app/site/assets/slack.svg +1 -0
  40. package/firedrill/tools/slack/app/site/chrome.css +73 -0
  41. package/firedrill/tools/slack/app/site/chrome.js +96 -0
  42. package/firedrill/tools/slack/app/site/icons.js +96 -0
  43. package/firedrill/tools/slack/app/site/index.html +253 -0
  44. package/firedrill/tools/slack/app/site/styles.css +2719 -0
  45. package/firedrill/tools/slack/app/site/ui.js +491 -0
  46. package/firedrill/tools/slack/behavior.mjs +1171 -0
  47. package/firedrill/tools/slack/lib/access.mjs +138 -0
  48. package/firedrill/tools/slack/lib/budget.mjs +67 -0
  49. package/firedrill/tools/slack/lib/ids.mjs +146 -0
  50. package/firedrill/tools/slack/lib/search.mjs +172 -0
  51. package/firedrill/tools/slack/lib/wire.mjs +144 -0
  52. package/firedrill/tools/slack/slack.tool.json +6114 -0
  53. package/firedrill/ts-sequence-full.scenario.json +38 -0
  54. package/firedrill/world.json +2008 -0
  55. package/firedrill.json +5 -0
  56. package/package.json +62 -0
  57. package/starter.json +1562 -0
  58. package/test/conformance.mjs +1166 -0
@@ -0,0 +1,896 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "slack-web-api-flow",
4
+ "title": "Slack Web API routes: every read and write method over GET and POST form",
5
+ "targetId": "conformance-agent",
6
+ "scenarioId": "baseline",
7
+ "actorId": "member",
8
+ "task": {
9
+ "instruction": "Run the web-api conformance flow against the synthetic Slack Tool and fail loudly on any unexpected status or body."
10
+ },
11
+ "assertions": [
12
+ {
13
+ "id": "auth-test-ok",
14
+ "kind": "operation.count",
15
+ "operation": {
16
+ "packageId": "slack",
17
+ "operationId": "auth.test"
18
+ },
19
+ "outcomes": [
20
+ "ok"
21
+ ],
22
+ "comparison": {
23
+ "operator": "greater_than_or_equal",
24
+ "value": 1
25
+ }
26
+ },
27
+ {
28
+ "id": "users-list-ok",
29
+ "kind": "operation.count",
30
+ "operation": {
31
+ "packageId": "slack",
32
+ "operationId": "users.list"
33
+ },
34
+ "outcomes": [
35
+ "ok"
36
+ ],
37
+ "comparison": {
38
+ "operator": "greater_than_or_equal",
39
+ "value": 1
40
+ }
41
+ },
42
+ {
43
+ "id": "users-info-ok",
44
+ "kind": "operation.count",
45
+ "operation": {
46
+ "packageId": "slack",
47
+ "operationId": "users.info"
48
+ },
49
+ "outcomes": [
50
+ "ok"
51
+ ],
52
+ "comparison": {
53
+ "operator": "greater_than_or_equal",
54
+ "value": 1
55
+ }
56
+ },
57
+ {
58
+ "id": "users-profile-get-ok",
59
+ "kind": "operation.count",
60
+ "operation": {
61
+ "packageId": "slack",
62
+ "operationId": "users.profile.get"
63
+ },
64
+ "outcomes": [
65
+ "ok"
66
+ ],
67
+ "comparison": {
68
+ "operator": "greater_than_or_equal",
69
+ "value": 1
70
+ }
71
+ },
72
+ {
73
+ "id": "conversations-list-ok",
74
+ "kind": "operation.count",
75
+ "operation": {
76
+ "packageId": "slack",
77
+ "operationId": "conversations.list"
78
+ },
79
+ "outcomes": [
80
+ "ok"
81
+ ],
82
+ "comparison": {
83
+ "operator": "greater_than_or_equal",
84
+ "value": 1
85
+ }
86
+ },
87
+ {
88
+ "id": "conversations-info-ok",
89
+ "kind": "operation.count",
90
+ "operation": {
91
+ "packageId": "slack",
92
+ "operationId": "conversations.info"
93
+ },
94
+ "outcomes": [
95
+ "ok"
96
+ ],
97
+ "comparison": {
98
+ "operator": "greater_than_or_equal",
99
+ "value": 1
100
+ }
101
+ },
102
+ {
103
+ "id": "conversations-members-ok",
104
+ "kind": "operation.count",
105
+ "operation": {
106
+ "packageId": "slack",
107
+ "operationId": "conversations.members"
108
+ },
109
+ "outcomes": [
110
+ "ok"
111
+ ],
112
+ "comparison": {
113
+ "operator": "greater_than_or_equal",
114
+ "value": 1
115
+ }
116
+ },
117
+ {
118
+ "id": "conversations-create-ok",
119
+ "kind": "operation.count",
120
+ "operation": {
121
+ "packageId": "slack",
122
+ "operationId": "conversations.create"
123
+ },
124
+ "outcomes": [
125
+ "ok"
126
+ ],
127
+ "comparison": {
128
+ "operator": "greater_than_or_equal",
129
+ "value": 1
130
+ }
131
+ },
132
+ {
133
+ "id": "conversations-join-ok",
134
+ "kind": "operation.count",
135
+ "operation": {
136
+ "packageId": "slack",
137
+ "operationId": "conversations.join"
138
+ },
139
+ "outcomes": [
140
+ "ok"
141
+ ],
142
+ "comparison": {
143
+ "operator": "greater_than_or_equal",
144
+ "value": 1
145
+ }
146
+ },
147
+ {
148
+ "id": "conversations-invite-ok",
149
+ "kind": "operation.count",
150
+ "operation": {
151
+ "packageId": "slack",
152
+ "operationId": "conversations.invite"
153
+ },
154
+ "outcomes": [
155
+ "ok"
156
+ ],
157
+ "comparison": {
158
+ "operator": "greater_than_or_equal",
159
+ "value": 1
160
+ }
161
+ },
162
+ {
163
+ "id": "conversations-open-ok",
164
+ "kind": "operation.count",
165
+ "operation": {
166
+ "packageId": "slack",
167
+ "operationId": "conversations.open"
168
+ },
169
+ "outcomes": [
170
+ "ok"
171
+ ],
172
+ "comparison": {
173
+ "operator": "greater_than_or_equal",
174
+ "value": 1
175
+ }
176
+ },
177
+ {
178
+ "id": "conversations-archive-ok",
179
+ "kind": "operation.count",
180
+ "operation": {
181
+ "packageId": "slack",
182
+ "operationId": "conversations.archive"
183
+ },
184
+ "outcomes": [
185
+ "ok"
186
+ ],
187
+ "comparison": {
188
+ "operator": "greater_than_or_equal",
189
+ "value": 1
190
+ }
191
+ },
192
+ {
193
+ "id": "conversations-set-topic-ok",
194
+ "kind": "operation.count",
195
+ "operation": {
196
+ "packageId": "slack",
197
+ "operationId": "conversations.set-topic"
198
+ },
199
+ "outcomes": [
200
+ "ok"
201
+ ],
202
+ "comparison": {
203
+ "operator": "greater_than_or_equal",
204
+ "value": 1
205
+ }
206
+ },
207
+ {
208
+ "id": "conversations-history-ok",
209
+ "kind": "operation.count",
210
+ "operation": {
211
+ "packageId": "slack",
212
+ "operationId": "conversations.history"
213
+ },
214
+ "outcomes": [
215
+ "ok"
216
+ ],
217
+ "comparison": {
218
+ "operator": "greater_than_or_equal",
219
+ "value": 1
220
+ }
221
+ },
222
+ {
223
+ "id": "conversations-replies-ok",
224
+ "kind": "operation.count",
225
+ "operation": {
226
+ "packageId": "slack",
227
+ "operationId": "conversations.replies"
228
+ },
229
+ "outcomes": [
230
+ "ok"
231
+ ],
232
+ "comparison": {
233
+ "operator": "greater_than_or_equal",
234
+ "value": 1
235
+ }
236
+ },
237
+ {
238
+ "id": "chat-post-message-ok",
239
+ "kind": "operation.count",
240
+ "operation": {
241
+ "packageId": "slack",
242
+ "operationId": "chat.post-message"
243
+ },
244
+ "outcomes": [
245
+ "ok"
246
+ ],
247
+ "comparison": {
248
+ "operator": "greater_than_or_equal",
249
+ "value": 1
250
+ }
251
+ },
252
+ {
253
+ "id": "chat-update-ok",
254
+ "kind": "operation.count",
255
+ "operation": {
256
+ "packageId": "slack",
257
+ "operationId": "chat.update"
258
+ },
259
+ "outcomes": [
260
+ "ok"
261
+ ],
262
+ "comparison": {
263
+ "operator": "greater_than_or_equal",
264
+ "value": 1
265
+ }
266
+ },
267
+ {
268
+ "id": "chat-delete-ok",
269
+ "kind": "operation.count",
270
+ "operation": {
271
+ "packageId": "slack",
272
+ "operationId": "chat.delete"
273
+ },
274
+ "outcomes": [
275
+ "ok"
276
+ ],
277
+ "comparison": {
278
+ "operator": "greater_than_or_equal",
279
+ "value": 1
280
+ }
281
+ },
282
+ {
283
+ "id": "reactions-add-ok",
284
+ "kind": "operation.count",
285
+ "operation": {
286
+ "packageId": "slack",
287
+ "operationId": "reactions.add"
288
+ },
289
+ "outcomes": [
290
+ "ok"
291
+ ],
292
+ "comparison": {
293
+ "operator": "greater_than_or_equal",
294
+ "value": 1
295
+ }
296
+ },
297
+ {
298
+ "id": "reactions-remove-ok",
299
+ "kind": "operation.count",
300
+ "operation": {
301
+ "packageId": "slack",
302
+ "operationId": "reactions.remove"
303
+ },
304
+ "outcomes": [
305
+ "ok"
306
+ ],
307
+ "comparison": {
308
+ "operator": "greater_than_or_equal",
309
+ "value": 1
310
+ }
311
+ },
312
+ {
313
+ "id": "pins-add-ok",
314
+ "kind": "operation.count",
315
+ "operation": {
316
+ "packageId": "slack",
317
+ "operationId": "pins.add"
318
+ },
319
+ "outcomes": [
320
+ "ok"
321
+ ],
322
+ "comparison": {
323
+ "operator": "greater_than_or_equal",
324
+ "value": 1
325
+ }
326
+ },
327
+ {
328
+ "id": "pins-remove-ok",
329
+ "kind": "operation.count",
330
+ "operation": {
331
+ "packageId": "slack",
332
+ "operationId": "pins.remove"
333
+ },
334
+ "outcomes": [
335
+ "ok"
336
+ ],
337
+ "comparison": {
338
+ "operator": "greater_than_or_equal",
339
+ "value": 1
340
+ }
341
+ },
342
+ {
343
+ "id": "pins-list-ok",
344
+ "kind": "operation.count",
345
+ "operation": {
346
+ "packageId": "slack",
347
+ "operationId": "pins.list"
348
+ },
349
+ "outcomes": [
350
+ "ok"
351
+ ],
352
+ "comparison": {
353
+ "operator": "greater_than_or_equal",
354
+ "value": 1
355
+ }
356
+ },
357
+ {
358
+ "id": "search-messages-ok",
359
+ "kind": "operation.count",
360
+ "operation": {
361
+ "packageId": "slack",
362
+ "operationId": "search.messages"
363
+ },
364
+ "outcomes": [
365
+ "ok"
366
+ ],
367
+ "comparison": {
368
+ "operator": "greater_than_or_equal",
369
+ "value": 1
370
+ }
371
+ },
372
+ {
373
+ "id": "users-list-error",
374
+ "kind": "operation.count",
375
+ "operation": {
376
+ "packageId": "slack",
377
+ "operationId": "users.list"
378
+ },
379
+ "outcomes": [
380
+ "tool_error"
381
+ ],
382
+ "comparison": {
383
+ "operator": "greater_than_or_equal",
384
+ "value": 1
385
+ }
386
+ },
387
+ {
388
+ "id": "users-info-error",
389
+ "kind": "operation.count",
390
+ "operation": {
391
+ "packageId": "slack",
392
+ "operationId": "users.info"
393
+ },
394
+ "outcomes": [
395
+ "tool_error"
396
+ ],
397
+ "comparison": {
398
+ "operator": "greater_than_or_equal",
399
+ "value": 1
400
+ }
401
+ },
402
+ {
403
+ "id": "users-profile-get-error",
404
+ "kind": "operation.count",
405
+ "operation": {
406
+ "packageId": "slack",
407
+ "operationId": "users.profile.get"
408
+ },
409
+ "outcomes": [
410
+ "tool_error"
411
+ ],
412
+ "comparison": {
413
+ "operator": "greater_than_or_equal",
414
+ "value": 1
415
+ }
416
+ },
417
+ {
418
+ "id": "conversations-list-error",
419
+ "kind": "operation.count",
420
+ "operation": {
421
+ "packageId": "slack",
422
+ "operationId": "conversations.list"
423
+ },
424
+ "outcomes": [
425
+ "tool_error"
426
+ ],
427
+ "comparison": {
428
+ "operator": "greater_than_or_equal",
429
+ "value": 1
430
+ }
431
+ },
432
+ {
433
+ "id": "conversations-info-error",
434
+ "kind": "operation.count",
435
+ "operation": {
436
+ "packageId": "slack",
437
+ "operationId": "conversations.info"
438
+ },
439
+ "outcomes": [
440
+ "tool_error"
441
+ ],
442
+ "comparison": {
443
+ "operator": "greater_than_or_equal",
444
+ "value": 1
445
+ }
446
+ },
447
+ {
448
+ "id": "conversations-members-error",
449
+ "kind": "operation.count",
450
+ "operation": {
451
+ "packageId": "slack",
452
+ "operationId": "conversations.members"
453
+ },
454
+ "outcomes": [
455
+ "tool_error"
456
+ ],
457
+ "comparison": {
458
+ "operator": "greater_than_or_equal",
459
+ "value": 1
460
+ }
461
+ },
462
+ {
463
+ "id": "conversations-create-error",
464
+ "kind": "operation.count",
465
+ "operation": {
466
+ "packageId": "slack",
467
+ "operationId": "conversations.create"
468
+ },
469
+ "outcomes": [
470
+ "tool_error"
471
+ ],
472
+ "comparison": {
473
+ "operator": "greater_than_or_equal",
474
+ "value": 1
475
+ }
476
+ },
477
+ {
478
+ "id": "conversations-join-error",
479
+ "kind": "operation.count",
480
+ "operation": {
481
+ "packageId": "slack",
482
+ "operationId": "conversations.join"
483
+ },
484
+ "outcomes": [
485
+ "tool_error"
486
+ ],
487
+ "comparison": {
488
+ "operator": "greater_than_or_equal",
489
+ "value": 1
490
+ }
491
+ },
492
+ {
493
+ "id": "conversations-invite-error",
494
+ "kind": "operation.count",
495
+ "operation": {
496
+ "packageId": "slack",
497
+ "operationId": "conversations.invite"
498
+ },
499
+ "outcomes": [
500
+ "tool_error"
501
+ ],
502
+ "comparison": {
503
+ "operator": "greater_than_or_equal",
504
+ "value": 1
505
+ }
506
+ },
507
+ {
508
+ "id": "conversations-open-error",
509
+ "kind": "operation.count",
510
+ "operation": {
511
+ "packageId": "slack",
512
+ "operationId": "conversations.open"
513
+ },
514
+ "outcomes": [
515
+ "tool_error"
516
+ ],
517
+ "comparison": {
518
+ "operator": "greater_than_or_equal",
519
+ "value": 1
520
+ }
521
+ },
522
+ {
523
+ "id": "conversations-archive-error",
524
+ "kind": "operation.count",
525
+ "operation": {
526
+ "packageId": "slack",
527
+ "operationId": "conversations.archive"
528
+ },
529
+ "outcomes": [
530
+ "tool_error"
531
+ ],
532
+ "comparison": {
533
+ "operator": "greater_than_or_equal",
534
+ "value": 1
535
+ }
536
+ },
537
+ {
538
+ "id": "conversations-set-topic-error",
539
+ "kind": "operation.count",
540
+ "operation": {
541
+ "packageId": "slack",
542
+ "operationId": "conversations.set-topic"
543
+ },
544
+ "outcomes": [
545
+ "tool_error"
546
+ ],
547
+ "comparison": {
548
+ "operator": "greater_than_or_equal",
549
+ "value": 1
550
+ }
551
+ },
552
+ {
553
+ "id": "conversations-history-error",
554
+ "kind": "operation.count",
555
+ "operation": {
556
+ "packageId": "slack",
557
+ "operationId": "conversations.history"
558
+ },
559
+ "outcomes": [
560
+ "tool_error"
561
+ ],
562
+ "comparison": {
563
+ "operator": "greater_than_or_equal",
564
+ "value": 1
565
+ }
566
+ },
567
+ {
568
+ "id": "conversations-replies-error",
569
+ "kind": "operation.count",
570
+ "operation": {
571
+ "packageId": "slack",
572
+ "operationId": "conversations.replies"
573
+ },
574
+ "outcomes": [
575
+ "tool_error"
576
+ ],
577
+ "comparison": {
578
+ "operator": "greater_than_or_equal",
579
+ "value": 1
580
+ }
581
+ },
582
+ {
583
+ "id": "chat-post-message-error",
584
+ "kind": "operation.count",
585
+ "operation": {
586
+ "packageId": "slack",
587
+ "operationId": "chat.post-message"
588
+ },
589
+ "outcomes": [
590
+ "tool_error"
591
+ ],
592
+ "comparison": {
593
+ "operator": "greater_than_or_equal",
594
+ "value": 1
595
+ }
596
+ },
597
+ {
598
+ "id": "chat-update-error",
599
+ "kind": "operation.count",
600
+ "operation": {
601
+ "packageId": "slack",
602
+ "operationId": "chat.update"
603
+ },
604
+ "outcomes": [
605
+ "tool_error"
606
+ ],
607
+ "comparison": {
608
+ "operator": "greater_than_or_equal",
609
+ "value": 1
610
+ }
611
+ },
612
+ {
613
+ "id": "chat-delete-error",
614
+ "kind": "operation.count",
615
+ "operation": {
616
+ "packageId": "slack",
617
+ "operationId": "chat.delete"
618
+ },
619
+ "outcomes": [
620
+ "tool_error"
621
+ ],
622
+ "comparison": {
623
+ "operator": "greater_than_or_equal",
624
+ "value": 1
625
+ }
626
+ },
627
+ {
628
+ "id": "reactions-add-error",
629
+ "kind": "operation.count",
630
+ "operation": {
631
+ "packageId": "slack",
632
+ "operationId": "reactions.add"
633
+ },
634
+ "outcomes": [
635
+ "tool_error"
636
+ ],
637
+ "comparison": {
638
+ "operator": "greater_than_or_equal",
639
+ "value": 1
640
+ }
641
+ },
642
+ {
643
+ "id": "reactions-remove-error",
644
+ "kind": "operation.count",
645
+ "operation": {
646
+ "packageId": "slack",
647
+ "operationId": "reactions.remove"
648
+ },
649
+ "outcomes": [
650
+ "tool_error"
651
+ ],
652
+ "comparison": {
653
+ "operator": "greater_than_or_equal",
654
+ "value": 1
655
+ }
656
+ },
657
+ {
658
+ "id": "pins-add-error",
659
+ "kind": "operation.count",
660
+ "operation": {
661
+ "packageId": "slack",
662
+ "operationId": "pins.add"
663
+ },
664
+ "outcomes": [
665
+ "tool_error"
666
+ ],
667
+ "comparison": {
668
+ "operator": "greater_than_or_equal",
669
+ "value": 1
670
+ }
671
+ },
672
+ {
673
+ "id": "pins-remove-error",
674
+ "kind": "operation.count",
675
+ "operation": {
676
+ "packageId": "slack",
677
+ "operationId": "pins.remove"
678
+ },
679
+ "outcomes": [
680
+ "tool_error"
681
+ ],
682
+ "comparison": {
683
+ "operator": "greater_than_or_equal",
684
+ "value": 1
685
+ }
686
+ },
687
+ {
688
+ "id": "pins-list-error",
689
+ "kind": "operation.count",
690
+ "operation": {
691
+ "packageId": "slack",
692
+ "operationId": "pins.list"
693
+ },
694
+ "outcomes": [
695
+ "tool_error"
696
+ ],
697
+ "comparison": {
698
+ "operator": "greater_than_or_equal",
699
+ "value": 1
700
+ }
701
+ },
702
+ {
703
+ "id": "search-messages-error",
704
+ "kind": "operation.count",
705
+ "operation": {
706
+ "packageId": "slack",
707
+ "operationId": "search.messages"
708
+ },
709
+ "outcomes": [
710
+ "tool_error"
711
+ ],
712
+ "comparison": {
713
+ "operator": "greater_than_or_equal",
714
+ "value": 1
715
+ }
716
+ },
717
+ {
718
+ "id": "messages-posted",
719
+ "kind": "event.count",
720
+ "event": {
721
+ "packageId": "slack",
722
+ "eventId": "message.posted"
723
+ },
724
+ "phase": "emitted",
725
+ "comparison": {
726
+ "operator": "greater_than_or_equal",
727
+ "value": 4
728
+ }
729
+ },
730
+ {
731
+ "id": "messages-deleted",
732
+ "kind": "event.count",
733
+ "event": {
734
+ "packageId": "slack",
735
+ "eventId": "message.deleted"
736
+ },
737
+ "phase": "emitted",
738
+ "comparison": {
739
+ "operator": "equals",
740
+ "value": 3
741
+ }
742
+ },
743
+ {
744
+ "id": "reactions-added",
745
+ "kind": "event.count",
746
+ "event": {
747
+ "packageId": "slack",
748
+ "eventId": "reaction.added"
749
+ },
750
+ "phase": "emitted",
751
+ "comparison": {
752
+ "operator": "greater_than_or_equal",
753
+ "value": 1
754
+ }
755
+ },
756
+ {
757
+ "id": "channels-created",
758
+ "kind": "event.count",
759
+ "event": {
760
+ "packageId": "slack",
761
+ "eventId": "channel.created"
762
+ },
763
+ "phase": "emitted",
764
+ "comparison": {
765
+ "operator": "equals",
766
+ "value": 1
767
+ }
768
+ },
769
+ {
770
+ "id": "design-joined",
771
+ "kind": "state.value",
772
+ "packageId": "slack",
773
+ "namespace": "memberships",
774
+ "rowId": "C01DESIGN01:U01DANA0001",
775
+ "path": [
776
+ "user"
777
+ ],
778
+ "comparison": {
779
+ "operator": "equals",
780
+ "value": "U01DANA0001"
781
+ }
782
+ },
783
+ {
784
+ "id": "release-notes-archived",
785
+ "kind": "state.value",
786
+ "packageId": "slack",
787
+ "namespace": "conversations",
788
+ "rowId": "C000000001F",
789
+ "path": [
790
+ "is_archived"
791
+ ],
792
+ "comparison": {
793
+ "operator": "equals",
794
+ "value": true
795
+ }
796
+ },
797
+ {
798
+ "id": "release-notes-name",
799
+ "kind": "state.value",
800
+ "packageId": "slack",
801
+ "namespace": "conversations",
802
+ "rowId": "C000000001F",
803
+ "path": [
804
+ "name"
805
+ ],
806
+ "comparison": {
807
+ "operator": "equals",
808
+ "value": "release-notes"
809
+ }
810
+ },
811
+ {
812
+ "id": "tombstoned-parent",
813
+ "kind": "state.value",
814
+ "packageId": "slack",
815
+ "namespace": "messages",
816
+ "rowId": "C01ENGINEER:1787562900.000120",
817
+ "path": [
818
+ "subtype"
819
+ ],
820
+ "comparison": {
821
+ "operator": "equals",
822
+ "value": "tombstone"
823
+ }
824
+ },
825
+ {
826
+ "id": "dana-checklist-untouched",
827
+ "kind": "state.value",
828
+ "packageId": "slack",
829
+ "namespace": "messages",
830
+ "rowId": "C01ENGINEER:1787828400.000125",
831
+ "path": [
832
+ "text"
833
+ ],
834
+ "comparison": {
835
+ "operator": "equals",
836
+ "value": "Deploy checklist for Thursday: freeze at 14:00 UTC, smoke tests, then announce in #general."
837
+ }
838
+ },
839
+ {
840
+ "id": "workspace-row",
841
+ "kind": "state.count",
842
+ "packageId": "slack",
843
+ "namespace": "workspace",
844
+ "comparison": {
845
+ "operator": "equals",
846
+ "value": 1
847
+ }
848
+ },
849
+ {
850
+ "id": "order",
851
+ "kind": "operation.order",
852
+ "sequence": [
853
+ {
854
+ "anyOf": [
855
+ {
856
+ "packageId": "slack",
857
+ "operationId": "auth.test"
858
+ }
859
+ ]
860
+ },
861
+ {
862
+ "anyOf": [
863
+ {
864
+ "packageId": "slack",
865
+ "operationId": "conversations.create"
866
+ }
867
+ ]
868
+ },
869
+ {
870
+ "anyOf": [
871
+ {
872
+ "packageId": "slack",
873
+ "operationId": "chat.post-message"
874
+ }
875
+ ]
876
+ },
877
+ {
878
+ "anyOf": [
879
+ {
880
+ "packageId": "slack",
881
+ "operationId": "chat.delete"
882
+ }
883
+ ]
884
+ },
885
+ {
886
+ "anyOf": [
887
+ {
888
+ "packageId": "slack",
889
+ "operationId": "conversations.archive"
890
+ }
891
+ ]
892
+ }
893
+ ]
894
+ }
895
+ ]
896
+ }