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
1743 lines (1743 loc) · 76.6 KB
/
plugins.json
File metadata and controls
1743 lines (1743 loc) · 76.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_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"
},
"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",
"pinned": true
},
"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"
},
"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"
},
"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": ["翻译"],