forked from AstrBotDevs/AstrBot_Plugins_Collection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.json
More file actions
1990 lines (1990 loc) · 88.5 KB
/
plugins.json
File metadata and controls
1990 lines (1990 loc) · 88.5 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
{
"astrbot_plugin_renjian": {
"author": "FlyingMuyu",
"desc": "《我在人间凑数的日子》散文随机语录。",
"repo": "https://github.com/FlyingMuyu/astrbot_plugin_renjian",
"social_link": "https://github.com/FlyingMuyu"
},
"astrbot_plugin_translate": {
"author": "xu-wish",
"desc": "使用 Google Translate 的 AstrBot 插件,支持使用命令 /tl 翻译任意文本。",
"repo": "https://github.com/xu-wish/astrbot_plugin_translate",
"tags": ["翻译"],
"social_link": "https://github.com/xu-wish"
},
"astrbot_plugin_bili_userinfo": {
"author": "FlyingMuyu",
"desc": "B站用户信息查询",
"repo": "https://github.com/FlyingMuyu/astrbot_plugin_bili_userinfo",
"tags": ["bilibili"],
"social_link": "https://github.com/FlyingMuyu"
},
"astrbot_plugin_weather-Amap": {
"author": "BB0813",
"desc": "基于w33d大佬心知天气插件二次开发 修改为高德开放平台API",
"repo": "https://github.com/BB0813/astrbot_plugin_weather-Amap",
"tags": ["天气查询"],
"social_link": "https://github.com/BB0813"
},
"astrbot_plugin_chouqunyou": {
"author": "灵煞",
"desc": "[仅 napcat] 在QQ群随机抽取一个群友",
"repo": "https://github.com/tenno1174/astrbot_plugin_chouqunyou",
"tags": ["娱乐", "工具"]
},
"astrbot_plugin_wwuid_reply_enhance": {
"author": "tyql688",
"desc": "基于astrbot的wwuid的回复增强。",
"repo": "https://github.com/tyql688/astrbot_plugin_wwuid_reply_enhance",
"tags": ["鸣潮"],
"social_link": "https://github.com/tyql688/WutheringWavesUID"
},
"astrbot_plugin_mrfz_haunting_query": {
"author": "Ricky",
"desc": "明日方舟抽卡查询",
"repo": "https://github.com/R1ckyQaQ/astrbot_plugin_mrfz_haunting_query"
},
"astrbot_plugin_deepwiki": {
"author": "Zhalslar",
"desc": "使用deepwiki查询指定github仓库,可作为问答助手",
"repo": "https://github.com/Zhalslar/astrbot_plugin_deepwiki",
"tags": ["deepwiki", "github"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_delete_and_block_filter": {
"author": "enixi",
"desc": "对astrbot删除和屏蔽功能的补充",
"repo": "https://github.com/enixi/astrbot_plugin_delete_and_block_filter"
},
"astrbot_plugin_gemini_artist": {
"author": "nichinichisou0609",
"desc": "本插件能够让您便捷使用 Google的 gemini-2.0-flash-exp 、gemini-2.0-flash-exp-image-generation、gemini-2.0-flash-preview-image-generation模型进行图像生成",
"repo": "https://github.com/nichinichisou0609/astrbot_plugin_gemini_artist"
},
"astrbot_plugin_dzmm": {
"author": "VincentHo",
"desc": "DZMM聊天插件,适配了DZMM返回的格式,并避免与AstrBot的模型混用,可用特别命令唤起DZMM的模型进行\"有趣生动\"的互动聊天。",
"repo": "https://github.com/VincenttHo/astrbot_plugin_dzmm"
},
"astrbot_plugin_text2image": {
"author": "wuyan1003",
"desc": "一款灵活高效的文本转图片工具,让文字呈现更具视觉张力",
"repo": "https://github.com/wuyan1003/astrbot_plugin_text2image"
},
"astrbot_plugin_angus": {
"author": "angus-fw",
"desc": "综合功能插件合集,集成了多个实用功能,包括智能提醒、主动对话、涩图功能和服务器状态监控等",
"repo": "https://github.com/Angus-fw/astrbot_plugin_angus",
"tags": ["工具"],
"social_link": "https://github.com/Angus-fw"
},
"astrbot_plugin_timetask": {
"author": "ZW",
"desc": "这是timetask插件,支持定时消息,可以指定微信群(暂时只支持WechatPadPro渠道)",
"repo": "https://github.com/Zhenyi-Wang/astrbot-timetask"
},
"astrbot_plugin_time_prompt": {
"author": "wuyan1003",
"desc": "给聊天增加了当前时间提示词,让模型有一定的时间观念,还会让模型知道你们上一次对话间隔了多久[可在插件配置选择是否开启,默认开启]",
"repo": "https://github.com/wuyan1003/time_prompt"
},
"astrbot_plugin_seiadetect": {
"author": "orchidsziyou",
"desc": "[仅 napcat] 使用Onnx检测发送的图片是否包含_百合园圣娅_并且有特定回复。",
"repo": "https://github.com/orchidsziyou/astrbot_plugin_seiadetect"
},
"astrbot_plugin_knowledge_base": {
"author": "lxfight",
"desc": "astrbot_plugin_knowledge_base 是一个为 AstrBot 聊天机器人框架量身定制的强大知识库插件。 它允许您的机器人连接到自定义的知识源,通过先进的检索增强生成 (RAG) 技术, 让机器人能够基于准确、具体的私有信息进行对话,而不仅仅依赖预训练模型的通用知识。",
"repo": "https://github.com/lxfight/astrbot_plugin_knowledge_base",
"tags": ["RAG", "知识库"]
},
"astrbot_uptime_kuma_webhook_plugin": {
"author": "RC-CHN",
"desc": "通过 Webhook 从 Uptime Kuma 接收监控状态通知,并将这些通知推送到指定的 AstrBot 用户或群组",
"repo": "https://github.com/RC-CHN/astrbot_uptime_kuma_webhook_plugin",
"tags": ["监控", "服务器"]
},
"astrbot_plugin_mcmod_modsearch": {
"author": "mmyddd",
"desc": "本插件根据 wayzinx/httpposter 修改,用于查询爬取的 mcmod 内的模组与整合包,用法:/查mod mek或 /查整合包 GTNH",
"repo": "https://github.com/mmyddd/astrbot_plugin_mcmod_modsearch"
},
"astrbot_plugin_doro": {
"author": "shingetsu",
"desc": "获取随机的 Doro 表情包",
"repo": "https://github.com/2356820887/astrbot_plugin_doro",
"tags": ["doro"]
},
"astrbot_plugin_baike": {
"author": "明日香奈",
"desc": "输入【/百科 要搜索的词条】即可查询百度百科简略内容",
"repo": "https://github.com/mingrixiangnai/astrbot_plugin_baike",
"tags": ["百科", "信息"],
"social_link": "https://github.com/mingrixiangnai/astrbot_plugin_baike"
},
"astrbot_plugin_LatexPlotter": {
"author": "xunxi",
"desc": "本插件为 AstrBot 设计,旨在提供强大的 LaTeX 数学公式渲染功能。它可以将用户输入的 LaTeX 字符串渲染成高质量的图片,并支持通过逗号分隔实现多行、分步骤的公式展示。插件具有高度的可配置性,允许用户调整渲染效果,如DPI、字体大小、颜色、行间距等。",
"repo": "https://github.com/xunxiing/LatexPlotter",
"tags": ["latex", "渲染"]
},
"astrbot_plugin_qrcode": {
"author": "Yuki Soffd",
"desc": "链接转二维码的astrbot插件",
"repo": "https://github.com/Soffd/astrbot_plugin_qrcode",
"tags": ["工具"]
},
"astrbot_plugin_babirthday": {
"author": "laopanmemz",
"desc": "Blue Archive 蔚蓝档案学员生日提醒插件",
"repo": "https://github.com/laopanmemz/astrbot_plugin_babirthday",
"tags": ["蔚蓝档案", "游戏"],
"social_link": "https://space.bilibili.com/447591776"
},
"astrbot_plugin_embedding_adapter": {
"author": "AnYan",
"desc": "[前置] [适配器] 在配置后提供embedding接口",
"repo": "https://github.com/TheAnyan/astrbot_plugin_embedding_adapter",
"tags": ["embedding"],
"social_link": "https://github.com/TheAnyan"
},
"astrbot_plugin_stock": {
"author": "anchor",
"desc": "基于 Tushare Pro 的股市行情查询 AstrBot 插件,支持实时和历史日线数据查询。",
"repo": "https://github.com/anchorAnc/astrbot_plugin_stock",
"tags": ["股市"]
},
"astrbot_plugin_kfc_thursday": {
"author": "和泉智宏",
"desc": "[仅 aiocqhttp] 让大模型发送疯狂星期四文案,图片加入阅读readme",
"repo": "https://github.com/0d00-Ciallo-0721/astrbot_plugin_kfc_thursday",
"tags": ["疯狂星期四"]
},
"astrbot_plugin_search_video": {
"author": "Zhalslar",
"desc": "视频搜索,让你和群友一起刷视频(目前仅支持B站、QQ平台,后续兼容更多)",
"repo": "https://github.com/Zhalslar/astrbot_plugin_search_video",
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_zt": {
"author": "Zhalslar",
"desc": "简易版服务器状态插件,几乎不消耗性能,准确度更高",
"repo": "https://github.com/Zhalslar/astrbot_plugin_zt",
"tags": ["状态"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_portrayal": {
"author": "Zhalslar",
"desc": "[仅 napcat] 根据群友的聊天记录,调用llm分析群友的性格画像",
"repo": "https://github.com/Zhalslar/astrbot_plugin_portrayal",
"tags": ["性格", "画像"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_Kanalyse": {
"author": "End_Tower",
"desc": "[仅 QQ]基于大语言模型的群聊分析插件,提供聊天记录总结和实时分析功能,并将生成的内容转化为一张图片,以AI绝对客观的视角来调停冲突 本意为让AI当判官直接评判对错,后来发现AI无法成为一个裁判判断是非,但AI能以他绝对的客观性,强行把大家拉回观众席上,客观的看待一个事件。部署一个月内累计处理:重大社会热点争议 10+ 次(订婚强奸案被判3年等、胖猫事件重提等),日常群组冲突 30+ 次,90% 争议在AI介入后停止升级",
"repo": "https://github.com/endtower/astrbot_plugin_Kanalyse",
"tags": ["教育", "调停"]
},
"astrbot_plugin_prefix_filter": {
"author": "padoru233",
"desc": "一个用于过滤特定前缀消息的插件",
"repo": "https://github.com/padoru233/astrbot_plugin_prefix_filter",
"tags": ["prefix", "filter", "过滤", "前缀"],
"social_link": "https://github.com/padoru233"
},
"astrbot_plugin_cyber_archaeology": {
"author": "AnYan",
"desc": "[仅 aiocqhttp] 本插件利用embedding,根据描述查询意思相符的历史信息。",
"repo": "https://github.com/TheAnyan/astrbot_plugin_cyber_archaeology",
"tags": ["关键词", "历史消息", "搜索"],
"social_link": "https://github.com/TheAnyan"
},
"astrbot_plugin_QQgal": {
"author": "和泉智宏",
"desc": "简单的Galgame",
"repo": "https://github.com/0d00-Ciallo-0721/astrbot_plugin_QQgal",
"tags": ["Galgame"]
},
"astrbot_plugin_llm_poke": {
"author": "和泉智宏",
"desc": "用LLM进行回复的戳一戳插件",
"repo": "https://github.com/0d00-Ciallo-0721/astrbot_plugin_llm_poke",
"tags": ["戳"]
},
"astrbot_plugin_sql_history": {
"author": "LW",
"desc": "MySQL存储聊天记录",
"repo": "https://github.com/LWWD/astrbot_plugin_sql_history"
},
"astrbot_plugin_error_notice": {
"author": "DragonEmpery",
"desc": "[仅 aiocqhttp] 可以屏蔽掉机器人在群聊或私聊中的错误信息,并将错误信息发送给管理员。",
"repo": "https://github.com/DragonEmpery/astrbot_plugin_error_notice",
"tags": ["主动消息", "通知"]
},
"astrbot_plugin_emoji_like": {
"author": "Zhalslar",
"desc": "[仅 aiocqhttp] 调用LLM判断消息的情感,智能地给消息贴上QQ表情",
"repo": "https://github.com/Zhalslar/astrbot_plugin_emoji_like",
"tags": ["贴表情"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_pock_mini": {
"author": "IGCrystal",
"desc": "[仅 aiocqhttp] 依据长安某的“戳一戳”插件修改而来。本插件新增了调用大语言模型回复。但是也删除了表情包的制作。",
"repo": "https://github.com/IGCrystal/astrbot_plugin_pock_omini",
"tags": ["聊天体验增强"],
"social_link": "https://wenturc.com/"
},
"astrbot_plugin_lanraragi": {
"author": "Putarku",
"desc": "使用lanraragi提供的api进行关键词搜索,并将搜索结果发送到聊天中。",
"repo": "https://github.com/Putarku/astrbot_plugin_lanraragi",
"tags": ["漫画"],
"social_link": "https://github.com/Putarku"
},
"astrbot_plugins_JMPlugins": {
"author": "orchidsziyou",
"desc": "[仅 aiocqhttp] 支持查询JMid对应的作品信息,仅aiocqhttp支持,目前仅测试过NapCat。",
"repo": "https://github.com/orchidsziyou/astrbot_plugins_JMPlugins",
"social_link": "https://github.com/orchidsziyou/astrbot_plugins_JMPlugins"
},
"astrbot_plugin_fishing2": {
"author": "tinker",
"desc": "升级版的钓鱼插件(详情见README)ps: 该插件是https://github.com/baa131/astrbot_plugin_fishing 的pro版,新增了一些功能:更多的鱼类和鱼饵,新增鱼竿和饰品,新增抽卡系统,新增了成就和称号功能,新增擦弹功能(赌怪)",
"repo": "https://github.com/tinkerbellqwq/astrbot_plugin_fishing",
"tags": ["game", "fish"]
},
"astrbot_plugin_bilibili_live": {
"author": "Raven95676",
"desc": "接入Bilibili直播",
"repo": "https://github.com/Raven95676/astrbot_plugin_bilibili_live"
},
"astrbot_plugin_bo": {
"author": "anchor",
"desc": "这是我们童年玩的波波集游戏bo_game,你将与传说中的最强ai小学生对战",
"repo": "https://github.com/anchorAnc/astrbot_plugin_bo"
},
"astrbot_plugin_cloudrank": {
"author": "GEMILUXVII",
"desc": "AstrBot词云与排名插件(CloudRank):专为AstrBot设计的强大聊天分析工具。可分析群聊与私聊消息,生成美观词云图,直观展示热点话题,并展示用户活跃度排行。支持定时与手动生成,提供丰富的颜色、字体、形状及排名显示自定义选项",
"repo": "https://github.com/GEMILUXVII/astrbot_plugin_cloudrank",
"tags": ["词云"],
"social_link": "https://github.com/GEMILUXVII",
"pinned": true
},
"astrbot_plugin_liblibapi": {
"author": "machinad",
"desc": "一个功能强大的AI文生图插件,基于LiblibAI的API服务。支持SD1.5/XL、Flux和ComfyUI三种绘图模式,可自由搭配大模型和LoRA模型实现个性化创作。内置中英文提示词翻译功能,支持多种翻译模式",
"repo": "https://github.com/machinad/astrbot_plugin_liblibapi",
"tags": ["文生图", "自定义模型", "自定义lora"]
},
"astrbot_plugin_memo": {
"author": "Koikokokokoro",
"desc": "简易备忘录",
"repo": "https://github.com/Koikokokokoro/astrbot_plugin_memo",
"tags": ["备忘录"]
},
"astrbot_plugin_notice": {
"author": "Zhalslar",
"desc": "[仅 aiocqhttp] 通知助手,当bot被禁言/解禁、被踢出群/拉群、被取消管理员/设为管理员时,会向主人打小报告",
"repo": "https://github.com/Zhalslar/astrbot_plugin_notice",
"tags": ["通知"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_pokepro": {
"author": "Zhalslar",
"desc": "[仅 aiocqhttp] 更专业的戳一戳,被戳触发(反戳:LLM:emoji:图库:禁言:meme:api:开盒),戳@某人,跟戳",
"repo": "https://github.com/Zhalslar/astrbot_plugin_pokepro",
"tags": ["戳一戳"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_jm_cosmos": {
"author": "GEMILUXVII",
"desc": "[仅 aiocqhttp] 这是一个用于AstrBot的全能型插件,能够下载、管理、搜索JM漫画,并将其转换为PDF或图片预览发送。",
"repo": "https://github.com/GEMILUXVII/astrbot_plugin_jm_cosmos",
"tags": ["jmcomic", "禁漫"],
"social_link": "https://github.com/GEMILUXVII"
},
"astrbot_plugin_combine-messages": {
"author": "FreeDivers",
"desc": "自动合并的短时间内收到的连续发送的消息,防止刷屏",
"repo": "https://github.com/FreeDivers/astrbot_plugin_combine-messages",
"tags": ["主动回复"]
},
"astrbot_plugin_broadcast": {
"author": "Zhalslar",
"desc": "[仅aiocqhttp] 广播助手,帮助你向所有群聊广播消息(支持任何格式消息)",
"repo": "https://github.com/Zhalslar/astrbot_plugin_broadcast",
"tags": ["广播"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_nobot": {
"author": "Zhalslar",
"desc": "[仅 aiocqhttp]] 找出并禁言群里的人机!",
"repo": "https://github.com/Zhalslar/astrbot_plugin_nobot",
"tags": ["人机"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_nobot"
},
"astrbot_plugin_mcgetter": {
"author": "QiChen",
"desc": "[仅 QQ]获取 MC 服务器信息, 渲染为图片",
"repo": "https://github.com/QiChenSn/astrbot_mcgetter",
"tags": ["mc", "minecraft", "我的世界"],
"social_link": "https://github.com/QiChenSn"
},
"astrbot_plugin_yinlish": {
"author": "vmoranv",
"desc": "普通文本转换为'*语',支持自定义*乱度,*语字典",
"repo": "https://github.com/vmoranv/astrbot_plugin_yinlish",
"social_link": "https://github.com/vmoranv"
},
"astrbot_plugin_bilipic": {
"author": "明日香奈",
"desc": "发送BV号获取哔站视频封面图",
"repo": "https://github.com/mingrixiangnai/bilipic",
"tags": ["图片", "哔站"],
"social_link": "https://github.com/mingrixiangnai/bilipic"
},
"astrbot_plugin_memelite_rs": {
"author": "Zhalslar",
"desc": "表情包生成器,制作各种沙雕表情(Rust重构版,速度快占用小)",
"repo": "https://github.com/Zhalslar/astrbot_plugin_memelite_rs",
"tags": ["表情包"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_voiceprint": {
"author": "hello七七",
"desc": "活字印刷(文本转语音)",
"repo": "https://github.com/ttq7/astrbot_plugin_voiceprint"
},
"astrbot_plugin_mrfz": {
"author": "bushikq",
"desc": "这是一个高级的自动化的明日方舟所有角色语音的 AstrBot 插件",
"tags": ["明日方舟", "游戏", "语音"],
"repo": "https://github.com/zhewang448/astrbot_plugin_mrfz"
},
"astrbot_plugin_maodie": {
"author": "Jason.Joestar",
"desc": "使用“哈个气”获得可爱耄耋涩图",
"repo": "https://github.com/advent259141/astrbot_plugin_maodie",
"tags": ["哈气", "耄耋"],
"social_link": "https://github.com/advent259141"
},
"astrbot_plugin_napdog_cleaner": {
"author": "anka",
"desc": "[仅 NapCat] napdog, 把napcat拉的史全部吃光光, 自动监控并清理 NapCat 产生的缓存文件, 注意docker需要额外配置!",
"repo": "https://github.com/anka-afk/astrbot_plugin_napdog",
"tags": ["napcat", "工具"],
"social_link": "https://space.bilibili.com/26584382"
},
"astrbot_plugin_supervisor": {
"author": "Zhalslar",
"desc": "赛博监工,检测到某人水群,就提醒他滚去干活",
"repo": "https://github.com/Zhalslar/astrbot_plugin_supervisor",
"tags": ["监工", "工作"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_primermath": {
"author": "灵煞",
"desc": "让你的AI能正确进行简单四则运算和比大小",
"repo": "https://github.com/tenno1174/astrbot_plugin_primermath",
"tags": ["函数工具", "数学"]
},
"astrbot_plugin_qyws": {
"author": "明日香奈",
"desc": "随机播放文件夹里千原万神小丛雨的语音插件",
"repo": "https://github.com/mingrixiangnai/qyws",
"social_link": "https://github.com/mingrixiangnai/qyws"
},
"astrbot_plugin_animewifex": {
"author": "monbed",
"desc": "[仅 aiocqhttp] 基于zgojin的astrbot_plugin_AW插件修改版。",
"repo": "https://github.com/monbed/astrbot_plugin_animewifex"
},
"astrbot_plugin_emojimix": {
"author": "Flartiny",
"desc": "一个用于 AstrBot 的插件,实现类似Google Emoji Kitchen(合成emoji)的效果。",
"repo": "https://github.com/Flartiny/astrbot_plugin_emojimix"
},
"astrBot_plugin_0721galgame": {
"author": "明日香奈",
"desc": "在群里输入【/查gal 游戏名称】即可查询内置galgame网站相对应的资源名称和链接",
"repo": "https://github.com/mingrixiangnai/0721galgame",
"tags": ["Galgame"],
"social_link": "https://github.com/mingrixiangnai/0721galgame"
},
"astrbot_plugin_terminal": {
"author": "LHaiC",
"desc": "通过和AstrBot对话调用服务器终端",
"repo": "https://github.com/LHaiC/astrbot_plugin_terminal",
"tags": ["服务器", "命令行", "终端"]
},
"astrbot_plugin_OriginiumSeal-pro": {
"author": "bushikq",
"desc": "[仅 aiocqhttp] 源石封印插件(将原本的戳一戳条件改成了在用户发送制作源石头像时执行)",
"repo": "https://github.com/zhewang448/astrbot_plugin_OriginiumSeal-pro",
"tags": ["明日方舟", "游戏"],
"social_link": "https://github.com/zhewang448"
},
"astrBot_plugin_0721anime": {
"author": "明日香奈",
"desc": "在群里输入【/查番 动漫名称】即可查询内置动漫网站相对应的动漫名和链接",
"repo": "https://github.com/mingrixiangnai/0721anime",
"tags": ["动漫"],
"social_link": "https://github.com/mingrixiangnai/0721anime"
},
"astrbot_plugin_fishing": {
"author": "baa131",
"repo": "https://github.com/baa131/astrbot_plugin_fishing",
"desc": "电子钓鱼的小游戏"
},
"astrbot_plugin_buttons": {
"author": "Zhalslar",
"desc": "[仅 napcat] 让QQ的野生bot也能发送按钮!",
"repo": "https://github.com/Zhalslar/astrbot_plugin_buttons",
"tags": ["按钮"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_SillyTavern_card": {
"author": "LKarxa",
"desc": "一个将 SillyTavern 角色卡(PNG 格式)转换为 Lorebook YAML 与角色信息的插件。",
"repo": "https://github.com/LKarxa/astrbot_plugin_SillyTavern_card"
},
"astrbot_plugin_reply": {
"author": "yahayao",
"desc": "自定义关键词回复",
"repo": "https://github.com/yahayao/astrbot_plugin_reply"
},
"astrbot_plugin_nvda": {
"author": "LHaiC",
"desc": "查询NVDA股票实时行情",
"repo": "https://github.com/LHaiC/astrbot_plugin_nvda",
"tags": ["理财", "科技", "股票"]
},
"astrbot_plugin_at_responder": {
"author": "和泉智宏",
"desc": "多样化@回复插件,配置时请先设置群聊进行@回复,本插件默认不进行@回复支持指定人的全局@、特定群的指定人的@、全群@以及黑名单功能。",
"repo": "https://github.com/0d00-Ciallo-0721/astrbot_plugin_at_responder"
},
"astrbot_plugin_regex_filter": {
"author": "LKarxa",
"desc": " 一个使用正则表达式处理LLM消息的AstrBot插件,可以对LLM回复进行替换、删除、增添等操作。",
"repo": "https://github.com/LKarxa/astrbot_plugin_regex_filter"
},
"prompt_tools": {
"author": "LKarxa",
"desc": "兼容酒馆预设",
"repo": "https://github.com/LKarxa/prompt_tools",
"tags": ["tools", "prompt"]
},
"astrbot_plugin_MsgDistributor": {
"author": "Dinggg",
"desc": "根据消息平台-群id/好友名/好友id动态选择服务提供商",
"repo": "https://github.com/AAlexDing/astrbot_plugin_msgdistributor",
"tags": ["前置", "信息"]
},
"astrbot_plugin_apis": {
"author": "Zhalslar",
"desc": "API聚合插件,上百个免费API动态添加,热门API:看看腿、看看腹肌...",
"repo": "https://github.com/Zhalslar/astrbot_plugin_apis",
"tags": ["api"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_apis"
},
"astrbot_plugin_help": {
"author": "tinker",
"desc": "一键输出所有插件的命令帮助!",
"repo": "https://github.com/tinkerbellqwq/astrbot_plugin_help",
"social_link": "https://github.com/tinkerbellqwq"
},
"astrbot_qqemotionreply": {
"author": "QiChen",
"social_link": "https://github.com/QiChenSn",
"repo": "https://github.com/QiChenSn/astrbot_qqemotionreply",
"tags": ["娱乐", "恶搞", "填满"],
"desc": "[仅 aiocqhttp] 给 QQ 引用的消息贴表情"
},
"astrbot_plugin_llm_draw_plus": {
"author": "喵喵",
"desc": "让llm自主使用硅基流动的 SD3.5 及 flux.1 绘图",
"repo": "https://github.com/miaoxutao123/astrbot_plugin_llm_draw_plus",
"tags": ["ai绘图", "llm tool"]
},
"astrbot_plugin_mcqq": {
"author": "kterna",
"desc": "[仅 aiocqhttp]使用鹊桥连接 Minecraft 服务器和群聊",
"repo": "https://github.com/kterna/astrbot_plugin_mcqq",
"tags": ["minecraft", "游戏"]
},
"astrbot_plugin_Group-Verification": {
"author": "huotuo146",
"desc": "[仅 aiocqhttp]一个简单高效的 QQ 群成员入群审核验证工具,保护您的群聊免受广告机器人和不良用户的侵扰",
"repo": "https://github.com/huntuo146/astrbot_plugin_Group-Verification",
"tags": ["管理", "关键词", "成员审核"],
"social_link": "https://github.com/huntuo146"
},
"astrbot_plugin_Volcengine-Text-to-image": {
"author": "wayzinx",
"desc": "通过http的方式请求火山豆包接口返回生图结果,不采用sdk方式,避免库包安装失败的问题",
"repo": "https://github.com/Wayzinx/Volcengine-Text-to-image",
"tags": ["Text-to-Image", "文生图"],
"social_link": "https://github.com/Wayzinx"
},
"astrbot_plugin_chishenme": {
"author": "明日香奈",
"desc": "当用户发送的消息中包含关键词“吃什么”时,机器人会自动回复一段预设的文本。",
"repo": "https://github.com/mingrixiangnai/chishenme",
"tags": ["聊天", "娱乐", "信息"],
"social_link": "https://github.com/mingrixiangnai/chishenme"
},
"astrbot_plugin_osutrack": {
"author": "gameswu",
"desc": "基于osu!track与osu!官方api实现的包含osu!成绩上传,谱面查询等功能的插件",
"repo": "https://github.com/gameswu/astrbot_plugin_osutrack",
"tags": ["osu!", "osu!track"],
"social_link": "https://github.com/gameswu"
},
"astrbot_plugin_group_information": {
"author": "Futureppo",
"desc": "[仅 aiocqhttp] 导出QQ群成员信息为Excel表格",
"repo": "https://github.com/Futureppo/astrbot_plugin_group_information",
"tags": ["群消息"],
"social_link": "https://github.com/Futureppo"
},
"astrbot_plugin_OriginiumSeal": {
"author": "FengYing",
"desc": "[仅 aiocqhttp] 将用户的头像添加源石封印效果。(ps:明日方舟)",
"repo": "https://github.com/FengYing1314/astrbot_plugin_OriginiumSeal",
"tags": ["娱乐"],
"social_link": "https://github.com/FengYing1314/"
},
"astrbot_plugin_Minesweeper": {
"author": "Jason.Joestar",
"desc": "简单的扫雷小游戏",
"repo": "https://github.com/advent259141/astrbot_plugin_Minesweeper",
"tags": ["扫雷", "娱乐"],
"social_link": "https://github.com/advent259141"
},
"astrbot_plugin_uptime_kuma_puller": {
"author": "Henry_Du / bananaxiao2333",
"desc": "拉取UptimeKuma监控面板中的服务器状态",
"repo": "https://github.com/HenryDu8133/astrbot_plugin_uptime_kuma_puller",
"tags": ["信息", "监控面板"]
},
"astrbot_plugin_tarot": {
"author": "XziXmn",
"desc": "一个基于 AstrBot 框架的塔罗牌占卜插件,支持多牌阵和单张牌占卜,并通过 AI 生成详细解析。",
"repo": "https://github.com/XziXmn/astrbot_plugin_tarot"
},
"astrbot_plugin_a2s": {
"author": "ZvZPvz",
"desc": "这是 AstrBot 的A2S查询插件。",
"repo": "https://github.com/ZvZPvz/astrbot_plugin_a2s",
"tags": ["工具"]
},
"astrbot_plugin_llmgo": {
"author": "Jason.Joestar",
"desc": "这是一个围棋插件,允许用户与 LLM 进行围棋对弈",
"repo": "https://github.com/advent259141/astrbot_plugin_llmgo",
"tags": ["围棋"],
"social_link": "https://github.com/advent259141"
},
"astrbot_plugin_fuck": {
"author": "vmoranv",
"desc": "一个为 AstrBot 设计的命令纠错插件,灵感来源于著名的命令行工具 thefuck。当你不小心输错了一个命令时(例如 /pixic 而不是 /pixiv),只需紧接着发送 /fuck,此插件就会尝试找出你可能想输入的正确命令,并给出建议。",
"repo": "https://github.com/vmoranv/astrbot_plugin_fuck"
},
"astrbot_plugin_wuziqi": {
"author": "大沙北",
"desc": "简单的五子棋对战游戏",
"repo": "https://github.com/bigshabei/astrbot_plugin_wuziqi"
},
"astrbot_plugin_dogdiary": {
"repo": "https://github.com/bigshabei/astrbot_plugin_dogdiary",
"author": "大沙北",
"desc": "连续性舔狗日记,每日一记(可以生成临时日记)"
},
"astrbot-food-recommender": {
"repo": "https://github.com/Wayzinx/astrbot-food-recommender",
"author": "wayzinx",
"desc": "食物推荐插件,可以根据时间、天气和季节智能推荐食物,并使用 AI 生成食物图片和描述",
"social_link": "https://github.com/Wayzinx"
},
"astrbot_plugin_turnrig": {
"author": "WentUrc",
"desc": "[仅 aiocqhttp]监听不同会话,并转发至另一个会话,你也可以当作反撤回使用。更多请阅读仓库文档。",
"repo": "https://github.com/WentUrc/astrbot_plugin_turnrig",
"tags": ["工具"],
"social_link": "https://wenturc.com/"
},
"astrbot_plugin_status-pro": {
"author": "tiker",
"desc": "[需要安装前置]稍微好看一点的系统信息展示",
"repo": "https://github.com/tinkerbellqwq/astrbot_plugin_status-pro"
},
"astrbot_plugin_group_sum_ai": {
"author": "Ayu-u",
"desc": "[仅 gewechat]可以配置指定群聊或对话人,配置自动总结数量,间隔等等,实现自动根据配置总结群友发言,省的海量无用信息浪费时间",
"repo": "https://github.com/Ayu-u/astrbot_plugin_group_sum_ai"
},
"astrbot_plugin_video": {
"author": "大白致远",
"desc": "小姐姐视频随机获取",
"repo": "https://github.com/guowenye/astrbot_plugin_video",
"tags": ["小姐姐"]
},
"astrbot_plugin_repeat_after_me": {
"author": "和泉智宏",
"desc": "一个简单的跟读插件,当用户@机器人并发送'跟我说xxx'时,机器人会复读'xxx'中的内容。只支持文字的消息。本插件仅在群聊中生效。参考astrbot_plugin_astrbot_plugin_repetition。",
"repo": "https://github.com/0d00-Ciallo-0721/astrbot_plugin_repeat_after_me"
},
"astrbot_plugin_mirage": {
"author": "大沙北",
"desc": "[仅 qq] 幻影坦克制作",
"repo": "https://github.com/bigshabei/astrbot_plugin_mirage"
},
"astrbot_plugin_ccb_plus": {
"author": "Koikokokokoro",
"repo": "https://github.com/Koikokokokoro/astrbot_plugin_ccb_plus",
"desc": "[仅 aiocqhttp]基于 灵煞 / ccb 的 和QQ群群友发生赛博sex的插件的改进版。",
"tags": ["ccb"]
},
"astrbot-gold-plugin": {
"repo": "https://github.com/RC-CHN/astrbot-gold-plugin",
"author": "RC-CHN",
"desc": "从招商银行 API 接口获取实时金价",
"tags": ["黄金", "理财"]
},
"astrbot_plugin_pixiv_search": {
"repo": "https://github.com/vmoranv/astrbot_plugin_pixiv_search",
"author": "vmoranv",
"desc": "通过 Pixiv API 搜索插画、小说、用户、排行榜等。支持不适宜内容过滤、代理和随机结果。",
"tags": ["pixiv"]
},
"astrbot_plugin_gotify": {
"repo": "https://github.com/BetaCatX/astrbot_plugin_gotify",
"author": "BetaCat",
"desc": "监听 Gotify 服务器的消息,并推送给消息平台",
"tags": ["通知", "主动消息"]
},
"astrbot_plugin_hello-bye": {
"author": "tinker",
"desc": "[仅aiocqhttp] 为用户进群退群发送信息提示",
"repo": "https://github.com/1113-yangfanou/astrbot_plugin_hello-bye"
},
"astrbot_plugin_pexels": {
"author": "xiamuceer-j",
"desc": "Pexels 精选图片插件,用于从 Pexels.com 获取高质量的免费精选图片。",
"repo": "https://github.com/xiamuceer-j/astrbot_plugin_pexels",
"tags": ["Pexels"]
},
"astrbot_plugin_ExchangeRateQuery": {
"author": "MoonShadow1976",
"desc": "基于 ExchangeRate 的实时货币汇率查询插件",
"tags": ["ExchangeRate"],
"repo": "https://github.com/MoonShadow1976/astrbot_plugin_ExchangeRateQuery"
},
"astrbot_plugin_grok_filter": {
"author": "Cheng-MaoMao",
"repo": "https://github.com/Cheng-MaoMao/astrbot_plugin_grok_filter",
"desc": "过滤 grok-3-reasoner 推理模型的思维链内容"
},
"FavorSystem": {
"author": "wuyan1003",
"repo": "https://github.com/wuyan1003/likability-level",
"desc": "给聊天增加了一个好感度值,靠检测 LLM 输出特殊的值来实现,让 LLM 来判断好感度的上升或下降,并且过低的好感度值会被机器人自动拉黑,有管理员身份来自定义好感度值以及拉黑或移除用户(轻微防止被群U玩坏)"
},
"astrbot_plugin_password": {
"author": "Zhalslar",
"desc": "忘记密码了?可用本插件强制修改 AstrBot 面板的用户名、密码(仅管理员可用)",
"repo": "https://github.com/Zhalslar/astrbot_plugin_password",
"tags": ["工具", "密码"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_password"
},
"astrbot_plugin_douyin_bot": {
"author": "drdon1234",
"desc": "[仅QQ] 自动识别抖音视频链接并转换为直链发送",
"repo": "https://github.com/drdon1234/astrbot_plugin_douyin_bot",
"tags": ["抖音", "视频解析"]
},
"meanig": {
"author": "hello七七",
"repo": "https://github.com/ttq7/meanig",
"social_link": "https://github.com/ttq7/meanig",
"desc": "大锅里炖(小游戏等等超 25 个功能!)"
},
"astrbot_plugin_openweaponscase": {
"author": "luooka",
"repo": "https://github.com/luooka/astrbot_plugin_openweaponscase",
"tags": ["CS", "开箱"],
"desc": "CS 武器箱开箱模拟支持大量目前已有的武器箱,可以展示开启物品的图案和对应的磨损"
},
"astrbot_plugin_gallery": {
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_gallery",
"desc": "【本地图库管理器】-帮助用户组建、管理、调用本地图库,可用于表情包收集管理、图床管理、为其他插件提供动态图库等等",
"tags": ["图库"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_gallery"
},
"astrbot_plugin_sensoji_pro": {
"author": "xiamuceer-j",
"repo": "https://github.com/xiamuceer-j/astrbot_plugin_sensoji_pro",
"desc": "这是一个基于 AstrBot 框架的浅草寺抽签-PRO插件,模拟日本浅草寺的抽签功能。用户可以通过发送命令随机抽取签文,获得运势提示。",
"tags": ["抽签"]
},
"astrbot_portainer_plugin": {
"author": "RC-CHN",
"repo": "https://github.com/RC-CHN/astrbot_portainer_plugin",
"desc": "使用astrbot连接portainer实例进行简单的容器管理功能",
"tags": ["容器", "工具"]
},
"astrbot_plugin_goldprice": {
"author": "waterfeet",
"repo": "https://github.com/waterfeet/astrbot_plugin_goldprice",
"desc": "获取实时国内黄金价格",
"tags": ["爬虫"],
"social_link": "https://github.com/waterfeet"
},
"astrbot_plugin_dajiao": {
"author": "灵煞",
"repo": "https://github.com/tenno1174/astrbot_plugin_dajiao",
"desc": "给你生成一次随机打胶结果",
"tags": ["娱乐", "恶搞"]
},
"astrbot_plugin_ccb": {
"author": "灵煞",
"repo": "https://github.com/tenno1174/astrbot_plugin_ccb",
"desc": "[仅aiocqhttp] 和QQ群友CCB",
"tags": ["娱乐", "恶搞"]
},
"astrbot_plugin_showmejm": {
"author": "exneverbur, drdon1234",
"repo": "https://github.com/drdon1234/astrbot_plugin_showmejm",
"desc": "[仅aiocqhttp] 适配 AstrBot 的 JM本子 转 PDF 插件,搜漫画,下漫画,看随机漫画!本人仅做平台移植,原作者:exneverbur,原项目:exneverbur/ShowMeJM",
"tags": ["jm"]
},
"astrbot_plugin_gscore_adapter": {
"author": "KimigaiiWuyi",
"repo": "https://github.com/KimigaiiWuyi/astrbot_plugin_gscore_adapter",
"desc": "用于链接SayuCore(早柚核心)的适配器!适用于多种游戏功能, 原神、星铁、绝区零、鸣朝、雀魂等游戏的最佳工具箱!",
"tags": ["早柚核心", "原神", "鸣潮", "雀魂", "绝区零"],
"social_link": "https://docs.sayu-bot.com/"
},
"astrbot_plugin_xyzw": {
"author": "四郎",
"repo": "https://github.com/XuYingJie-cmd/astrbot_plugin_xyzw",
"desc": "[仅gewechat]主要用于咸鱼之王OCR识别算鱼罐子宝箱功能"
},
"astrbot_plugin_alist": {
"author": "arikacips",
"repo": "https://github.com/yukikazechan/astrbot_plugin_alist",
"desc": "一个用于与 Alist 交互的 AstrBot 插件,提供文件搜索、存储管理等功能。",
"tags": ["alist"]
},
"astrbot_plugin_showme_xjj": {
"author": "drdon1234",
"repo": "https://github.com/drdon1234/astrbot_plugin_showme_xjj",
"desc": "[仅aiocqhttp] 随机小姐姐美图短视频",
"tags": ["短视频", "美图"]
},
"astrbot_plugin_60s_news": {
"author": "Flyinsz",
"repo": "https://github.com/flyinsz/astrbot_plugin_60s_news",
"desc": "[仅gewechat] 60s国内新闻"
},
"astrbot_plugin_hotlist": {
"author": "Tsgof",
"repo": "https://github.com/tsgof/astrbot_plugin_hotlist",
"desc": "获取 B 站热门视频榜单、百度热搜、EPIC 热门榜单"
},
"astrbot_plugin_anime_search": {
"author": "xiamuceer-j",
"repo": "https://github.com/xiamuceer-j/astrbot_plugin_anime_search",
"desc": "次世代动漫检索工具,打破次元壁的追番体验!",
"tags": ["AGE"]
},
"astrbot_plugin_media302-save": {
"author": "Qoo",
"repo": "https://github.com/Qoo-330ml/astrbot_plugin_media302-save",
"desc": "media302 软件的 115 转存插件,可以提交 115 链接给机器人,机器人自动转存到 115 网盘"
},
"astrbot_plugin_jrrp": {
"author": "exusiaiwei",
"repo": "https://github.com/exusiaiwei/astrbot_plugin_jrrp",
"desc": "一个简单的今日人品插件, 可以查询用户的每日人品值和运势。"
},
"astrbot_plugin_zanwo": {
"author": "Futureppo",
"tags": ["名片赞"],
"desc": "[仅QQ] 赞我!(一个名片点赞插件)。可选是否开启白名单。",
"social_link": "https://github.com/Futureppo",
"repo": "https://github.com/Futureppo/astrbot_plugin_zanwo"
},
"astrbot_plugin_ehentai_bot": {
"desc": "适配 AstrBot 的 E-Hentai 画廊转 PDF 插件",
"author": "drdon1234",
"repo": "https://github.com/drdon1234/astrbot_plugin_ehentai_bot",
"tags": ["ehentai"]
},
"astrbot_plugin_reread": {
"desc": "不依赖任何数据库的群聊复读姬,可单独设置文本、图片、表情、At消息的复读阈值,可设置复读概率,可要求消息要来自不同人,可设置违禁词",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_reread",
"tags": ["复读"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_reread"
},
"astrbot_plugin_csbaoyan": {
"desc": "计算机保研院校信息查询、通知订阅插件。数据来源于 GitHub CS-BAOYAN (绿群官方)组织。",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_csbaoyan",
"tags": ["计算机", "保研"]
},
"astrbot_plugin_composting_bucket": {
"desc": "一个用于降低 DeepSeek API 调用费用的 AstrBot 插件",
"author": "Rail1bc",
"repo": "https://github.com/Rail1bc/astrbot_plugin_composting_bucket",
"tags": ["DeepSeek"]
},
"astrbot_plugin_doro_ending": {
"desc": "[QQ]doro互动故事",
"author": "hello七七",
"repo": "https://github.com/ttq7/doro_ending",
"social_link": "https://github.com/ttq7/doro_ending"
},
"astrbot_plugin_get_weather_msg": {
"author": "whzc",
"repo": "https://github.com/whzcc/astrbot_plugin_get_weather_msg",
"desc": "集成了 AI 功能。通过和风天气 API 和阿里云百炼,在检测到聊天消息中出现特定文本时生成一张某地的12小时天气预报图",
"tags": ["天气"],
"social_link": "https://github.com/whzcc"
},
"astrbot_plugin_get_weather_cmd": {
"author": "whzc",
"repo": "https://github.com/whzcc/astrbot_plugin_get_weather_cmd",
"desc": "通过简单的指令查询天气:获取12小时的天气并生成一张图片",
"tags": ["天气"],
"social_link": "https://github.com/whzcc"
},
"astrbot_plugin_appreview": {
"desc": "这是一个可以通过关键词来同意或拒绝进入群聊的插件。",
"author": "qiqi",
"repo": "https://github.com/13686664257cz/astrbot_plugin_appreview",
"tags": ["工具"],
"social_link": "https://qkingwlfw.icu"
},
"astrbot_plugin_archlinux_package_search": {
"desc": "按名称搜索 Arch Linux 官方仓库和 AUR 中的软件包。",
"author": "xmengnet",
"repo": "https://github.com/xmengnet/astrbot_plugin_archlinux_package_search",
"tags": ["arch", "linux"],
"social_link": "https://github.com/xmengnet"
},
"astrbot_plugin_browser": {
"desc": "通过操控bot与浏览器交互(搜索、点击、滑动、滚动、缩放、输入、切换标签页、收藏等等)",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_browser",
"tags": ["浏览器"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_browser"
},
"astrbot_plugin_QQAdmin": {
"desc": "[仅aiocqhttp]QQ群管插件,功能包括:禁言、全体禁言、踢人、拉黑、改群昵称、改头衔、设管理员、设精华、撤回消息等等",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_QQAdmin",
"social_link": "https://github.com/Zhalslar/astrbot_plugin_QQAdmin",
"tags": ["QQ群管"]
},
"astrbot_plugin_liars_bar": {
"desc": "本插件是为 AstrBot 框架开发的游戏插件,实现了一个骗子酒馆",
"author": "xunxi",
"repo": "https://github.com/xunxiing/astrbot_plugin_liars_bar",
"tags": ["游戏"]
},
"astrbot_plugin_SessionFaker": {
"desc": "一个用于AstrBot的QQ消息伪造插件,可以创建包含多个用户发言的伪造转发消息,支持自动获取QQ昵称",
"author": "Jason.Joestar",
"repo": "https://github.com/advent259141/astrbot_plugin_SessionFaker",
"tags": ["消息伪造"]
},
"astrbot_plugin_aishit": {
"desc": "【QQ】AI 全自动造史插件",
"author": "Jason.Joestar",
"tags": ["造史"],
"repo": "https://github.com/advent259141/astrbot_plugin_aishit"
},
"astrbot_plugin_douniuniu": {
"desc": "QQ 群小游戏,培养你的牛牛,然后塔塔开!",
"author": "laozhu",
"repo": "https://github.com/LaoZhuJackson/astrbot_plugin_douniuniu",
"tags": ["游戏"],
"social_link": "https://qm.qq.com/q/F7JTfmpsys"
},
"astrbot_plugin_no_dragon_lord": {
"desc": "anka - 禁止机器人抢龙王! 龙王一定要是人类 ✍️✍️✍️✍️✍️✍️✍️✍️ 😭😭😭😭😭😭😭😭 - 请前往设置白名单(默认全部群启用) - 提供分段回复容错设置",
"author": "anka",
"repo": "https://github.com/anka-afk/astrbot_plugin_no_dragon_lord",
"tags": ["群聊", "发言控制"],
"social_link": "https://space.bilibili.com/26584382"
},
"astrbot_plugin_cs2-box": {
"desc": "简单的文字签到+配套cs2开箱",
"author": "BvzRays",
"repo": "https://github.com/bvzrays/astrbot_plugin_cs2-box",
"tags": ["开箱", "签到"]
},
"httpposter": {
"desc": "HTTP请求工具",
"author": "Wayzinx",
"repo": "https://github.com/Wayzinx/httpposter"
},
"astrbot_plugin_quarksave": {
"desc": "调用quark-auto-save实现自动转存资源到自己的夸克网盘",
"author": "lm379",
"repo": "https://github.com/lm379/astrbot_plugin_quarksave"
},
"astrbot_plugins_ConvetPicture": {
"desc": "[仅aiocqhttp]把QQ里面不可保存的表情转化为可以保存的图片,包括GIF",
"author": "orchidsziyou",
"repo": "https://github.com/orchidsziyou/astrbot_plugins_ConvetPicture",
"tags": ["日常使用"]
},
"astrbot_plugin_Merge_WeMSG": {
"desc": "[仅gewechat]支持微信个人号(gewechat)的合并消息处理和转发",
"author": "zj591227045",
"repo": "https://github.com/zj591227045/astrbot_plugin_Merge_WeMSG"
},
"astrbot_plugin_wsde": {
"desc": "一个发出随机维什戴尔游戏日语语音的AstrBot插件",
"author": "bushikq",
"repo": "https://github.com/zhewang448/astrbot_plugin_wsde",
"tags": ["游戏"]
},
"astrbot_plugin_QQProfile": {
"desc": "[仅aiocqhttp]配置bot的头像、昵称、签名、状态、机型等QQ资料",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_QQProfile",
"tags": ["QQ资料"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_QQProfile"
},
"astrbot_plugin_mcping": {
"desc": "获取 Minecraft 服务器的状态(图片展示版)",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_mcping",
"tags": ["Minecraft"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_mcping"
},
"astrbot_plugin_lorebook_lite": {
"desc": "AstrBot 的 lorebook 插件,支持自定义触发器、变量、逻辑、占位符等。",
"author": "Raven95676",
"repo": "https://github.com/Raven95676/astrbot_plugin_lorebook_lite",
"tags": ["lorebook", "世界书"]
},
"daily_limit": {
"desc": "限制成员每日访问AI次数的插件,支持为不同用户和群组设置不同的调用限制(支持的astrbot最低版本为3.5.1)",
"author": "left666",
"repo": "https://github.com/left666/astrbot_plugin_daily_limit",
"tags": ["工具", "安全"]
},
"JmCli": {
"desc": "JM命令行工具,提供下载和带封面的查询搜索功能,输入jm_help查看用法",
"author": "Gaxiic",
"repo": "https://github.com/gaxiic/JmCli",
"tags": ["JM", "禁漫"]
},
"astrbot_plugin_quote_collocter": {
"desc": "可以自己截图并投稿群友语录,机器人被戳戳时随机爆典",
"author": "浅夏旧入梦",
"repo": "https://github.com/litsum/astrbot_plugin_quote_collocter",
"tags": ["黑历史", "群u爆典"],
"social_link": "https://m.bilibili.com/space/172230783"