archal 0.9.14 → 0.9.16

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 (51) hide show
  1. package/README.md +81 -73
  2. package/bin/archal.cjs +1 -1
  3. package/clone-assets/apify/tools.json +668 -0
  4. package/{twin-assets → clone-assets}/discord/fidelity.json +1 -1
  5. package/{twin-assets → clone-assets}/discord/tools.json +510 -510
  6. package/clone-assets/github/fidelity.json +31 -0
  7. package/{twin-assets → clone-assets}/github/tools.json +113 -3
  8. package/{twin-assets → clone-assets}/google-workspace/fidelity.json +2 -2
  9. package/{twin-assets → clone-assets}/google-workspace/tools.json +10 -10
  10. package/{twin-assets → clone-assets}/jira/fidelity.json +44 -4
  11. package/{twin-assets → clone-assets}/jira/tools.json +1 -1
  12. package/clone-assets/linear/fidelity.json +36 -0
  13. package/{twin-assets → clone-assets}/linear/tools.json +1 -1
  14. package/{twin-assets → clone-assets}/ramp/fidelity.json +1 -1
  15. package/{twin-assets → clone-assets}/ramp/tools.json +1 -1
  16. package/clone-assets/slack/fidelity.json +38 -0
  17. package/{twin-assets → clone-assets}/slack/tools.json +1 -1
  18. package/clone-assets/stripe/fidelity.json +67 -0
  19. package/{twin-assets → clone-assets}/stripe/tools.json +42 -11
  20. package/clone-assets/supabase/fidelity.json +31 -0
  21. package/{twin-assets → clone-assets}/supabase/tools.json +1 -1
  22. package/clone-assets/tavily/tools.json +115 -0
  23. package/dist/cli.cjs +97983 -0
  24. package/dist/cli.d.cts +1 -0
  25. package/dist/harness.cjs +62 -0
  26. package/dist/harness.d.cts +20 -0
  27. package/dist/index.cjs +5 -87894
  28. package/dist/index.d.cts +3 -1
  29. package/dist/seed/dynamic-generator.cjs +8796 -9201
  30. package/dist/seed/dynamic-generator.d.cts +39 -0
  31. package/dist/vitest/{chunk-KTMNDJFB.js → chunk-CJJ32YQF.js} +45272 -44436
  32. package/dist/vitest/chunk-FU2VLK75.js +29296 -0
  33. package/dist/vitest/index.cjs +56931 -32004
  34. package/dist/vitest/index.d.ts +62 -28
  35. package/dist/vitest/index.js +147 -1809
  36. package/dist/vitest/runtime/hosted-session-reaper.cjs +34766 -28922
  37. package/dist/vitest/runtime/hosted-session-reaper.js +1 -2
  38. package/dist/vitest/runtime/setup-files.js +2 -3
  39. package/package.json +19 -10
  40. package/skills/eval/SKILL.md +29 -25
  41. package/skills/onboard/SKILL.md +56 -41
  42. package/skills/scenario/SKILL.md +22 -20
  43. package/skills/vitest/SKILL.md +25 -24
  44. package/dist/vitest/chunk-L6HSMJ3F.js +0 -2216
  45. package/dist/vitest/chunk-YJICENME.js +0 -1230
  46. package/dist/vitest/src-JGHX6UKK.js +0 -94
  47. package/twin-assets/github/fidelity.json +0 -13
  48. package/twin-assets/linear/fidelity.json +0 -18
  49. package/twin-assets/slack/fidelity.json +0 -20
  50. package/twin-assets/stripe/fidelity.json +0 -22
  51. package/twin-assets/supabase/fidelity.json +0 -13
@@ -1,5 +1,5 @@
1
1
  {
2
- "twin": "discord",
2
+ "clone": "discord",
3
3
  "tools": [
4
4
  {
5
5
  "name": "discord_get_current_user",
@@ -68,7 +68,7 @@
68
68
  },
69
69
  {
70
70
  "name": "discord_gateway_dispatch_event",
71
- "description": "Emit a Discord Gateway dispatch event to connected twin clients",
71
+ "description": "Emit a Discord Gateway dispatch event to connected gateway clients",
72
72
  "inputSchema": {
73
73
  "type": "object",
74
74
  "properties": {
@@ -211,6 +211,188 @@
211
211
  "readOnlyHint": true
212
212
  }
213
213
  },
214
+ {
215
+ "name": "discord_create_guild_role",
216
+ "description": "Create a role in a Discord guild",
217
+ "inputSchema": {
218
+ "type": "object",
219
+ "properties": {
220
+ "guild_id": {
221
+ "type": "string",
222
+ "minLength": 1
223
+ },
224
+ "name": {
225
+ "type": "string",
226
+ "minLength": 1,
227
+ "maxLength": 100
228
+ },
229
+ "permissions": {
230
+ "type": "string",
231
+ "minLength": 1
232
+ },
233
+ "color": {
234
+ "type": "integer",
235
+ "minimum": 0,
236
+ "maximum": 9007199254740991
237
+ },
238
+ "hoist": {
239
+ "type": "boolean"
240
+ },
241
+ "mentionable": {
242
+ "type": "boolean"
243
+ }
244
+ },
245
+ "required": [
246
+ "guild_id",
247
+ "name"
248
+ ],
249
+ "additionalProperties": false
250
+ },
251
+ "hidden": false
252
+ },
253
+ {
254
+ "name": "discord_edit_guild_role",
255
+ "description": "Edit a role in a Discord guild",
256
+ "inputSchema": {
257
+ "type": "object",
258
+ "properties": {
259
+ "guild_id": {
260
+ "type": "string",
261
+ "minLength": 1
262
+ },
263
+ "role_id": {
264
+ "type": "string",
265
+ "minLength": 1
266
+ },
267
+ "name": {
268
+ "type": "string",
269
+ "minLength": 1,
270
+ "maxLength": 100
271
+ },
272
+ "permissions": {
273
+ "type": "string",
274
+ "minLength": 1
275
+ },
276
+ "color": {
277
+ "type": "integer",
278
+ "minimum": 0,
279
+ "maximum": 9007199254740991
280
+ },
281
+ "hoist": {
282
+ "type": "boolean"
283
+ },
284
+ "mentionable": {
285
+ "type": "boolean"
286
+ }
287
+ },
288
+ "required": [
289
+ "guild_id",
290
+ "role_id"
291
+ ],
292
+ "additionalProperties": false
293
+ },
294
+ "hidden": false
295
+ },
296
+ {
297
+ "name": "discord_delete_guild_role",
298
+ "description": "Delete a role from a Discord guild",
299
+ "inputSchema": {
300
+ "type": "object",
301
+ "properties": {
302
+ "guild_id": {
303
+ "type": "string",
304
+ "minLength": 1
305
+ },
306
+ "role_id": {
307
+ "type": "string",
308
+ "minLength": 1
309
+ }
310
+ },
311
+ "required": [
312
+ "guild_id",
313
+ "role_id"
314
+ ],
315
+ "additionalProperties": false
316
+ },
317
+ "hidden": false
318
+ },
319
+ {
320
+ "name": "discord_add_guild_member_role",
321
+ "description": "Assign a role to a Discord guild member",
322
+ "inputSchema": {
323
+ "type": "object",
324
+ "properties": {
325
+ "guild_id": {
326
+ "type": "string",
327
+ "minLength": 1
328
+ },
329
+ "user_id": {
330
+ "type": "string",
331
+ "minLength": 1
332
+ },
333
+ "role_id": {
334
+ "type": "string",
335
+ "minLength": 1
336
+ }
337
+ },
338
+ "required": [
339
+ "guild_id",
340
+ "user_id",
341
+ "role_id"
342
+ ],
343
+ "additionalProperties": false
344
+ },
345
+ "hidden": false
346
+ },
347
+ {
348
+ "name": "discord_remove_guild_member_role",
349
+ "description": "Remove a role from a Discord guild member",
350
+ "inputSchema": {
351
+ "type": "object",
352
+ "properties": {
353
+ "guild_id": {
354
+ "type": "string",
355
+ "minLength": 1
356
+ },
357
+ "user_id": {
358
+ "type": "string",
359
+ "minLength": 1
360
+ },
361
+ "role_id": {
362
+ "type": "string",
363
+ "minLength": 1
364
+ }
365
+ },
366
+ "required": [
367
+ "guild_id",
368
+ "user_id",
369
+ "role_id"
370
+ ],
371
+ "additionalProperties": false
372
+ },
373
+ "hidden": false
374
+ },
375
+ {
376
+ "name": "discord_list_active_guild_threads",
377
+ "description": "List active threads for one Discord guild",
378
+ "inputSchema": {
379
+ "type": "object",
380
+ "properties": {
381
+ "guild_id": {
382
+ "type": "string",
383
+ "minLength": 1
384
+ }
385
+ },
386
+ "required": [
387
+ "guild_id"
388
+ ],
389
+ "additionalProperties": false
390
+ },
391
+ "hidden": false,
392
+ "annotations": {
393
+ "readOnlyHint": true
394
+ }
395
+ },
214
396
  {
215
397
  "name": "discord_create_guild_channel",
216
398
  "description": "Create a guild channel",
@@ -401,8 +583,8 @@
401
583
  }
402
584
  },
403
585
  {
404
- "name": "discord_list_channel_invites",
405
- "description": "List invites for a Discord channel",
586
+ "name": "discord_get_pinned_messages",
587
+ "description": "List pinned messages for a seeded Discord channel",
406
588
  "inputSchema": {
407
589
  "type": "object",
408
590
  "properties": {
@@ -422,8 +604,8 @@
422
604
  }
423
605
  },
424
606
  {
425
- "name": "discord_create_channel_invite",
426
- "description": "Create an invite for a Discord channel",
607
+ "name": "discord_pin_message",
608
+ "description": "Pin a message in a seeded Discord channel",
427
609
  "inputSchema": {
428
610
  "type": "object",
429
611
  "properties": {
@@ -431,69 +613,79 @@
431
613
  "type": "string",
432
614
  "minLength": 1
433
615
  },
434
- "max_age": {
435
- "type": "integer",
436
- "minimum": 0,
437
- "maximum": 604800
438
- },
439
- "max_uses": {
440
- "type": "integer",
441
- "minimum": 0,
442
- "maximum": 100
443
- },
444
- "temporary": {
445
- "type": "boolean"
616
+ "message_id": {
617
+ "type": "string",
618
+ "minLength": 1
446
619
  }
447
620
  },
448
621
  "required": [
449
- "channel_id"
622
+ "channel_id",
623
+ "message_id"
450
624
  ],
451
625
  "additionalProperties": false
452
626
  },
453
627
  "hidden": false
454
628
  },
455
629
  {
456
- "name": "discord_get_invite",
457
- "description": "Return one Discord invite by code",
630
+ "name": "discord_unpin_message",
631
+ "description": "Unpin a message in a seeded Discord channel",
458
632
  "inputSchema": {
459
633
  "type": "object",
460
634
  "properties": {
461
- "invite_code": {
635
+ "channel_id": {
636
+ "type": "string",
637
+ "minLength": 1
638
+ },
639
+ "message_id": {
462
640
  "type": "string",
463
641
  "minLength": 1
464
642
  }
465
643
  },
466
644
  "required": [
467
- "invite_code"
645
+ "channel_id",
646
+ "message_id"
468
647
  ],
469
648
  "additionalProperties": false
470
649
  },
471
- "hidden": false,
472
- "annotations": {
473
- "readOnlyHint": true
474
- }
650
+ "hidden": false
475
651
  },
476
652
  {
477
- "name": "discord_delete_invite",
478
- "description": "Delete a Discord invite by code",
653
+ "name": "discord_start_thread_from_message",
654
+ "description": "Start a public thread from one Discord message",
479
655
  "inputSchema": {
480
656
  "type": "object",
481
657
  "properties": {
482
- "invite_code": {
658
+ "channel_id": {
483
659
  "type": "string",
484
660
  "minLength": 1
661
+ },
662
+ "message_id": {
663
+ "type": "string",
664
+ "minLength": 1
665
+ },
666
+ "name": {
667
+ "type": "string",
668
+ "minLength": 1,
669
+ "maxLength": 100
670
+ },
671
+ "auto_archive_duration": {
672
+ "type": "integer",
673
+ "exclusiveMinimum": 0,
674
+ "maximum": 9007199254740991
485
675
  }
486
676
  },
487
677
  "required": [
488
- "invite_code"
678
+ "channel_id",
679
+ "message_id",
680
+ "name"
489
681
  ],
490
682
  "additionalProperties": false
491
683
  },
492
684
  "hidden": false
493
685
  },
494
686
  {
495
- "name": "discord_get_channel_message",
496
- "description": "Return one seeded Discord message by channel and message id",
687
+ "name": "discord_start_thread_without_message",
688
+ "description": "Start a standalone public or private thread",
497
689
  "inputSchema": {
498
690
  "type": "object",
499
691
  "properties": {
@@ -501,35 +693,59 @@
501
693
  "type": "string",
502
694
  "minLength": 1
503
695
  },
504
- "message_id": {
696
+ "name": {
505
697
  "type": "string",
506
- "minLength": 1
698
+ "minLength": 1,
699
+ "maxLength": 100
700
+ },
701
+ "auto_archive_duration": {
702
+ "type": "integer",
703
+ "exclusiveMinimum": 0,
704
+ "maximum": 9007199254740991
705
+ },
706
+ "type": {
707
+ "anyOf": [
708
+ {
709
+ "type": "number",
710
+ "const": 11
711
+ },
712
+ {
713
+ "type": "number",
714
+ "const": 12
715
+ }
716
+ ]
717
+ },
718
+ "invitable": {
719
+ "type": "boolean"
507
720
  }
508
721
  },
509
722
  "required": [
510
723
  "channel_id",
511
- "message_id"
724
+ "name",
725
+ "type"
512
726
  ],
513
727
  "additionalProperties": false
514
728
  },
515
- "hidden": false,
516
- "annotations": {
517
- "readOnlyHint": true
518
- }
729
+ "hidden": false
519
730
  },
520
731
  {
521
- "name": "discord_list_channel_webhooks",
522
- "description": "List webhooks configured for one Discord channel",
732
+ "name": "discord_get_thread_member",
733
+ "description": "Return one Discord thread member by thread and user id",
523
734
  "inputSchema": {
524
735
  "type": "object",
525
736
  "properties": {
526
737
  "channel_id": {
527
738
  "type": "string",
528
739
  "minLength": 1
740
+ },
741
+ "user_id": {
742
+ "type": "string",
743
+ "minLength": 1
529
744
  }
530
745
  },
531
746
  "required": [
532
- "channel_id"
747
+ "channel_id",
748
+ "user_id"
533
749
  ],
534
750
  "additionalProperties": false
535
751
  },
@@ -539,42 +755,47 @@
539
755
  }
540
756
  },
541
757
  {
542
- "name": "discord_create_webhook",
543
- "description": "Create a webhook in one Discord channel",
758
+ "name": "discord_list_thread_members",
759
+ "description": "List members for one Discord thread",
544
760
  "inputSchema": {
545
761
  "type": "object",
546
762
  "properties": {
547
763
  "channel_id": {
548
764
  "type": "string",
549
765
  "minLength": 1
550
- },
551
- "name": {
552
- "type": "string",
553
- "minLength": 1,
554
- "maxLength": 80
555
766
  }
556
767
  },
557
768
  "required": [
558
- "channel_id",
559
- "name"
769
+ "channel_id"
560
770
  ],
561
771
  "additionalProperties": false
562
772
  },
563
- "hidden": false
773
+ "hidden": false,
774
+ "annotations": {
775
+ "readOnlyHint": true
776
+ }
564
777
  },
565
778
  {
566
- "name": "discord_get_webhook",
567
- "description": "Return one Discord webhook by id",
779
+ "name": "discord_list_public_archived_threads",
780
+ "description": "List archived public threads for one Discord channel",
568
781
  "inputSchema": {
569
782
  "type": "object",
570
783
  "properties": {
571
- "webhook_id": {
784
+ "channel_id": {
572
785
  "type": "string",
573
786
  "minLength": 1
787
+ },
788
+ "before": {
789
+ "type": "string"
790
+ },
791
+ "limit": {
792
+ "type": "integer",
793
+ "minimum": 1,
794
+ "maximum": 100
574
795
  }
575
796
  },
576
797
  "required": [
577
- "webhook_id"
798
+ "channel_id"
578
799
  ],
579
800
  "additionalProperties": false
580
801
  },
@@ -584,61 +805,55 @@
584
805
  }
585
806
  },
586
807
  {
587
- "name": "discord_create_interaction_response",
588
- "description": "Acknowledge one Discord interaction token with a callback response",
808
+ "name": "discord_list_private_archived_threads",
809
+ "description": "List archived private threads for one Discord channel",
589
810
  "inputSchema": {
590
- "$schema": "http://json-schema.org/draft-07/schema#",
591
811
  "type": "object",
592
812
  "properties": {
593
- "interaction_id": {
813
+ "channel_id": {
594
814
  "type": "string",
595
815
  "minLength": 1
596
816
  },
597
- "interaction_token": {
598
- "type": "string",
599
- "minLength": 1
817
+ "before": {
818
+ "type": "string"
600
819
  },
601
- "type": {
820
+ "limit": {
602
821
  "type": "integer",
603
- "enum": [
604
- 4,
605
- 5,
606
- 6,
607
- 7
608
- ]
609
- },
610
- "data": {
611
- "type": "object",
612
- "additionalProperties": true
822
+ "minimum": 1,
823
+ "maximum": 100
613
824
  }
614
825
  },
615
826
  "required": [
616
- "interaction_id",
617
- "interaction_token",
618
- "type"
827
+ "channel_id"
619
828
  ],
620
829
  "additionalProperties": false
621
830
  },
622
- "hidden": false
831
+ "hidden": false,
832
+ "annotations": {
833
+ "readOnlyHint": true
834
+ }
623
835
  },
624
836
  {
625
- "name": "discord_get_interaction_original_response",
626
- "description": "Return the original response for one Discord interaction token",
837
+ "name": "discord_list_joined_private_archived_threads",
838
+ "description": "List archived private threads joined by the current bot",
627
839
  "inputSchema": {
628
840
  "type": "object",
629
841
  "properties": {
630
- "application_id": {
842
+ "channel_id": {
631
843
  "type": "string",
632
844
  "minLength": 1
633
845
  },
634
- "interaction_token": {
635
- "type": "string",
636
- "minLength": 1
846
+ "before": {
847
+ "type": "string"
848
+ },
849
+ "limit": {
850
+ "type": "integer",
851
+ "minimum": 1,
852
+ "maximum": 100
637
853
  }
638
854
  },
639
855
  "required": [
640
- "application_id",
641
- "interaction_token"
856
+ "channel_id"
642
857
  ],
643
858
  "additionalProperties": false
644
859
  },
@@ -648,162 +863,118 @@
648
863
  }
649
864
  },
650
865
  {
651
- "name": "discord_edit_interaction_original_response",
652
- "description": "Edit or complete the original response for one Discord interaction token",
866
+ "name": "discord_add_thread_member",
867
+ "description": "Add a member to a Discord thread",
653
868
  "inputSchema": {
654
- "$schema": "http://json-schema.org/draft-07/schema#",
655
869
  "type": "object",
656
870
  "properties": {
657
- "application_id": {
658
- "type": "string",
659
- "minLength": 1
660
- },
661
- "interaction_token": {
871
+ "channel_id": {
662
872
  "type": "string",
663
873
  "minLength": 1
664
874
  },
665
- "content": {
875
+ "user_id": {
666
876
  "type": "string",
667
877
  "minLength": 1
668
- },
669
- "embeds": {
670
- "type": "array"
671
- },
672
- "components": {
673
- "type": "array"
674
- },
675
- "flags": {
676
- "type": "integer",
677
- "minimum": 0
678
878
  }
679
879
  },
680
880
  "required": [
681
- "application_id",
682
- "interaction_token"
881
+ "channel_id",
882
+ "user_id"
683
883
  ],
684
884
  "additionalProperties": false
685
885
  },
686
886
  "hidden": false
687
887
  },
688
888
  {
689
- "name": "discord_delete_interaction_original_response",
690
- "description": "Delete the original response for one Discord interaction token",
889
+ "name": "discord_join_thread",
890
+ "description": "Join the current bot user to one Discord thread",
691
891
  "inputSchema": {
692
892
  "type": "object",
693
893
  "properties": {
694
- "application_id": {
695
- "type": "string",
696
- "minLength": 1
697
- },
698
- "interaction_token": {
894
+ "channel_id": {
699
895
  "type": "string",
700
896
  "minLength": 1
701
897
  }
702
898
  },
703
899
  "required": [
704
- "application_id",
705
- "interaction_token"
900
+ "channel_id"
706
901
  ],
707
902
  "additionalProperties": false
708
903
  },
709
904
  "hidden": false
710
905
  },
711
906
  {
712
- "name": "discord_edit_webhook",
713
- "description": "Edit one Discord webhook",
907
+ "name": "discord_remove_thread_member",
908
+ "description": "Remove a member from a Discord thread",
714
909
  "inputSchema": {
715
910
  "type": "object",
716
911
  "properties": {
717
- "webhook_id": {
912
+ "channel_id": {
718
913
  "type": "string",
719
914
  "minLength": 1
720
915
  },
721
- "name": {
916
+ "user_id": {
722
917
  "type": "string",
723
- "minLength": 1,
724
- "maxLength": 80
918
+ "minLength": 1
725
919
  }
726
920
  },
727
921
  "required": [
728
- "webhook_id"
922
+ "channel_id",
923
+ "user_id"
729
924
  ],
730
925
  "additionalProperties": false
731
926
  },
732
927
  "hidden": false
733
928
  },
734
929
  {
735
- "name": "discord_delete_webhook",
736
- "description": "Delete one Discord webhook",
930
+ "name": "discord_leave_thread",
931
+ "description": "Leave the current bot user from one Discord thread",
737
932
  "inputSchema": {
738
933
  "type": "object",
739
934
  "properties": {
740
- "webhook_id": {
935
+ "channel_id": {
741
936
  "type": "string",
742
937
  "minLength": 1
743
938
  }
744
939
  },
745
940
  "required": [
746
- "webhook_id"
941
+ "channel_id"
747
942
  ],
748
943
  "additionalProperties": false
749
944
  },
750
945
  "hidden": false
751
946
  },
752
947
  {
753
- "name": "discord_execute_webhook",
754
- "description": "Execute a Discord webhook and optionally return the created message",
948
+ "name": "discord_delete_thread",
949
+ "description": "Delete one Discord thread channel",
755
950
  "inputSchema": {
756
- "$schema": "http://json-schema.org/draft-07/schema#",
757
951
  "type": "object",
758
952
  "properties": {
759
- "webhook_id": {
760
- "type": "string",
761
- "minLength": 1
762
- },
763
- "webhook_token": {
764
- "type": "string",
765
- "minLength": 1
766
- },
767
- "content": {
953
+ "channel_id": {
768
954
  "type": "string",
769
955
  "minLength": 1
770
- },
771
- "wait": {
772
- "type": "boolean"
773
956
  }
774
957
  },
775
958
  "required": [
776
- "webhook_id",
777
- "webhook_token",
778
- "content"
959
+ "channel_id"
779
960
  ],
780
961
  "additionalProperties": false
781
962
  },
782
963
  "hidden": false
783
964
  },
784
965
  {
785
- "name": "discord_get_webhook_message",
786
- "description": "Return one Discord webhook message",
966
+ "name": "discord_list_channel_invites",
967
+ "description": "List invites for a Discord channel",
787
968
  "inputSchema": {
788
969
  "type": "object",
789
970
  "properties": {
790
- "webhook_id": {
791
- "type": "string",
792
- "minLength": 1
793
- },
794
- "webhook_token": {
795
- "type": "string",
796
- "minLength": 1
797
- },
798
- "message_id": {
971
+ "channel_id": {
799
972
  "type": "string",
800
973
  "minLength": 1
801
974
  }
802
975
  },
803
976
  "required": [
804
- "webhook_id",
805
- "webhook_token",
806
- "message_id"
977
+ "channel_id"
807
978
  ],
808
979
  "additionalProperties": false
809
980
  },
@@ -813,50 +984,82 @@
813
984
  }
814
985
  },
815
986
  {
816
- "name": "discord_edit_webhook_message",
817
- "description": "Edit one Discord webhook message",
987
+ "name": "discord_create_channel_invite",
988
+ "description": "Create an invite for a Discord channel",
818
989
  "inputSchema": {
819
- "$schema": "http://json-schema.org/draft-07/schema#",
820
990
  "type": "object",
821
991
  "properties": {
822
- "webhook_id": {
992
+ "channel_id": {
823
993
  "type": "string",
824
994
  "minLength": 1
825
995
  },
826
- "webhook_token": {
827
- "type": "string",
828
- "minLength": 1
996
+ "max_age": {
997
+ "type": "integer",
998
+ "minimum": 0,
999
+ "maximum": 604800
829
1000
  },
830
- "message_id": {
831
- "type": "string",
832
- "minLength": 1
1001
+ "max_uses": {
1002
+ "type": "integer",
1003
+ "minimum": 0,
1004
+ "maximum": 100
833
1005
  },
834
- "content": {
835
- "type": "string",
836
- "minLength": 1
837
- }
1006
+ "temporary": {
1007
+ "type": "boolean"
1008
+ }
838
1009
  },
839
1010
  "required": [
840
- "webhook_id",
841
- "webhook_token",
842
- "message_id",
843
- "content"
1011
+ "channel_id"
844
1012
  ],
845
1013
  "additionalProperties": false
846
1014
  },
847
1015
  "hidden": false
848
1016
  },
849
1017
  {
850
- "name": "discord_delete_webhook_message",
851
- "description": "Delete one Discord webhook message",
1018
+ "name": "discord_get_invite",
1019
+ "description": "Return one Discord invite by code",
852
1020
  "inputSchema": {
853
1021
  "type": "object",
854
1022
  "properties": {
855
- "webhook_id": {
1023
+ "invite_code": {
856
1024
  "type": "string",
857
1025
  "minLength": 1
858
- },
859
- "webhook_token": {
1026
+ }
1027
+ },
1028
+ "required": [
1029
+ "invite_code"
1030
+ ],
1031
+ "additionalProperties": false
1032
+ },
1033
+ "hidden": false,
1034
+ "annotations": {
1035
+ "readOnlyHint": true
1036
+ }
1037
+ },
1038
+ {
1039
+ "name": "discord_delete_invite",
1040
+ "description": "Delete a Discord invite by code",
1041
+ "inputSchema": {
1042
+ "type": "object",
1043
+ "properties": {
1044
+ "invite_code": {
1045
+ "type": "string",
1046
+ "minLength": 1
1047
+ }
1048
+ },
1049
+ "required": [
1050
+ "invite_code"
1051
+ ],
1052
+ "additionalProperties": false
1053
+ },
1054
+ "hidden": false
1055
+ },
1056
+ {
1057
+ "name": "discord_get_channel_message",
1058
+ "description": "Return one seeded Discord message by channel and message id",
1059
+ "inputSchema": {
1060
+ "type": "object",
1061
+ "properties": {
1062
+ "channel_id": {
860
1063
  "type": "string",
861
1064
  "minLength": 1
862
1065
  },
@@ -866,13 +1069,15 @@
866
1069
  }
867
1070
  },
868
1071
  "required": [
869
- "webhook_id",
870
- "webhook_token",
1072
+ "channel_id",
871
1073
  "message_id"
872
1074
  ],
873
1075
  "additionalProperties": false
874
1076
  },
875
- "hidden": false
1077
+ "hidden": false,
1078
+ "annotations": {
1079
+ "readOnlyHint": true
1080
+ }
876
1081
  },
877
1082
  {
878
1083
  "name": "discord_create_message",
@@ -1152,8 +1357,8 @@
1152
1357
  "hidden": false
1153
1358
  },
1154
1359
  {
1155
- "name": "discord_get_pinned_messages",
1156
- "description": "List pinned messages for a seeded Discord channel",
1360
+ "name": "discord_list_channel_webhooks",
1361
+ "description": "List webhooks configured for one Discord channel",
1157
1362
  "inputSchema": {
1158
1363
  "type": "object",
1159
1364
  "properties": {
@@ -1173,8 +1378,8 @@
1173
1378
  }
1174
1379
  },
1175
1380
  {
1176
- "name": "discord_pin_message",
1177
- "description": "Pin a message in a seeded Discord channel",
1381
+ "name": "discord_create_webhook",
1382
+ "description": "Create a webhook in one Discord channel",
1178
1383
  "inputSchema": {
1179
1384
  "type": "object",
1180
1385
  "properties": {
@@ -1182,276 +1387,239 @@
1182
1387
  "type": "string",
1183
1388
  "minLength": 1
1184
1389
  },
1185
- "message_id": {
1390
+ "name": {
1186
1391
  "type": "string",
1187
- "minLength": 1
1392
+ "minLength": 1,
1393
+ "maxLength": 80
1188
1394
  }
1189
1395
  },
1190
1396
  "required": [
1191
1397
  "channel_id",
1192
- "message_id"
1398
+ "name"
1193
1399
  ],
1194
1400
  "additionalProperties": false
1195
1401
  },
1196
1402
  "hidden": false
1197
1403
  },
1198
1404
  {
1199
- "name": "discord_unpin_message",
1200
- "description": "Unpin a message in a seeded Discord channel",
1405
+ "name": "discord_get_webhook",
1406
+ "description": "Return one Discord webhook by id",
1201
1407
  "inputSchema": {
1202
1408
  "type": "object",
1203
1409
  "properties": {
1204
- "channel_id": {
1205
- "type": "string",
1206
- "minLength": 1
1207
- },
1208
- "message_id": {
1410
+ "webhook_id": {
1209
1411
  "type": "string",
1210
1412
  "minLength": 1
1211
1413
  }
1212
1414
  },
1213
1415
  "required": [
1214
- "channel_id",
1215
- "message_id"
1416
+ "webhook_id"
1216
1417
  ],
1217
1418
  "additionalProperties": false
1218
1419
  },
1219
- "hidden": false
1420
+ "hidden": false,
1421
+ "annotations": {
1422
+ "readOnlyHint": true
1423
+ }
1220
1424
  },
1221
1425
  {
1222
- "name": "discord_create_guild_role",
1223
- "description": "Create a role in a Discord guild",
1426
+ "name": "discord_edit_webhook",
1427
+ "description": "Edit one Discord webhook",
1224
1428
  "inputSchema": {
1225
1429
  "type": "object",
1226
1430
  "properties": {
1227
- "guild_id": {
1431
+ "webhook_id": {
1228
1432
  "type": "string",
1229
1433
  "minLength": 1
1230
1434
  },
1231
1435
  "name": {
1232
1436
  "type": "string",
1233
1437
  "minLength": 1,
1234
- "maxLength": 100
1235
- },
1236
- "permissions": {
1237
- "type": "string",
1238
- "minLength": 1
1239
- },
1240
- "color": {
1241
- "type": "integer",
1242
- "minimum": 0,
1243
- "maximum": 9007199254740991
1244
- },
1245
- "hoist": {
1246
- "type": "boolean"
1247
- },
1248
- "mentionable": {
1249
- "type": "boolean"
1438
+ "maxLength": 80
1250
1439
  }
1251
1440
  },
1252
1441
  "required": [
1253
- "guild_id",
1254
- "name"
1442
+ "webhook_id"
1255
1443
  ],
1256
1444
  "additionalProperties": false
1257
1445
  },
1258
1446
  "hidden": false
1259
1447
  },
1260
1448
  {
1261
- "name": "discord_edit_guild_role",
1262
- "description": "Edit a role in a Discord guild",
1449
+ "name": "discord_delete_webhook",
1450
+ "description": "Delete one Discord webhook",
1263
1451
  "inputSchema": {
1264
1452
  "type": "object",
1265
1453
  "properties": {
1266
- "guild_id": {
1267
- "type": "string",
1268
- "minLength": 1
1269
- },
1270
- "role_id": {
1271
- "type": "string",
1272
- "minLength": 1
1273
- },
1274
- "name": {
1275
- "type": "string",
1276
- "minLength": 1,
1277
- "maxLength": 100
1278
- },
1279
- "permissions": {
1454
+ "webhook_id": {
1280
1455
  "type": "string",
1281
1456
  "minLength": 1
1282
- },
1283
- "color": {
1284
- "type": "integer",
1285
- "minimum": 0,
1286
- "maximum": 9007199254740991
1287
- },
1288
- "hoist": {
1289
- "type": "boolean"
1290
- },
1291
- "mentionable": {
1292
- "type": "boolean"
1293
1457
  }
1294
1458
  },
1295
1459
  "required": [
1296
- "guild_id",
1297
- "role_id"
1460
+ "webhook_id"
1298
1461
  ],
1299
1462
  "additionalProperties": false
1300
1463
  },
1301
1464
  "hidden": false
1302
1465
  },
1303
1466
  {
1304
- "name": "discord_delete_guild_role",
1305
- "description": "Delete a role from a Discord guild",
1467
+ "name": "discord_execute_webhook",
1468
+ "description": "Execute a Discord webhook and optionally return the created message",
1306
1469
  "inputSchema": {
1470
+ "$schema": "http://json-schema.org/draft-07/schema#",
1307
1471
  "type": "object",
1308
1472
  "properties": {
1309
- "guild_id": {
1473
+ "webhook_id": {
1310
1474
  "type": "string",
1311
1475
  "minLength": 1
1312
1476
  },
1313
- "role_id": {
1477
+ "webhook_token": {
1478
+ "type": "string",
1479
+ "minLength": 1
1480
+ },
1481
+ "content": {
1314
1482
  "type": "string",
1315
1483
  "minLength": 1
1484
+ },
1485
+ "wait": {
1486
+ "type": "boolean"
1316
1487
  }
1317
1488
  },
1318
1489
  "required": [
1319
- "guild_id",
1320
- "role_id"
1490
+ "webhook_id",
1491
+ "webhook_token",
1492
+ "content"
1321
1493
  ],
1322
1494
  "additionalProperties": false
1323
1495
  },
1324
1496
  "hidden": false
1325
1497
  },
1326
1498
  {
1327
- "name": "discord_add_guild_member_role",
1328
- "description": "Assign a role to a Discord guild member",
1499
+ "name": "discord_get_webhook_message",
1500
+ "description": "Return one Discord webhook message",
1329
1501
  "inputSchema": {
1330
1502
  "type": "object",
1331
1503
  "properties": {
1332
- "guild_id": {
1504
+ "webhook_id": {
1333
1505
  "type": "string",
1334
1506
  "minLength": 1
1335
1507
  },
1336
- "user_id": {
1508
+ "webhook_token": {
1337
1509
  "type": "string",
1338
1510
  "minLength": 1
1339
1511
  },
1340
- "role_id": {
1512
+ "message_id": {
1341
1513
  "type": "string",
1342
1514
  "minLength": 1
1343
1515
  }
1344
1516
  },
1345
1517
  "required": [
1346
- "guild_id",
1347
- "user_id",
1348
- "role_id"
1518
+ "webhook_id",
1519
+ "webhook_token",
1520
+ "message_id"
1349
1521
  ],
1350
1522
  "additionalProperties": false
1351
1523
  },
1352
- "hidden": false
1524
+ "hidden": false,
1525
+ "annotations": {
1526
+ "readOnlyHint": true
1527
+ }
1353
1528
  },
1354
1529
  {
1355
- "name": "discord_remove_guild_member_role",
1356
- "description": "Remove a role from a Discord guild member",
1530
+ "name": "discord_edit_webhook_message",
1531
+ "description": "Edit one Discord webhook message",
1357
1532
  "inputSchema": {
1533
+ "$schema": "http://json-schema.org/draft-07/schema#",
1358
1534
  "type": "object",
1359
1535
  "properties": {
1360
- "guild_id": {
1536
+ "webhook_id": {
1361
1537
  "type": "string",
1362
1538
  "minLength": 1
1363
1539
  },
1364
- "user_id": {
1540
+ "webhook_token": {
1365
1541
  "type": "string",
1366
1542
  "minLength": 1
1367
1543
  },
1368
- "role_id": {
1544
+ "message_id": {
1545
+ "type": "string",
1546
+ "minLength": 1
1547
+ },
1548
+ "content": {
1369
1549
  "type": "string",
1370
1550
  "minLength": 1
1371
1551
  }
1372
1552
  },
1373
1553
  "required": [
1374
- "guild_id",
1375
- "user_id",
1376
- "role_id"
1554
+ "webhook_id",
1555
+ "webhook_token",
1556
+ "message_id",
1557
+ "content"
1377
1558
  ],
1378
1559
  "additionalProperties": false
1379
1560
  },
1380
1561
  "hidden": false
1381
1562
  },
1382
1563
  {
1383
- "name": "discord_start_thread_from_message",
1384
- "description": "Start a public thread from one Discord message",
1564
+ "name": "discord_delete_webhook_message",
1565
+ "description": "Delete one Discord webhook message",
1385
1566
  "inputSchema": {
1386
1567
  "type": "object",
1387
1568
  "properties": {
1388
- "channel_id": {
1569
+ "webhook_id": {
1389
1570
  "type": "string",
1390
1571
  "minLength": 1
1391
1572
  },
1392
- "message_id": {
1573
+ "webhook_token": {
1393
1574
  "type": "string",
1394
1575
  "minLength": 1
1395
1576
  },
1396
- "name": {
1577
+ "message_id": {
1397
1578
  "type": "string",
1398
- "minLength": 1,
1399
- "maxLength": 100
1400
- },
1401
- "auto_archive_duration": {
1402
- "type": "integer",
1403
- "exclusiveMinimum": 0,
1404
- "maximum": 9007199254740991
1579
+ "minLength": 1
1405
1580
  }
1406
1581
  },
1407
1582
  "required": [
1408
- "channel_id",
1409
- "message_id",
1410
- "name"
1583
+ "webhook_id",
1584
+ "webhook_token",
1585
+ "message_id"
1411
1586
  ],
1412
1587
  "additionalProperties": false
1413
1588
  },
1414
1589
  "hidden": false
1415
1590
  },
1416
1591
  {
1417
- "name": "discord_start_thread_without_message",
1418
- "description": "Start a standalone public or private thread",
1592
+ "name": "discord_create_interaction_response",
1593
+ "description": "Acknowledge one Discord interaction token with a callback response",
1419
1594
  "inputSchema": {
1595
+ "$schema": "http://json-schema.org/draft-07/schema#",
1420
1596
  "type": "object",
1421
1597
  "properties": {
1422
- "channel_id": {
1598
+ "interaction_id": {
1423
1599
  "type": "string",
1424
1600
  "minLength": 1
1425
1601
  },
1426
- "name": {
1602
+ "interaction_token": {
1427
1603
  "type": "string",
1428
- "minLength": 1,
1429
- "maxLength": 100
1430
- },
1431
- "auto_archive_duration": {
1432
- "type": "integer",
1433
- "exclusiveMinimum": 0,
1434
- "maximum": 9007199254740991
1604
+ "minLength": 1
1435
1605
  },
1436
1606
  "type": {
1437
- "anyOf": [
1438
- {
1439
- "type": "number",
1440
- "const": 11
1441
- },
1442
- {
1443
- "type": "number",
1444
- "const": 12
1445
- }
1607
+ "type": "integer",
1608
+ "enum": [
1609
+ 4,
1610
+ 5,
1611
+ 6,
1612
+ 7
1446
1613
  ]
1447
1614
  },
1448
- "invitable": {
1449
- "type": "boolean"
1615
+ "data": {
1616
+ "type": "object",
1617
+ "additionalProperties": true
1450
1618
  }
1451
1619
  },
1452
1620
  "required": [
1453
- "channel_id",
1454
- "name",
1621
+ "interaction_id",
1622
+ "interaction_token",
1455
1623
  "type"
1456
1624
  ],
1457
1625
  "additionalProperties": false
@@ -1459,65 +1627,23 @@
1459
1627
  "hidden": false
1460
1628
  },
1461
1629
  {
1462
- "name": "discord_list_active_guild_threads",
1463
- "description": "List active threads for one Discord guild",
1464
- "inputSchema": {
1465
- "type": "object",
1466
- "properties": {
1467
- "guild_id": {
1468
- "type": "string",
1469
- "minLength": 1
1470
- }
1471
- },
1472
- "required": [
1473
- "guild_id"
1474
- ],
1475
- "additionalProperties": false
1476
- },
1477
- "hidden": false,
1478
- "annotations": {
1479
- "readOnlyHint": true
1480
- }
1481
- },
1482
- {
1483
- "name": "discord_get_thread_member",
1484
- "description": "Return one Discord thread member by thread and user id",
1630
+ "name": "discord_get_interaction_original_response",
1631
+ "description": "Return the original response for one Discord interaction token",
1485
1632
  "inputSchema": {
1486
1633
  "type": "object",
1487
1634
  "properties": {
1488
- "channel_id": {
1635
+ "application_id": {
1489
1636
  "type": "string",
1490
1637
  "minLength": 1
1491
1638
  },
1492
- "user_id": {
1493
- "type": "string",
1494
- "minLength": 1
1495
- }
1496
- },
1497
- "required": [
1498
- "channel_id",
1499
- "user_id"
1500
- ],
1501
- "additionalProperties": false
1502
- },
1503
- "hidden": false,
1504
- "annotations": {
1505
- "readOnlyHint": true
1506
- }
1507
- },
1508
- {
1509
- "name": "discord_list_thread_members",
1510
- "description": "List members for one Discord thread",
1511
- "inputSchema": {
1512
- "type": "object",
1513
- "properties": {
1514
- "channel_id": {
1639
+ "interaction_token": {
1515
1640
  "type": "string",
1516
1641
  "minLength": 1
1517
1642
  }
1518
1643
  },
1519
1644
  "required": [
1520
- "channel_id"
1645
+ "application_id",
1646
+ "interaction_token"
1521
1647
  ],
1522
1648
  "additionalProperties": false
1523
1649
  },
@@ -1527,187 +1653,61 @@
1527
1653
  }
1528
1654
  },
1529
1655
  {
1530
- "name": "discord_list_public_archived_threads",
1531
- "description": "List archived public threads for one Discord channel",
1656
+ "name": "discord_edit_interaction_original_response",
1657
+ "description": "Edit or complete the original response for one Discord interaction token",
1532
1658
  "inputSchema": {
1659
+ "$schema": "http://json-schema.org/draft-07/schema#",
1533
1660
  "type": "object",
1534
1661
  "properties": {
1535
- "channel_id": {
1662
+ "application_id": {
1536
1663
  "type": "string",
1537
1664
  "minLength": 1
1538
1665
  },
1539
- "before": {
1540
- "type": "string"
1541
- },
1542
- "limit": {
1543
- "type": "integer",
1544
- "minimum": 1,
1545
- "maximum": 100
1546
- }
1547
- },
1548
- "required": [
1549
- "channel_id"
1550
- ],
1551
- "additionalProperties": false
1552
- },
1553
- "hidden": false,
1554
- "annotations": {
1555
- "readOnlyHint": true
1556
- }
1557
- },
1558
- {
1559
- "name": "discord_list_private_archived_threads",
1560
- "description": "List archived private threads for one Discord channel",
1561
- "inputSchema": {
1562
- "type": "object",
1563
- "properties": {
1564
- "channel_id": {
1666
+ "interaction_token": {
1565
1667
  "type": "string",
1566
1668
  "minLength": 1
1567
1669
  },
1568
- "before": {
1569
- "type": "string"
1570
- },
1571
- "limit": {
1572
- "type": "integer",
1573
- "minimum": 1,
1574
- "maximum": 100
1575
- }
1576
- },
1577
- "required": [
1578
- "channel_id"
1579
- ],
1580
- "additionalProperties": false
1581
- },
1582
- "hidden": false,
1583
- "annotations": {
1584
- "readOnlyHint": true
1585
- }
1586
- },
1587
- {
1588
- "name": "discord_list_joined_private_archived_threads",
1589
- "description": "List archived private threads joined by the current bot",
1590
- "inputSchema": {
1591
- "type": "object",
1592
- "properties": {
1593
- "channel_id": {
1670
+ "content": {
1594
1671
  "type": "string",
1595
1672
  "minLength": 1
1596
1673
  },
1597
- "before": {
1598
- "type": "string"
1674
+ "embeds": {
1675
+ "type": "array"
1599
1676
  },
1600
- "limit": {
1601
- "type": "integer",
1602
- "minimum": 1,
1603
- "maximum": 100
1604
- }
1605
- },
1606
- "required": [
1607
- "channel_id"
1608
- ],
1609
- "additionalProperties": false
1610
- },
1611
- "hidden": false,
1612
- "annotations": {
1613
- "readOnlyHint": true
1614
- }
1615
- },
1616
- {
1617
- "name": "discord_add_thread_member",
1618
- "description": "Add a member to a Discord thread",
1619
- "inputSchema": {
1620
- "type": "object",
1621
- "properties": {
1622
- "channel_id": {
1623
- "type": "string",
1624
- "minLength": 1
1677
+ "components": {
1678
+ "type": "array"
1625
1679
  },
1626
- "user_id": {
1627
- "type": "string",
1628
- "minLength": 1
1629
- }
1630
- },
1631
- "required": [
1632
- "channel_id",
1633
- "user_id"
1634
- ],
1635
- "additionalProperties": false
1636
- },
1637
- "hidden": false
1638
- },
1639
- {
1640
- "name": "discord_join_thread",
1641
- "description": "Join the current bot user to one Discord thread",
1642
- "inputSchema": {
1643
- "type": "object",
1644
- "properties": {
1645
- "channel_id": {
1646
- "type": "string",
1647
- "minLength": 1
1680
+ "flags": {
1681
+ "type": "integer",
1682
+ "minimum": 0
1648
1683
  }
1649
1684
  },
1650
1685
  "required": [
1651
- "channel_id"
1686
+ "application_id",
1687
+ "interaction_token"
1652
1688
  ],
1653
1689
  "additionalProperties": false
1654
1690
  },
1655
1691
  "hidden": false
1656
1692
  },
1657
1693
  {
1658
- "name": "discord_remove_thread_member",
1659
- "description": "Remove a member from a Discord thread",
1694
+ "name": "discord_delete_interaction_original_response",
1695
+ "description": "Delete the original response for one Discord interaction token",
1660
1696
  "inputSchema": {
1661
1697
  "type": "object",
1662
1698
  "properties": {
1663
- "channel_id": {
1699
+ "application_id": {
1664
1700
  "type": "string",
1665
1701
  "minLength": 1
1666
1702
  },
1667
- "user_id": {
1668
- "type": "string",
1669
- "minLength": 1
1670
- }
1671
- },
1672
- "required": [
1673
- "channel_id",
1674
- "user_id"
1675
- ],
1676
- "additionalProperties": false
1677
- },
1678
- "hidden": false
1679
- },
1680
- {
1681
- "name": "discord_leave_thread",
1682
- "description": "Leave the current bot user from one Discord thread",
1683
- "inputSchema": {
1684
- "type": "object",
1685
- "properties": {
1686
- "channel_id": {
1687
- "type": "string",
1688
- "minLength": 1
1689
- }
1690
- },
1691
- "required": [
1692
- "channel_id"
1693
- ],
1694
- "additionalProperties": false
1695
- },
1696
- "hidden": false
1697
- },
1698
- {
1699
- "name": "discord_delete_thread",
1700
- "description": "Delete one Discord thread channel",
1701
- "inputSchema": {
1702
- "type": "object",
1703
- "properties": {
1704
- "channel_id": {
1703
+ "interaction_token": {
1705
1704
  "type": "string",
1706
1705
  "minLength": 1
1707
1706
  }
1708
1707
  },
1709
1708
  "required": [
1710
- "channel_id"
1709
+ "application_id",
1710
+ "interaction_token"
1711
1711
  ],
1712
1712
  "additionalProperties": false
1713
1713
  },