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
1167 lines (1167 loc) · 50.6 KB
/
plugins.json
File metadata and controls
1167 lines (1167 loc) · 50.6 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_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_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]配置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 JE/BE 服务器 Motd 图片信息",
"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"
},
"astrbot_plugin_GPT_SoVITS": {
"desc": "对接本地部署的GPT_SoVITS,为astrbot提供文本转语音(TTS)服务",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_GPT_SoVITS",
"tags": ["TTS"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_GPT_SoVITS"
},
"astrbot_plugin_search_pic": {
"desc": "从 https://saucenao.com/ 搜索图片,功能是以图搜图",
"author": "lyjlyjlyjly",
"repo": "https://github.com/lyjlyjlyjly/astrbot_plugin_search_pic",
"tags": ["搜图"]
},
"astrbot_plugin_timtip": {
"desc": "设置定时任务,有(间隔时间)(固定时间)(一次时间),适用于不同群聊,一个群聊可创建多个任务。",
"author": "IGCrystal",
"repo": "https://github.com/IGCrystal/astrbot_plugin_timtip",
"tags": ["工具"]
},
"astrbot_plugin_encipherer": {
"desc": "集合包括Base64、URLencode、Punycode编码加解密工具的astrbot插件",
"author": "Yuki Soffd",
"repo": "https://github.com/Soffd/astrbot_plugin_encipherer",
"tags": ["工具"]
},
"astrbot_plugin_answerbook": {
"desc": "一个简单的答案之书插件,发送 答案之书+问题 即可使用",
"author": "浅夏旧入梦",
"repo": "https://github.com/litsum/astrbot_plugin_answerbook",
"social_link": "https://m.bilibili.com/space/172230783"
},
"astrbot_plugin_timedtask": {
"desc": "一个简单易用的群聊定时任务提醒插件,可以设置每日定时提醒.初次使用请查看readme。",
"author": "Jason.Joestar",
"repo": "https://github.com/advent259141/astrbot_plugin_timedtask",
"tags": ["定时", "通知"]
},
"astrbot_plugin_doro_today": {
"desc": "[仅测试QQ]一个AstrBot插件,从Doro结局图片中随机抽取一张并发送给用户,同时@发送者。",
"author": "Futureppo",
"repo": "https://github.com/Futureppo/astrbot_plugin_doro_today",
"tags": ["Doro", "抽卡"],
"social_link": "https://github.com/Futureppo"
},
"astrbot_plugin_litematic": {
"desc": "用于管理 Minecraft 投影文件,快速查看投影内容等",
"author": "kterna",
"repo": "https://github.com/kterna/astrbot_plugin_litematic",
"tags": ["Minecraft", "游戏"]
},
"AstrBot_plugin_Ewords": {
"desc": "一起来记单词吧喵~",
"author": "IGCrystal",
"repo": "https://github.com/IGCrystal/AstrBot_plugin_Ewords",
"social_link": "https://github.com/IGCrystal/AstrBot_plugin_Ewords",
"tags": ["CET-4", "英语"]
},
"astrbot_plugin_weather_wttr_in": {
"desc": "使用 wttr.in 查询天气(llm工具)",
"author": "xiewoc",
"repo": "https://github.com/xiewoc/astrbot_plugin_weather_wttr_in",
"tags": ["天气", "函数调用"],
"social_link": "https://github.com/xiewoc"
},
"astrbot_plugin_kahunabot": {
"desc": "一款基于 EVEonline API 侧重工业制造支援的综合性 QQ 插件",
"author": "AraragiEro",
"repo": "https://github.com/AraragiEro/astrbot_plugin_kahunabot"
},
"astrbot_plugin_qqpock": {
"desc": "QQ 代戳",
"repo": "https://github.com/791819/astrbot_plugin_qqpock",
"author": "长安某",
"social_link": "https://space.bilibili.com/1032860513"
},
"astrbot_plugin_vv_pic": {
"desc": "发送最符合关键词的 vv 表情包",
"author": "Lonelysky",
"repo": "https://github.com/LonelySky7490/astrbot_plugin_vv_pic"
},
"astrbot_plugin_file_reader": {
"desc": "一个识别文件内容的插件",
"author": "xiewoc",
"repo": "https://github.com/xiewoc/astrbot_plugin_file_reader",
"social_link": "https://github.com/xiewoc"
},
"emoji_merge": {
"desc": "Emoji 融合。例子: 发送 /合成 😰 😨(Emoji 间需加空格)",
"author": "hello七七",
"social_link": "https://github.com/ttq7/emoji-",
"repo": "https://github.com/ttq7/emoji-"
},
"encrypt-and-decrypt": {
"desc": "将明文加密为我要吃饭四个字组成的密文",
"author": "Yuki Soffd",
"repo": "https://github.com/Soffd/encrypt-and-decrypt",
"tags": ["工具"]
},
"astrbot_plugin_CounterStrikle": {
"desc": "Blast-TV 上的 Counter-Strikle 小游戏,图片卡片渲染。",
"author": "w33d",
"tags": ["娱乐"],
"social_link": "https://github.com/Last-emo-boy",
"repo": "https://github.com/Last-emo-boy/astrbot_plugin_CounterStrikle"
},
"astrbot_plugin_gomoku": {
"desc": "五子棋双人对战",
"author": "zhx",
"repo": "https://github.com/zhx8702/astrbot_plugin_gomoku",
"tags": ["游戏"]
},
"astrbot_plugin_membercontrast": {
"desc": " [仅 Gewechat] 实现微信历史群组群员与当前群员对比的功能",
"author": "laopanmemz",
"repo": "https://github.com/laopanmemz/astrbot_plugin_membercontrast",
"social_link": "https://space.bilibili.com/447591776"
},
"astrbot_plugin_mermaid": {
"desc": "使用 LLM 将用户所输入的主题自动生成 Mermaid 模板并生成图片输出",
"author": "kterna",
"repo": "https://github.com/kterna/astrbot_plugin_mermaid",
"tags": ["思维导图", "流程图"]
},
"astrbot_plugin_saris_fish": {
"desc": "赛博钓鱼。需要前置插件: astrbot_plugin_saris_db",
"author": "城城",
"tags": ["游戏", "钓鱼"],
"repo": "https://github.com/chengcheng0325/astrbot_plugin_saris_fish"
},
"astr_plugin_random_image": {
"desc": "从 wenturc 获取随机图片的插件(无 HTML 解析)",
"author": "IGCrystal",
"repo": "https://github.com/IGCrystal/astr_plugin_random_image"
},
"astrbot_plugin_gewe_chatsummary": {
"desc": "[仅 gewechat] 用来对最近消息调用 LLM 进行总结的插件",
"author": "NiceAir",
"repo": "https://github.com/NiceAir/astrbot_plugin_gewe_chatsummary",
"tags": ["工具", "总结"]
},
"astrbot_plugin_idiom": {
"desc": "成语接龙",
"author": "zhx",
"repo": "https://github.com/zhx8702/astrbot_plugin_idiom"
},
"astrbot_plugin_anime_gacha": {
"desc": "每天获取随机番剧,查看今日更新的新番",
"author": "xco2",
"tags": ["新番", "番剧"],
"repo": "https://github.com/xco2/astrbot_plugin_anime_gacha"
},
"astrbot_plugin_nachoneko": {
"desc": "一款获取甘城猫猫图片的插件",
"author": "Rinyin",
"tags": ["甘城なつき"],
"repo": "https://github.com/Rinyin/astrbot_plugin_nachoneko"
},
"astrbot_plugin_jm_search": {
"desc": "JM 漫画 PDF 下载。支持 Linux 和 Win",
"author": "Ryonnoski",
"repo": "https://github.com/Ryonnoski0/astrbot_plugin_jm_search",
"tags": ["JM", "PDF"]
},
"astrbot_plugin_jm_sender": {
"desc": "发送 JM 漫画编号,机器人发送群聊转发消息",
"author": "EnderPPT",
"tags": ["JM"],
"repo": "https://github.com/EnderPPT/astrbot_plugin_jm_sender",
"social_link": "https://github.com/EnderPPT"
},
"jmcomic_downloader": {
"desc": "一个下载 JM 的插件, 添加了一些新功能,原项目名 FateTrial_JMdownloader",
"author": "QiChenSn",
"repo": "https://github.com/QiChenSn/jmcomic_downloader",
"social_link": "https://github.com/QiChenSn",
"tags": ["JM"]
},
"astrbot_plugin_jmcomicsget": {
"desc": "发送 JM 漫画编号,机器人发送漫画 PDF",
"author": "ayachi",
"repo": "https://github.com/Ayachi2225/astrbot_plugin_jmcomicsget",
"tags": ["JM"],
"social_link": "https://github.com/Ayachi2225"
},
"astrbot_plugin_history_day": {
"desc": "查看历史上的某天发生的大事(历史上的今天的增强版)",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_history_day",
"tags": ["历史"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_history_day"
},
"astrbot_plugin_PockAttack": {
"desc": "[仅 aiocqhttp] 在群聊中发送 攻击+@用户 或者其他关键词,机器人会戳一戳该用户",
"author": "LouieKH359",
"repo": "https://github.com/LouieKH359/astrbot_plugin_PockAttack"
},
"astrbot_plugin_memelite": {
"desc": "表情包生成器,制作各种沙雕表情(本地部署,但轻量化)",
"author": "Zhalslar",
"tags": ["表情包"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_memelite",
"repo": "https://github.com/Zhalslar/astrbot_plugin_memelite"
},
"astrbot_plugin_saris_economic": {
"author": "城城",
"repo": "https://github.com/chengcheng0325/astrbot_plugin_saris_economic",
"desc": "群签到插件(可自定义图片)。‼️ 需要安装前置插件 astrbot_plugin_saris_db 👇",
"tags": ["签到", "经济"]
},
"astrbot_plugin_saris_db": {
"author": "城城",
"desc": "astrbot_plugin_saris_economic 插件的前置插件,用于数据持久化。",
"repo": "https://github.com/chengcheng0325/astrbot_plugin_saris_db",
"tags": ["前置"]
},
"headline": {
"author": "egg",
"desc": "60秒国内新闻",
"tags": ["工具"],
"social_link": "https://github.com/bbpn-cn/headline",
"repo": "https://github.com/bbpn-cn/headline"
},
"astrbot_plugin_mai_sgin": {
"author": "Rinyin",
"desc": "简单的舞萌出勤与退勤签到插件",
"tags": ["舞萌", "签到"],
"repo": "https://github.com/Rinyin/astrbot_plugin_mai_sgin"
},
"astrbot_plugin_aiocensor": {
"desc": "AstrBot 综合内容安全+群管插件。文本、图片审核支持所有平台,撤回和禁言仅支持 aiocqhttp",
"author": "Raven95676",
"repo": "https://github.com/Raven95676/astrbot_plugin_aiocensor",
"tags": ["审查", "撤回", "禁言"]
},
"astrbot_plugin_custom_menu": {
"desc": "自定义菜单图片,图片放置在 menu 目录下,支持格式jpg,jpeg,png,gif,bmp。",
"author": "Futureppo",
"repo": "https://github.com/Futureppo/astrbot_plugin_custom_menu"
},
"astrbot_plugin_liferestart": {
"desc": "人生重启模拟器。输入「重开」来重开你的沟槽人生吧!",
"author": "kterna",
"tags": ["游戏"],
"social_link": "https://github.com/kterna/astrbot_plugin_liferestart",
"repo": "https://github.com/kterna/astrbot_plugin_liferestart"
},
"astrbot_plugin_Lolicon": {
"author": "hello七七",
"repo": "https://github.com/ttq7/astrbot_plugin_Lolicon",
"desc": "Lolicon API的随机动漫图片插件",
"tags": ["nsfw"]
},
"astrbot_plugin_Translation": {
"desc": "通过调用百度翻译 API 接口实现翻译文本",
"author": "zengwei",
"social_link": "https://qm.qq.com/q/VNG3bOcGYM",
"tags": ["翻译"],
"repo": "https://github.com/zengweis/astrbot_plugin_Translation"
},
"astrbot_plugin_box": {
"desc": "拉取用户 QQ 主页信息并以图片形式展示",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_box",
"tags": ["功能"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_box"
},
"astrbot-plugin-today-in-history": {
"desc": "查看 历史上的今天 都发生了什么大事",
"author": "Zhalslar",
"tags": ["历史"],
"social_link": "https://github.com/Zhalslar/astrbot_plugin_yuafeng_today_in_history",
"repo": "https://github.com/Zhalslar/astrbot_plugin_yuafeng_today_in_history"
},
"astrbot_plugin_yuafeng": {
"desc": "对接枫林API提供的接口,为astrbot提供丰富多彩的功能,如随机发短视频、图片、音频、文案,翻译文本、查ip等等",
"author": "Zhalslar",
"tags": ["枫林API"],
"repo": "https://github.com/Zhalslar/astrbot_plugin_yuafeng",
"social_link": "https://github.com/Zhalslar/astrbot_plugin_yuafeng"
},
"astrbot_plugin_relationship": {
"desc": "[仅 aiocqhttp]查看 QQ 加的所有好友、群聊的信息",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_relationship",
"social_link": "https://github.com/Zhalslar/astrbot_plugin_relationship",
"tags": ["实用工具"]
},
"astrbot_plugin_pokecheck": {
"desc": "[仅QQ可用]一个检测“戳”关键词的插件",
"author": "huanyan434",
"repo": "https://github.com/huanyan434/astrbot_plugin_pokecheck"
},
"astrbot_plugin_MultiAI_PollPad": {
"desc": "轮询调用配置的大语言模型输出多个结果。同时将结果拷贝至在线文本编辑器,以便用户复制。需额外安装依赖,见帮助",
"repo": "https://github.com/Ynkcc/astrbot_plugin_MultiAI_PollPad",
"author": "Ynkcc"
},
"astrbot_plugin_push_lite": {
"author": "Raven95676",
"desc": "基于 Webhook 的轻量级推送插件(通过 RESTful 接口)。理论支持除 QQ官方API 外的所有平台,已测试 Telegram、QQ、微信、飞书。",
"repo": "https://github.com/Raven95676/astrbot_plugin_push_lite",
"tags": ["消息推送"]
},
"astrbot_plugin_hello77": {
"author": "hello七七",
"desc": "支持10+热门游戏的关键词触发回复,当用户消息中包含指定游戏名称时,机器人将随机回复对应游戏的鬼畜语录",
"tags": ["梗"],
"repo": "https://github.com/ttq7/astrbot_plugin_hello77"
},
"astrbot_plugin_anti_withdrawal": {
"desc": "[仅支持微信] 防撤回插件,目前只支持微信私聊群聊的文本消息,将撤回的消息记录并发送给设定的人",
"author": "NiceAir",
"tags": ["工具", "防撤回"],
"repo": "https://github.com/NiceAir/astrbot_plugin_anti_withdrawal"
},
"astrbot_plugin_Getcwm": {
"desc": "一个刺猬猫小说数据获取与画图插件,/Getcwm help 查看帮助。",
"author": "lishining",
"repo": "https://github.com/Li-shi-ling/astrbot_plugin_Getcwm",
"tags": ["刺猬猫"]
},
"astrbot_plugin_majsoul-master": {
"desc": "一个雀魂多功能插件",
"author": "kterna",
"repo": "https://github.com/kterna/astrbot_plugin_majsoul-master",
"tags": ["雀魂", "游戏"]
},
"astrbot_plugin_wordle_2_msg": {
"desc": "Wordle 猜单词游戏。基于 Raven95676 的版本加入了一些新功能。",
"author": "Raven95676, whzc",
"repo": "https://github.com/whzcc/astrbot_plugin_wordle_2_msg",
"tags": ["wordle", "游戏", "猜单词"]
},
"astrbot_plugin_wordle_2_cmd": {
"desc": "Astrbot Wordle 游戏插件(响应指令内容版),优化和加入了许多新功能",
"repo": "https://github.com/whzcc/astrbot_plugin_wordle_2_cmd",
"author": "Raven95676, whzc",
"tags": ["wordle", "游戏", "猜单词"]
},
"astrbot_plugin_wordle": {
"desc": "AstrBot Wordle 猜单词游戏,支持指定位数",
"author": "Raven95676",
"repo": "https://github.com/Raven95676/astrbot_plugin_wordle",
"tags": ["游戏", "wordle"]
},
"astrbot_plugin_server": {
"desc": "可视化服务器状态卡片。 /status 或 /状态查询 查看。",
"author": "YANFD&Meguminlove",
"social_link": "https://github.com/yanfd",
"repo": "https://github.com/yanfd/astrbot_plugin_server"
},
"astrbot_plugin_videos_analysis": {
"desc": "聚合视频分享链接解析(仅测试过napcat)",
"author": "喵喵",
"repo": "https://github.com/miaoxutao123/astrbot_plugin_videos_analysis",
"tags": ["抖音", "bilibili"],
"social_link": "https://github.com/miaoxutao123/"
},
"astrbot_plugin_sjzb": {
"desc": "随机生成《绝地潜兵2》游戏中一组 4 个战备配置",
"author": "灵煞",
"tags": ["游戏", "绝地潜兵2"],
"repo": "https://github.com/tenno1174/astrbot_plugin_sjzb"
},
"astrbot_plugin_emoji": {
"desc": "基于达莉娅综合群娱插件的表情包制作插件,仅保留了@其他群员制作表情包的部分。由桑帛云API提供表情包制作。",
"author": "KurisuRee7",
"repo": "https://github.com/KurisuRee7/astrbot_plugin_emoji"
},
"astrbot_plugin_videosummary": {
"desc": "使用 bibigpt 实现视频总结",
"author": "kterna",
"repo": "https://github.com/kterna/astrbot_plugin_videosummary"
},
"astrbot_plugin_bilibiliParse": {
"desc": "用于解析哔哩哔哩视频,并以图片的形式发送给用户",
"author": "功德无量",
"repo": "https://github.com/7Hello12/astrbot_plugin_bilibiliParse"
},
"astrbot_plugin_picture_manager": {
"desc": "图片管理插件,允许用户通过自定义触发指令从API或直接URL获取图片。",
"author": "大沙北",
"repo": "https://github.com/bigshabei/astrbot_plugin_picture_manager"
},
"astrbot_plugin_InitiativeDialogue": {
"desc": "使bot在用户长时间未发送消息时主动与用户对话的插件",
"author": "Jason",
"repo": "https://github.com/advent259141/astrbot_plugin_InitiativeDialogue",
"tags": ["主动对话"]
},
"astrbot_plugin_sensoji": {
"desc": "这是一个模拟日本浅草寺抽签功能的插件。用户可以通过发送 /抽签 命令随机抽取一个签文,获取运势提示。签文包含吉凶结果(如“大吉”、“凶”等)以及对应的运势描述。",
"author": "Shouugou",
"repo": "https://github.com/Shouugou/astrbot_plugin_sensoji",
"tags": ["抽签", "运势", "浅草寺", "趣味"]
},
"astrbot_plugin_daily_news": {
"desc": "[仅 aiocqhttp] anka - 每日60s新闻推送插件, 请先设置推送目标和时间, 详情见github页面!",
"author": "anka",
"repo": "https://github.com/anka-afk/astrbot_plugin_daily_news",
"tags": ["功能", "推送"]
},
"astrbot_plugin_gemini_exp": {
"desc": "让你在 AstrBot 调用 Gemini2.0-flash-exp 来生成图片或者 P 图。Gemini2.0-flash-exp为原生多模态模型,其既是语言模型,也是生图模型,因此能够对图像使用简单的自然语言命令进行处理。",
"author": "Elen123bot",
"repo": "https://github.com/Elen123bot/astrbot_plugin_gemini_exp",
"social_link": "https://x.com/Alens454635"
},
"astrbot_plugin_qwq_filter": {
"desc": "QwQ 模型思考内容过滤工具",
"author": "beat4ocean",
"tags": ["qwq", "思考过滤"],
"repo": "https://github.com/beat4ocean/astrbot_plugin_qwq_filter"
},
"astrbot_plugin_chatsummary": {
"desc": "[仅 aiocqhttp] 一个通过拉取历史聊天记录,调用 LLM 大模型接口实现消息总结功能。",
"author": "laopanmemz",
"tags": ["消息总结", "LLM"],
"social_link": "https://space.bilibili.com/447591776",
"repo": "https://github.com/laopanmemz/astrbot_plugin_chatsummary"
},
"astrbot_plugin_bv": {
"desc": "解析群内 https://www.bilibili.com/video/BV号/ 的链接并获取视频数据与视频文件,以合并转发方式发送",
"author": "haliludaxuanfeng",
"repo": "https://github.com/haliludaxuanfeng/astrbot_plugin_bv",
"tags": ["bilibili"]
},
"astrBot_PGR_Dialogue": {
"desc": "检测到部分战双角色的名称(或别称)时,有概率发送一条语音文本",
"author": "KurisuRee7",
"repo": "https://github.com/KurisuRee7/astrBot_PGR_Dialogue"
},
"astrbot_plugin_beautiful_giri": {
"desc": "合集",
"author": "四郎",
"repo": "https://github.com/XuYingJie-cmd/astrbot_plugin_beautiful_giri"
},
"astrbot_plugin_wechat_manager": {
"desc": "[仅 gewechat] 微信关键字好友自动审核、关键字邀请进群",
"author": "diudiu62",
"repo": "https://github.com/diudiu62/astrbot_plugin_wechat_manager"
},
"astrbot_plugin_moyurenpro": {
"desc": "摸鱼人日历,支持自定义时间时区,自定义api,支持立即发送,工作日定时发送。",
"author": "quirrel-zh/DuBwTf",
"repo": "https://github.com/DuBwTf/astrbot_plugin_moyurenpro",
"tags": ["功能", "定时任务"]
},
"astrbot_plugin_image_understanding_Janus-Pro": {
"desc": "为本地模型提供的图片理解补充,使用deepseek-ai/Janus-Pro系列模型",
"author": "xiewoc",
"repo": "https://github.com/xiewoc/astrbot_plugin_image_understanding_Janus-Pro"
},
"astrbot_plugin_CS_5E": {
"desc": "基于5E赛事数据中心的CS赛事数据查询插件,菜单为 /5e_help。",
"author": "Jason.Joestar",
"repo": "https://github.com/advent259141/astrbot_plugin_CS_5E"
},
"astrbot_plugin_mp_sub": {
"desc": "配合 MoviePilot 订阅影片",
"author": "NEST",
"repo": "https://github.com/4Nest/astrbot_plugin_mp_sub"
},
"astrbot_plugin_nofap": {
"desc": "一个用于戒 🦌 记录打卡和查看群内戒 🦌 榜的插件",
"author": "aoz",
"tags": ["功能"],
"repo": "https://github.com/Aozaky/astrbot_plugin_nofap"
},
"astrbot_plugin_niuniuplus": {
"desc": "原牛牛插件的升级版,卸载原插件并安装即可,数据通用",
"author": "Jason.Joestar",
"repo": "https://github.com/advent259141/astrbot_plugin_niuniuplus"
},
"astrbot_plugin_random_vtb": {
"desc": "随机推送正在直播的管人直播间",
"author": "Sasaki",
"repo": "https://github.com/Wave233Lee/astrbot_plugin_random_vtb",
"tag": ["娱乐"],
"social_link": "https://space.bilibili.com/11874232"
},
"astrbot_plugin_server_status": {
"desc": "实时监控服务器资源使用情况,支持多平台运行,提供清晰的系统状态报告。",
"author": "腾讯元宝 & Meguminlove",
"repo": "https://github.com/Meguminlove/astrbot_plugin_server_status"
},
"astrbot_plugin_guaguale": {
"desc": "刮刮乐小游戏插件,使用[/刮刮乐帮助]查看指令",
"author": "waterfeet",
"repo": "https://github.com/waterfeet/astrbot_plugin_guaguale"
},
"TRPGdice": {
"desc": "为跑团玩家设计的仿Dice!骰子插件",
"author": "shiroling",
"repo": "https://github.com/WhiteEurya/Astrbot_plugin_TRPGdice"
},
"astrbot_plugin_qltask": {
"desc": "青龙面板任务管理插件",
"author": "ZYDMYHZ",
"repo": "https://github.com/ZYDMYHZ/astrbot_plugin_qltask"
},
"astrbot_plugin_SpectreCore": {
"desc": "使大模型更好的主动回复群聊中的消息,带来生动和沉浸的群聊对话体验",
"author": "23q3",
"social_link": "https://space.bilibili.com/396943350",
"tags": ["伪人", "主动回复"],
"repo": "https://github.com/23q3/astrbot_plugin_SpectreCore"
},
"astrbot_plugin_steamshot": {
"desc": "自动检测对话中出现的steam商店页面链接,并返回对应页面的网页截图和摘要信息。",
"author": "inori-3333",
"repo": "https://github.com/inori-3333/astrbot_plugin_steamshot",
"social_link": "https://steamcommunity.com/id/inori_333/",
"tags": ["功能", "游戏", "数据查询", "图片"]
},
"astrbot_plugin_GGAC_Messenger": {
"desc": "anka - GGAC 作品更新推送插件 - 自动监控并推送 GGAC 平台精选作品的更新! 附赠一套 GGAC 网站完整 api! 还有随机抽取 GGAC 内容功能, 详情见github页面!",
"author": "anka",
"repo": "https://github.com/anka-afk/astrbot_plugin_ggac",
"tags": ["功能", "推送"]
},
"astrbot_plugin_github_cards": {
"desc": "自动识别 GitHub 仓库链接并发送卡片图片,支持订阅仓库的 Issue 和 PR 更新,查询 Issue 和 PR 详情",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_github_cards",
"tags": ["功能"]
},
"astrbot_plugin_hltv": {
"desc": "这是基于 HLTV 网站数据的 CS 赛事查询插件",
"author": "Jason",
"repo": "https://github.com/advent259141/astrbot_plugin_hltv",
"tags": ["功能", "游戏", "数据查询"]
},
"astrbot_plugin_moyuren": {
"desc": "每天定时推送摸鱼人日历",
"author": "quirrel-zh",
"repo": "https://github.com/Quirrel-zh/astrbot_plugin_moyuren",
"tags": ["功能", "定时任务"]
},
"astrbot_sowing_discord": {
"desc": "[仅限 aiocqhttp 适配器] anka - 自动搬史插件, 1.加入喜欢发史的群聊 2.设置搬史来源 3.设置搬史目标 4.开始全自动搬史!",
"author": "anka",
"repo": "https://github.com/anka-afk/astrbot_sowing_discord",
"tags": ["功能", "搬史"]
},
"astrbot_plugin_superpoke": {
"desc": "超级戳一戳根据,让戳一戳能够调用其他插件指令",
"author": "waterfeet",
"repo": "https://github.com/waterfeet/astrbot_plugin_superpoke"
},
"astrbot_plugin_humanlike": {
"desc": "anka - 让ai更像真人 - 学会沉默",
"author": "anka",
"repo": "https://github.com/anka-afk/astrbot_plugin_humanlike"
},
"astrbot_plugin_blue_archive": {
"desc": "蔚蓝档案攻略查询 - 指令格式:攻略查询 <攻略名称>",
"author": "anka",
"repo": "https://github.com/anka-afk/astrbot_plugin_blue_archive"
},
"astrbot_plugin_meme_manager": {
"desc": "Astrbot表情包管理器3.0版本已发布! 提供便捷的 WebUI 管理界面(/表情管理 开启管理后台) , 所有 prompt 会根据修改的表情包文件夹目录自动维护,无需手动添加!可以控制每次发送的表情数量和频率(进入设置配置一次发送最大数量与发送概率) 更多信息与功能预览请前往仓库页面, 使用/plugin meme_manager查看所有指令",
"author": "anka",
"repo": "https://github.com/anka-afk/astrbot_plugin_meme_manager",
"tags": ["功能", "meme", "webui", "图床"]
},
"mccloud_command": {
"desc": "用于修改插件命令的工具,支持备份和恢复,仅限管理员使用。/cmd 查看帮助",
"author": "MC云-小馒头",
"repo": "https://github.com/MCYUNIDC/mccloud_command"
},
"astrbot_plugin_music-search": {
"desc": "让你的bot能够搜索歌曲并点歌的插件",
"author": "榛子小猹猹",
"repo": "https://github.com/Hazellol/astrbot_plugin_music-search"
},
"astrbot_plugin_wake_enhance": {
"desc": "【唤醒增强】让 AstrBot 支持通过正则匹配唤醒机器人、唤醒后持续与机器人对话交互。",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_wake_enhance"
},
"astrbot_plugin_safebooru": {
"desc": "/safebooru + tag = 好看的图,",
"author": "w33d",
"repo": "https://github.com/Last-emo-boy/astrbot_plugin_safebooru"
},
"astrbot_plugin_uptime": {
"desc": "Uptime bot. 监测所订阅的站点是否可正常访问,异常时发出警报。",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_uptime"
},
"astrbot_plugin_flux": {
"desc": "硅基流动文生图-支持OpenAI标准的格式接入,支持Flux.1-dev模型",
"author": "七七七七",
"repo": "https://github.com/18005575/astrbot_plugin_flux"
},
"mccloud_meme_sender": {
"desc": "这是一个表情包发送插件,可以识别AI回复中的表情符号并发送对应的表情包。记得看帮助需要配置人格 地址:https://github.com/MCYUNIDC/mccloud_meme_sender",
"author": "MC云-小馒头",
"repo": "https://github.com/MCYUNIDC/mccloud_meme_sender"
},
"sauceno_search": {
"desc": "Sauceno搜图插件,使用/搜图 指令搜图",
"author": "榛子小猹猹",
"repo": "https://github.com/Hazellol/astrbot_plugin_sauceno"
},
"lottery": {
"desc": "抓阄插件,使用/抓阄 指令抓阄,教程https://github.com/MashiroSaber03/lottery",
"author": "ましろSaber",
"repo": "https://github.com/MashiroSaber03/lottery"
},
"genshinimpact": {
"desc": "原神关键词检测插件,检测到`原神`关键词自动发送一条圣经",
"author": "ましろSaber",
"repo": "https://github.com/MashiroSaber03/genshinimpact"
},
"astrbot_plugin_blacklist": {
"desc": "黑名单插件,禁止用户和 AstrBot 交互,适用于 aiocqhttp, gewechat",
"author": "水蜜桃",
"repo": "https://github.com/dahetaoa/AstrBot-ban-Plugins"
},
"mccloud_zhipu_img": {
"desc": "使用智谱AI生成图片。使用 /aimg <提示词> [大小] 生成图片。需要配置哦!",
"author": "MC云-小馒头",
"repo": "https://github.com/MCYUNIDC/mccloud_zhipu_img"
},
"mccloud_img": {
"desc": "一个从API获取图片的插件,支持自定义API地址。使用 /img 获取图片。配置可填https://api.lolicon.app/setu/v2 *图二次元的获取。 ",
"author": "MC云-小馒头",
"repo": "https://github.com/MCYUNIDC/mccloud_img"
},
"r1-filter": {
"desc": "过滤 DeepSeek R1 推理模型的思维链内容 [版本要求 >= v3.4.17]",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_r1_filter"
},
"mccloud_deepseek": {
"desc": "可选择是否过滤推理模型的思考内容,仅支持MC云API。购买MC云服务器云电脑可享受免费API不限制支持deepseek-r1 v3模型。https://idc.stay33.cn/ [版本要求 >= v3.4.17]",
"author": "MC云-小馒头",
"repo": "https://github.com/MCYUNIDC/mccloud_deepseek"
},
"mccloud_site": {
"desc": "一个集成了网站测试工具的插件,支持网站连通性测试、速度测试、域名查询、端口扫描和网站截图功能。使用/sitehelp查看帮助。",
"author": "MC云-小馒头",
"repo": "https://github.com/MCYUNIDC/mccloud_site"
},
"astrbot_websitetool": {
"desc": "mccloud_site的修复版,解决了QQ识别不到的问题。使用说明与mccloud_site一样",
"author": "wxgl",
"repo": "https://github.com/wxgl/astrbot_websitetool"
},
"ai_reminder": {
"desc": "智能定时任务,可以看做是高级提醒,可以让ai在特定时间执行特定任务,注意禁用原提醒插件",
"author": "kjqwdw",
"repo": "https://github.com/kjqwer/astrbot_plugin_sy"
},
"ai_memory": {
"desc": "一个AI记忆管理插件,可以让ai记住重要的事,记忆读取是ai自己调用的,有时候呆呆的ai不会自己调用,可以多问几次或者人格加上特定提示词,输入 /mem_help 查看记忆管理帮助",
"author": "kjqwdw",
"repo": "https://github.com/kjqwer/strbot_plugin_play_sy"
},
"huanju": {
"desc": "欢乐21点游戏插件。输入 /hj help 查看关键词回复帮助。",
"author": "kjqwdw",
"repo": "https://github.com/kjqwer/astrbot_plugin_game_sy"
},
"astrbot_plugin_texas_holdem_poker": {
"desc": "简单的德州扑克,/poker就可以开玩了",
"author": "w33d",
"repo": "https://github.com/Last-emo-boy/astrbot_plugin_texas_holdem_poker"
},
"astrbot_plugin_holdem_poker": {
"desc": "修改自 w33d 的德州扑克。原插件仅支持微信,现支持 QQ 群。此外增加了每轮下注上限金额,为小盲注的10倍,可自行调整或删去",
"author": "SamsaraMBJC",
"repo": "https://github.com/SamsaraMBJC/astrbot_plugin_holdem_poker"
},
"astrbot_plugin_essential": {
"desc": "随机动漫图片、以图搜番、Minecraft服务器、一言、今天吃什么、群早晚安记录、EPIC喜加一。帮助:https://github.com/Soulter/astrbot_plugin_essential",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_essential"
},
"astrbot_plugin_rss": {
"desc": "支持通过 RSSHub 路由和直接 URL 订阅 RSS 源,并定时获取最新的 RSS 内容,如推特、B站、油管、博客等任何支持 RSS 2.0 的网站。",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_rss"
},
"astrbot_plugin_bilibili": {
"desc": "哔哩哔哩动态推送、视频信息、直播间信息查询插件",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_bilibili"
},
"astrbot_plugin_leetcode": {
"desc": "leetcode 每日一题、随机题目。",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_leetcode"
},
"astrbot_plugin_english": {
"desc": "A proto of learning English on Astrbot.",
"author": "Soulter",
"repo": "https://github.com/Soulter/astrbot_plugin_english"
},
"astrbot_plugin_dice": {
"desc": "一个骰子插件,支持设置面数和检定阈值,输入/dicehelp获取帮助",
"author": "scwunai",
"repo": "https://github.com/scwunai/Astrbot_Plugin_Dice_scwunai"
},
"astrbot_plugin_haos": {
"desc": "这是简单的请求HAOSApi以获取HomeAssistant内注册的温湿度传感器数据的插件。输入/haoshelp获取帮助。请先根据帮助描述完成配置文件的配置填写后使用",
"author": "scwunai",
"repo": "https://github.com/scwunai/Astrbot_Plugin_HAOS_scwunai"
},
"astrbot_plugin_wol": {
"desc": "局域网 WOL 唤醒插件,/wolhelp 查看帮助",
"author": "Camreishi",
"repo": "https://github.com/Camreishi/astrbot_plugin_wol"
},
"astrbot_plugin_SDGen": {
"desc": "Stable Diffusion WebUI图片生成插件,/sd help 查看帮助",
"author": "buding",
"repo": "https://github.com/zouyonghe/astrbot_plugin_SDGen"
},
"astrbot_plugin_sysinfo": {
"desc": "获取当前系统状态",
"author": "mika",
"repo": "https://github.com/AstrBot-Devs/astrbot_plugin_sysinfo"
},
"astrbot_plugin_weather": {
"desc": "一个基于心知天气免费API的天气查询插件",
"author": "w33d",
"repo": "https://github.com/Last-emo-boy/astrbot_plugin_weather"
},
"astrbot_plugin_cr4zyThursday": {
"desc": "疯狂星期四!",
"author": "w33d",
"repo": "https://github.com/Last-emo-boy/astrbot_plugin_cr4zyThursday",
"pinned": true
},
"astrbot_plugin_buckshot_roulette": {
"desc": "一个好玩的简单恶魔轮盘",
"author": "w33d",
"repo": "https://github.com/Last-emo-boy/astrbot_plugin_buckshot_roulette"
},
"astrbot_plugin_github_tracker": {
"desc": "一个定期查询跟踪repo的小工具",
"author": "w33d",
"repo": "https://github.com/Last-emo-boy/astrbot_plugin_github_tracker"
},
"astrbot_plugin_exchange_rate": {
"desc": "一个查询汇率的工具",
"author": "w33d",
"repo": "https://github.com/Last-emo-boy/astrbot_plugin_exchange_rate"
},
"astrbot_plugin_cloudmusic": {
"desc": "网易云音乐搜索、热评。并且支持了大模型函数调用工具。请说 `搜下春日影这首歌`。其他指令请看帮助",
"author": "ave_mujica-saki",
"repo": "https://github.com/AstrBot-Devs/astrbot_plugin_cloudmusic"
},
"qq_official_url_cleaner": {
"desc": "为 QQ 官方 API 修改发送消息的链接,可改善消息被屏蔽的现象",
"author": "ave_mujica-saki",
"repo": "https://github.com/AstrBot-Devs/qq_official_url_cleaner"
},
"astrbot_plugin_VITS": {
"desc": "硅基流动api语音合成",
"author": "第九位魔神",
"repo": "https://github.com/cyber-moshen/astrbot_plugin_VITS"
},
"astrbot_plugin_memes": {
"desc": "这是能让机器人随机发表情包的插件,可手动添加表情包,表情包路径在AstrBot/data/meme/下",
"author": "LunarMeal",
"repo": "https://github.com/LunarMeal/astrbot_plugin_memes"
},
"astrbot_plugin_ignore_at": {
"desc": "让机器人无视QQ的@全体成员,以及提供一个@唤醒机器人的开关",
"author": "Cl_Fu",
"repo": "https://github.com/clfpwp/astrbot_plugin_ignore_at"
},
"astrbot_plugin_error_filter": {
"desc": "选择是否过滤机器人的错误回复",
"author": "LuffyLSX",
"repo": "https://github.com/LuffyLSX/astrbot_plugin_error_filter"
},
"FateTrial_JMdownloader": {
"desc": "一个下载JM漫画的插件,请勿用于违法用途",
"author": "FateTrial",
"repo": "https://github.com/FateTrial/FateTrial_JMdownloader"
},
"astrbot_plugin_lolicon_image-master": {
"desc": "涩图插件2.0基于,原作者rikkamiss插件进行修改,使机器人可以发送R18图片",
"author": "FateTrial",
"repo": "https://github.com/FateTrial/astrbot_plugin_lolicon_image-master"
},
"astrbot_plugin_niuniu": {
"desc": "牛牛插件,一个污污的小游戏插件,默认关闭,发送牛牛菜单获取帮助",
"author": "长安某",
"repo": "https://github.com/zgojin/astrbot_plugin_niuniu"
},
"astrbot_plugin_mohoyo_cos": {
"desc": "获取米游社社区cos插件,支持LLM自识别",
"author": "Cvandia",
"repo": "https://github.com/Cvandia/astrbot_plugin_mohoyo_cos"
},
"astrbot_plugin_customT2I": {
"desc": "用于在 astrbot 中切换和管理自定义模板",
"author": "buding",
"repo": "https://github.com/zouyonghe/astrbot_plugin_customT2I"
},
"astrbot_plugin_anti_porn": {
"desc": "用于astrbot的反瑟瑟插件",
"author": "buding",
"repo": "https://github.com/zouyonghe/astrbot_plugin_anti_porn"
},
"FateTrial_zhipu_video": {
"desc": "智谱AI视频生成插件",
"author": "FateTrial",
"repo": "https://github.com/FateTrial/FateTrial_zhipu_video"
},
"astrbot_plugin_tagger": {
"desc": "识别图片并生成AI绘画tag标签",
"author": "yudengghost",
"repo": "https://github.com/yudengghost/astrbot_plugin_tagger"
},
"astrbot_plugin_RG": {
"desc": "俄罗斯轮盘,群小游戏插件,通过装填[可带参数]、射爆,等指令控制,具体可看说明文档",
"author": "长安某",
"repo": "https://github.com/zgojin/astrbot_plugin_RG"
},
"astrbot_plugin_token_calculator": {
"desc": "计算并显示每次对话消耗的token,部分provider可用",
"author": "rinen0721",
"repo": "https://github.com/rinen0721/astrbot_plugin_token_calculator"
},
"astrbot_plugin_qna": {
"desc": "自动识别群聊提问并解答",
"author": "buding",
"repo": "https://github.com/zouyonghe/astrbot_plugin_qna"
},
"astrbot_plugin_waiter": {
"desc": "用于开发者的对话管理插件",
"author": "Cvandia",
"repo": "https://github.com/Cvandia/astrbot_plugin_waiter"
},