-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathplugin_details.json
More file actions
9824 lines (9824 loc) · 285 KB
/
plugin_details.json
File metadata and controls
9824 lines (9824 loc) · 285 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "SengokuCola.Mute-Plugin",
"manifest": {
"manifest_version": 2,
"version": "4.6.0",
"name": "群聊禁言管理插件 (Mute Plugin)",
"description": "群聊禁言管理插件,提供智能禁言和手动禁言命令",
"author": {
"name": "SengokuCola",
"url": "https://github.com/SengokuCola"
},
"license": "MIT",
"urls": {
"repository": "https://github.com/SengokuCola/MutePlugin",
"homepage": "https://github.com/SengokuCola/MutePlugin",
"documentation": "https://github.com/SengokuCola/MutePlugin/blob/main/README.md",
"issues": "https://github.com/SengokuCola/MutePlugin/issues"
},
"host_application": {
"min_version": "1.0.0",
"max_version": "1.0.0"
},
"sdk": {
"min_version": "2.0.0",
"max_version": "2.99.99"
},
"dependencies": [],
"capabilities": [
"api.call",
"api.list",
"message.get_by_id",
"person.get_id_by_name",
"person.get_value",
"send.text"
],
"i18n": {
"default_locale": "zh-CN",
"locales_path": "_locales",
"supported_locales": [
"zh-CN"
]
},
"id": "sengokucola.mute-plugin"
}
},
{
"id": "A0000Xz.MaiBot-Tarots-Plugin",
"manifest": {
"manifest_version": 1,
"name": "塔罗牌插件",
"version": "1.4.6",
"description": "提供了抽塔罗牌占卜功能,具有模拟人类的调用方式和独特自定义风格的解牌回复。牌面为B站幻星集",
"author": {
"name": "A肆零西烛",
"url": "https://github.com/A0000Xz"
},
"license": "AGPL-v3.0",
"host_application": {
"min_version": "0.9.1",
"max_version": "0.11.1"
},
"keywords": [
"tarot",
"divination",
"moderation",
"bilibili"
],
"categories": [
"Moderation",
"Entertainment-oriented divination"
],
"repository_url": "https://github.com/A0000Xz/MaiBot-Tarots-Plugin",
"default_locale": "zh-CN",
"locales_path": "_locales"
}
},
{
"id": "ShiinaWhite.MaiBot-Roulette-Plugin",
"manifest": {
"manifest_version": 1,
"name": "麦麦轮盘",
"version": "1.0.0",
"description": "在命运的舞台上,勇士们围坐一圈,手中紧握那把只装有一颗子弹的左轮手枪。每一次扣动扳机,都是对勇气与命运的挑战。枪声响起,欢笑与紧张交织,荣耀与沉默只在一瞬之间。谁会成为这场故事的主角?谁会是下一个被命运选中的人?",
"author": {
"name": "野生的金属乌帕",
"url": "https://github.com/ShiinaWhite"
},
"license": "AGPL-v3.0",
"host_application": {
"min_version": "0.8.0",
"max_version": "0.8.0"
},
"keywords": [
"game",
"russian-roulette",
"moderation",
"entertainment",
"group-management"
],
"categories": [
"Game",
"Moderation",
"Entertainment"
],
"repository_url": "https://github.com/ShiinaWhite/MaiBot-Roulette-Plugins",
"default_locale": "zh-CN",
"locales_path": "_locales"
}
},
{
"id": "Schxar.MaiBot-DoubaoSearch-Plugin",
"manifest": {
"manifest_version": 1,
"name": "豆包搜索插件 (Doubao Search Plugin)",
"version": "1.0.0",
"description": "基于火山引擎豆包模型的AI搜索插件,支持智能LLM判定和高效搜索功能。",
"author": {
"name": "Schxar",
"url": "https://github.com/schxar/doubao_search_plugin"
},
"license": "GPL-v3.0-or-later",
"host_application": {
"min_version": "0.11.0",
"max_version": "0.11.0"
},
"homepage_url": "https://github.com/schxar/doubao_search_plugin",
"repository_url": "https://github.com/schxar/doubao_search_plugin",
"keywords": [
"ai",
"search",
"doubao",
"volcengine",
"query"
],
"categories": [
"AI Tools",
"Search",
"Content Retrieval"
],
"default_locale": "zh-CN",
"locales_path": "_locales",
"plugin_info": {
"is_built_in": true,
"plugin_type": "content_retrieval",
"api_dependencies": [
"volcengine"
],
"components": [
{
"type": "action",
"name": "doubao_search_action",
"description": "根据描述使用火山引擎豆包API生成搜索结果",
"activation_modes": [
"llm_judge",
"keyword"
],
"keywords": [
"搜索",
"查询",
"查找",
"search",
"find"
]
}
],
"features": [
"智能LLM判定生成时机",
"高效AI搜索功能",
"结果缓存机制",
"完整的错误处理"
]
}
}
},
{
"id": "minecraft1024a.MaiBot-Send-Image-Plugin-SF",
"manifest": {
"manifest_version": 1,
"name": "硅基流动生图插件",
"version": "0.5",
"description": "发送图片的插件动作,支持通过硅基流动生成图片并发送,兼容base64图片返回方式。",
"author": {
"name": "yishang/一闪",
"url": "https://github.com/minecraft1024a"
},
"license": "MIT",
"host_application": {
"min_version": "0.9.0",
"max_version": "0.9.1"
},
"homepage_url": "https://github.com/minecraft1024a/send_image_plugin_sf",
"repository_url": "https://github.com/minecraft1024a/send_image_plugin_sf",
"keywords": [
"生成图片",
"画图",
"create image",
"draw"
],
"categories": [
"image",
"action"
],
"default_locale": "zh-CN",
"locales_path": "_locales",
"plugin_info": {
"is_built_in": false,
"plugin_type": "general",
"components": [
{
"type": "action",
"name": "send_image_action",
"description": "发送图片的插件动作,支持通过硅基流动生成图片并发送"
}
]
}
}
},
{
"id": "ZmasCloud.makeplugin-0.6",
"manifest": {
"manifest_version": 1,
"name": "麦麦插件生成器",
"version": "0.0.4",
"description": "让你的麦麦给你写麦麦v0.1插件!",
"author": {
"name": "zmas",
"url": "https://bgithub.xyz/ZmasCloud"
},
"license": "AGPL-3.0",
"host_application": {
"min_version": "0.7.0",
"max_version": "0.7.9"
}
}
},
{
"id": "TT-P607.MaiMbot-Pixiv-Setu-Plugin",
"manifest": {
"manifest_version": 1,
"name": "pixiv_setu_plugin",
"version": "1.0.0",
"description": "根据关键词或随机从Lolicon API获取P站图片",
"author": {
"name": "言柒和他的师傅一闪^ω^",
"url": "https://github.com/tt-P607"
},
"homepage_url": "https://github.com/tt-P607/MaiMbot-Pixiv-Setu-Plugin",
"repository_url": "https://github.com/tt-P607/MaiMbot-Pixiv-Setu-Plugin",
"license": "MIT",
"host_application": {
"min_version": "0.8.0",
"max_version": "0.8.0"
},
"keywords": [
"pixiv",
"setu",
"图片",
"Lolicon API"
],
"categories": [
"娱乐",
"图片",
"API"
],
"config_file_name": "config.toml",
"config_section_descriptions": {
"plugin": "插件基本配置",
"components": "组件启用控制",
"cache": "缓存相关配置",
"logging": "日志记录配置"
},
"config_schema": {
"plugin": {
"config_version": {
"type": "str",
"default": "1.0.0",
"description": "插件配置文件版本号"
},
"enabled": {
"type": "bool",
"default": true,
"description": "是否启用插件"
}
},
"components": {
"enable_pixiv_setu": {
"type": "bool",
"default": true,
"description": "是否启用P站发图功能"
}
},
"cache": {
"expire_seconds": {
"type": "int",
"default": 7200,
"description": "缓存有效期(秒)"
},
"max_image_size": {
"type": "int",
"default": 1048576,
"description": "图片最大字节数(默认1MB)"
}
},
"logging": {
"level": {
"type": "str",
"default": "INFO",
"description": "日志级别",
"choices": [
"DEBUG",
"INFO",
"WARNING",
"ERROR"
]
},
"prefix": {
"type": "str",
"default": "[PixivSetu]",
"description": "日志前缀"
}
}
}
}
},
{
"id": "ZmasCloud.bingsearch",
"manifest": {
"manifest_version": 1,
"name": "bing搜索插件",
"version": "0.0.4",
"description": "让你的麦麦免费联网搜索!",
"author": {
"name": "zmas",
"url": "https://github.com/ZmasCloud"
},
"license": "AGPL-3.0",
"host_application": {
"min_version": "0.7.0",
"max_version": "0.7.3"
}
}
},
{
"id": "A0000Xz.MaiBot-Curfew-Plugin",
"manifest": {
"manifest_version": 1,
"name": "宵禁插件",
"version": "1.4.6",
"description": "在机器人是QQ群聊管理员的情况下实现了自动宵禁功能",
"author": {
"name": "A肆零西烛",
"url": "https://github.com/A0000Xz"
},
"license": "GPL-v3.0-or-later",
"host_application": {
"min_version": "0.9.1",
"max_version": "0.11.1"
},
"keywords": [
"mute",
"moderation",
"admin",
"management",
"group",
"curfew"
],
"categories": [
"Moderation",
"Group Management",
"Admin Tools"
],
"repository_url": "https://github.com/A0000Xz/MaiBot-Curfew-Plugin",
"default_locale": "zh-CN",
"locales_path": "_locales"
}
},
{
"id": "A0000Xz.MaiBot-AntiPoke-Plugin",
"manifest": {
"manifest_version": 1,
"name": "防戳插件",
"version": "1.4.6",
"description": "帮助你的麦麦实现人性化戳一戳互动的同时,避免过多戳一戳捣乱",
"author": {
"name": "A肆零西烛",
"url": "https://github.com/A0000Xz"
},
"license": "GPL-v3.0-or-later",
"host_application": {
"min_version": "0.9.1",
"max_version": "0.11.1"
},
"keywords": [
"poke",
"moderation",
"reply"
],
"categories": [
"Moderation",
"Anti Poke"
],
"repository_url": "https://github.com/A0000Xz/MaiBot-AntiPoke-Plugin",
"default_locale": "zh-CN",
"locales_path": "_locales"
}
},
{
"id": "tts_voice_plugin",
"manifest": {
"manifest_version": 2,
"version": "3.3.0",
"name": "统一TTS语音合成插件 (Unified TTS Voice Plugin)",
"description": "统一TTS语音合成插件,整合 AI Voice、GSV2P、GPT-SoVITS、豆包语音、CosyVoice、小米 MiMo 六种后端引擎,提供灵活的语音合成能力。",
"author": {
"name": "靓仔",
"url": "https://github.com/xuqian13"
},
"license": "AGPL-3.0-or-later",
"urls": {
"repository": "https://github.com/xuqian13/tts_voice_plugin",
"homepage": "https://github.com/xuqian13/tts_voice_plugin",
"documentation": "https://github.com/xuqian13/tts_voice_plugin",
"issues": "https://github.com/xuqian13/tts_voice_plugin/issues"
},
"host_application": {
"min_version": "1.0.0",
"max_version": "1.99.99"
},
"sdk": {
"min_version": "2.0.0",
"max_version": "2.99.99"
},
"dependencies": [
{
"type": "python_package",
"name": "aiohttp",
"version_spec": ">=3.8.0"
}
],
"capabilities": [
"chat.get_all_streams",
"llm.generate",
"send.command",
"send.custom",
"send.text"
],
"i18n": {
"default_locale": "zh-CN",
"supported_locales": [
"zh-CN"
]
},
"id": "xuqian13.tts-voice-plugin"
}
},
{
"id": "xuqian13.music_plugin",
"manifest": {
"manifest_version": 1,
"name": "娱乐插件",
"version": "1.0.3",
"description": "整合了看看腿、新闻、音乐、AI绘图等娱乐功能的统一插件,提供图片、新闻资讯、音乐点歌、AI生成图片等多种娱乐服务",
"author": {
"name": "靓仔",
"url": "https://github.com/xuqian13"
},
"license": "AGPL-v3.0",
"host_application": {
"min_version": "0.11.0",
"max_version": "1.0.0"
},
"repository_url": "https://github.com/xuqian13/music_plugin",
"keywords": [
"娱乐",
"图片",
"新闻",
"音乐",
"点歌",
"看看腿",
"60秒",
"网易云",
"QQ音乐",
"VIP音质",
"聚合点歌",
"AI绘图",
"AI生成"
],
"categories": [
"Entertainment",
"Music",
"Information",
"Image"
],
"tags": [
"娱乐",
"图片",
"新闻",
"音乐",
"AI绘图",
"多功能"
],
"dependencies": [],
"python_dependencies": [
"aiohttp",
"Pillow"
],
"config_file": "config.toml",
"enabled": true,
"components": {
"tools": [
{
"name": "get_60s_news",
"description": "获取每天60秒读懂世界的最新新闻摘要"
},
{
"name": "get_today_in_history",
"description": "获取历史上的今天发生的重要事件"
},
{
"name": "play_music",
"description": "搜索并播放指定歌曲。当用户想听音乐、点歌或推荐歌曲时使用此工具"
},
{
"name": "ai_draw",
"description": "根据描述词生成AI图片。当用户想要AI绘图或生成图片时使用此工具"
}
],
"actions": [
{
"name": "random_image_action",
"description": "获取随机腿部图片并发送",
"activation": "keyword",
"keywords": [
"看看腿",
"腿",
"看腿",
"康康腿",
"看看大长腿",
"大长腿"
]
},
{
"name": "ai_draw_action",
"description": "根据描述词生成AI图片",
"activation": "keyword",
"keywords": [
"AI绘图",
"ai绘图",
"画图",
"绘图",
"生成图片",
"画一张"
]
}
],
"commands": [
{
"name": "random_image_command",
"pattern": "/kankan [类型] 或 /看腿 [类型]",
"description": "获取随机腿部图片,支持指定类型"
},
{
"name": "news",
"pattern": "/news 或 /新闻",
"description": "查询每天60秒读懂世界新闻"
},
{
"name": "history",
"pattern": "/history 或 /历史",
"description": "查询历史上的今天"
},
{
"name": "music",
"pattern": "/music [音源] 歌曲名",
"description": "点歌命令,支持网易云和QQ音乐"
},
{
"name": "choose",
"pattern": "/choose 序号",
"description": "从搜索结果中选择歌曲"
},
{
"name": "quick_choose",
"pattern": "直接输入数字 1-10",
"description": "快捷选择歌曲"
},
{
"name": "ai_draw",
"pattern": "/draw 或 /绘图 或 /画图 <描述词>",
"description": "AI绘图命令,根据描述词生成图片"
}
]
},
"features": {
"image": {
"enabled": true,
"description": "随机图片功能,支持关键词和命令触发"
},
"news": {
"enabled": true,
"description": "每天60秒新闻和历史上的今天"
},
"music": {
"enabled": true,
"description": "音乐点歌功能,支持网易云和QQ音乐"
},
"ai_draw": {
"enabled": true,
"description": "AI绘图功能,根据描述词生成图片"
}
},
"configuration": {
"modules": {
"image_enabled": true,
"news_enabled": true,
"music_enabled": true,
"ai_draw_enabled": true
}
},
"id": "靓仔.music_plugin"
}
},
{
"id": "Schxar.Maibot-Doubao_pic_plugin",
"manifest": {
"manifest_version": 1,
"name": "豆包图片生成插件 (Doubao Image Generator)",
"version": "2.0.1",
"description": "基于火山引擎豆包模型的AI图片生成插件,支持智能LLM判定、高质量图片生成、结果缓存和多尺寸支持。",
"author": {
"name": "Schxar",
"url": "https://github.com/schxar/doubao_pic_plugin"
},
"license": "GPL-v3.0-or-later",
"host_application": {
"min_version": "0.10.2",
"max_version": "0.10.2"
},
"homepage_url": "https://github.com/schxar/doubao_pic_plugin",
"repository_url": "https://github.com/schxar/doubao_pic_plugin",
"keywords": [
"ai",
"image",
"generation",
"doubao",
"volcengine",
"art"
],
"categories": [
"AI Tools",
"Image Processing",
"Content Generation"
],
"default_locale": "zh-CN",
"locales_path": "_locales",
"plugin_info": {
"is_built_in": true,
"plugin_type": "content_generator",
"api_dependencies": [
"volcengine"
],
"components": [
{
"type": "action",
"name": "doubao_image_generation",
"description": "根据描述使用火山引擎豆包API生成高质量图片",
"activation_modes": [
"llm_judge",
"keyword"
],
"keywords": [
"画",
"图片",
"生成",
"画画",
"绘制"
]
}
],
"features": [
"智能LLM判定生成时机",
"高质量AI图片生成",
"���果缓存机制",
"多种图片尺寸支持",
"完整的错误处理"
]
}
}
},
{
"id": "schxar.music_plugin",
"manifest": {
"manifest_version": 1,
"name": "music_plugin",
"version": "1.0.0",
"description": "网易云音乐点歌插件,支持Napcat小程序卡片、详细美化回复、B站视频推荐等多种功能。",
"author": {
"name": "Schxar",
"url": "https://github.com/schxar"
},
"license": "MIT",
"host_application": {
"min_version": "0.10.2",
"max_version": "0.10.2"
},
"homepage_url": "https://github.com/schxar/music_plugin",
"repository_url": "https://github.com/schxar/music_plugin",
"keywords": [
"music",
"netease",
"点歌",
"napcat",
"bilibili"
],
"categories": [
"娱乐",
"音乐"
],
"default_locale": "zh-CN",
"locales_path": "_locales",
"plugin_info": {
"is_built_in": false,
"plugin_type": "general",
"components": [
{
"type": "action",
"name": "music_search",
"description": "网易云音乐搜索与点歌"
},
{
"type": "action",
"name": "bilibili_random_video",
"description": "B站UP主随机视频推荐"
},
{
"type": "command",
"name": "music",
"description": "/music 点歌命令"
},
{
"type": "command",
"name": "test_napcat_card",
"description": "Napcat音乐卡片推送测试"
}
]
}
}
},
{
"id": "XXXxx7258.url_summary_plugin",
"manifest": {
"manifest_version": 1,
"name": "网址摘要插件",
"version": "2.0.0",
"description": "自动检测消息中的网址并发送内容摘要",
"author": {
"name": "晴空",
"url": "https://github.com/XXXxx7258"
},
"license": "MIT",
"host_application": {
"min_version": "0.8.0",
"max_version": "0.9.1"
},
"homepage_url": "https://github.com/XXXxx7258/url_summary_plugin",
"repository_url": "https://github.com/XXXxx7258/url_summary_plugin",
"keywords": [
"网址",
"摘要",
"内容提取",
"网页分析",
"AI摘要"
],
"categories": [
"工具",
"网络",
"AI功能"
],
"default_locale": "zh-CN",
"plugin_info": {
"is_built_in": false,
"plugin_type": "general",
"components": [
{
"type": "action",
"name": "url_summary",
"description": "检测并总结网页内容"
}
]
}
}
},
{
"id": "khiqwq.silent_mode_plugin",
"manifest": {
"manifest_version": 1,
"name": "麦麦闭嘴(Silent Mode)",
"version": "1.0.5",
"description": "触发 \"麦麦闭嘴\" 后让机器人在群聊中安静一段时间,可用 \"麦麦张嘴\" 解除。",
"author": {
"name": "风花叶",
"url": "https://github.com/khiqwq"
},
"license": "AGPL-v3.0",
"homepage_url": "https://github.com/khiqwq/silent_mode_plugin",
"repository_url": "https://github.com/khiqwq/silent_mode_plugin",
"host_application": {
"min_version": "0.8.0",
"max_version": "0.11.0"
},
"keywords": [
"silent",
"mute",
"shutup",
"maibot",
"群聊"
],
"categories": [
"Moderation",
"Management"
],
"default_locale": "zh-CN",
"config_file_name": "config.toml",
"plugin_info": {
"components": [
{
"type": "command",
"name": "shutup",
"description": "触发静音"
},
{
"type": "command",
"name": "open_mouth",
"description": "解除静音"
},
{
"type": "action",
"name": "silent_filter",
"description": "静音期间阻止回复"
}
]
}
}
},
{
"id": "1021143806.mais_art_journal",
"manifest": {
"manifest_version": 2,
"version": "4.0.0",
"name": "麦麦绘卷(Claude MAInet)",
"description": "基于 MaiBot 的多模型智能绘图插件。兼容 OpenAI、OpenAI-Chat、豆包(火山方舟)、Gemini、魔搭、硅基流动、砂糖云、梦羽、智谱 GLM、阿里百炼 DashScope(通义千问/万相/Z-Image/可灵)、ComfyUI 等多种 API 格式。提供命令式风格转换、自拍模式、自动自拍发说说、日程感知、模型配置管理、运行时聊天流隔离状态、对外 @API 生图接口等功能。",
"author": {
"name": "Ptrel, Rabbit-Jia-Er, saberlights Kiuon",
"url": "https://github.com/1021143806/mais_art_journal"
},
"license": "GPL-v3.0-or-later",
"urls": {
"repository": "https://github.com/1021143806/mais_art_journal",
"homepage": "https://github.com/1021143806/mais_art_journal",
"issues": "https://github.com/1021143806/mais_art_journal/issues"
},
"host_application": {
"min_version": "1.0.0",
"max_version": "1.99.99"
},
"sdk": {
"min_version": "2.0.0",
"max_version": "2.99.99"
},
"dependencies": [],
"capabilities": [
"send.text",
"send.image",
"send.command",
"send.custom",
"config.get",
"config.get_plugin",
"llm.generate",
"message.get_by_time_in_chat",
"message.get_by_id",
"api.call"
],
"i18n": {
"default_locale": "zh-CN",
"supported_locales": [
"zh-CN"
]
},
"id": "1021143806.mais_art_journal"
}
},
{
"id": "dkdcakedangao.MaiBot-MHWJH-Plugin",
"manifest": {
"manifest_version": 1,
"name": "麦麦的怪物猎人集会码插件",
"version": "1.2.0",
"description": "提供怪物猎人集会码的登记、查询和删除功能,支持多群组隔离管理",
"author": {
"name": "倒过来的蛋糕蛋糕",
"url": "https://github.com/dkdcakedangao"
},
"license": "GPL-v3.0-or-later",
"keywords": [
"怪物猎人",
"集会码",
"游戏",
"MHW",
"集会"
],
"categories": [
"Entertainment & Interaction",
"Utility Tools"
],
"repository_url": "https://github.com/dkdcakedangao/MaiBot-MHWJH-Plugin",
"default_locale": "zh-CN",
"locales_path": "_locales",
"host_application": {
"min_version": "0.9.0",
"max_version": "0.10.1"
}
}
},
{
"id": "internetsb.Maizone",
"manifest": {
"manifest_version": 2,
"id": "internetsb.maizone",
"version": "3.0.0",
"name": "Maizone(麦麦空间)",
"description": "让麦麦阅读、评论、点赞、发送QQ空间",
"author": {
"name": "internetsb",
"url": "https://github.com/internetsb"
},
"license": "MIT",
"urls": {
"repository": "https://github.com/internetsb/Maizone"
},
"host_application": {
"min_version": "1.0.0",
"max_version": "1.99.99"
},
"sdk": {
"min_version": "1.0.0",
"max_version": "2.99.99"
},
"dependencies": [
{
"type": "plugin",
"id": "maibot-team.napcat-adapter",
"version_spec": ">=0.1.0"
},
{
"type": "python_package",
"name": "bs4",
"version_spec": ">=0.0.1"
},
{
"type": "python_package",
"name": "json5",
"version_spec": ">=0.0.1"
},
{
"type": "python_package",
"name": "requests",
"version_spec": ">=0.0.1"
},
{
"type": "python_package",
"name": "httpx",
"version_spec": ">=0.0.1"
}
],
"capabilities": [
"send.text",
"llm.generate",
"config.get",
"llm.get_available_models",
"message.get_recent",
"api.call",
"emoji.get_by_description",
"database.get"
],
"i18n": {
"default_locale": "zh-CN"
}
}
},
{
"id": "Heximiao.acpoke_plugin",
"manifest": {
"manifest_version": 1,
"name": "戳一戳插件",
"display_name": "戳一戳插件",
"version": "0.5.1",
"description": "全新重构的戳一戳插件,做到真正的装载即用!一个主动发起“戳一戳”的 MaiMai 插件,主动发起戳一戳,增添群聊乐趣。",
"author": {
"name": "何夕",