This repository was archived by the owner on Dec 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin_cache_original.json
More file actions
8844 lines (8844 loc) · 298 KB
/
Copy pathplugin_cache_original.json
File metadata and controls
8844 lines (8844 loc) · 298 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_e2b_sandbox": {
"display_name": "AstrBot E2B 云沙箱插件",
"desc": "使用 E2B 云沙箱安全执行 Python 代码,支持通过 LLM 自然语言调用",
"author": "sl251",
"repo": "https://github.com/sl251/astrbot_plugin_e2b_sandbox",
"tags": [
"e2b",
"Python 执行器",
"沙箱",
"LLM 工具"
],
"social_link": "https://github.com/sl251",
"stars": 3,
"version": "1.0.3",
"updated_at": "2025-12-08T14:51:06Z",
"logo": "https://raw.githubusercontent.com/sl251/astrbot_plugin_e2b_sandbox/main/logo.png"
},
"astrbot_plugin_disaster_warning": {
"display_name": "灾害预警",
"desc": "多数据源灾害预警插件,支持地震、海啸、气象预警实时推送。集成中国地震台网、中国气象局气象预警、台湾中央气象署、日本气象厅、USGS、Global Quake 等多个数据源。",
"author": "DBJD-CR",
"repo": "https://github.com/DBJD-CR/astrbot_plugin_disaster_warning",
"tags": [
"灾害预警",
"EEW",
"防灾减灾",
"气象预警",
"海啸预警"
],
"social_link": "https://github.com/DBJD-CR",
"stars": 5,
"version": "v1.0.0",
"updated_at": "2025-12-08T14:53:52Z",
"logo": "https://raw.githubusercontent.com/DBJD-CR/astrbot_plugin_disaster_warning/main/logo.png"
},
"astrbot_plugin_1panel": {
"name": "",
"display_name": "1Panel 服务器管理",
"desc": "通过聊天管理 1Panel 面板,支持查看系统状态、容器管理、定时任务等",
"author": "Haitun",
"repo": "https://github.com/onniemi/astrbot_plugin_1panel",
"tags": [],
"stars": 0,
"version": "v1.0.1",
"updated_at": "2025-12-05T16:28:29Z"
},
"astrbot_plugin_gif_vision_helper": {
"display_name": "GIF Vision Helper",
"desc": "将QQ GIF动图拆成多帧静态图,让多模态模型真正看懂动图",
"author": "YanL",
"repo": "https://github.com/Yanlyn/astrbot_plugin_gif_vision_helper",
"tags": [
"优化"
],
"stars": 0,
"version": "0.6.1",
"updated_at": "2025-12-03T06:11:56Z"
},
"astrbot_plugin_gitee_aiimg": {
"display_name": "GiteeAI 图像生成插件",
"desc": "可以使用 aiimg 生成图片或通过自然语言让 LLM 生成,让 bot 自拍给你看。",
"author": "木有知",
"repo": "https://github.com/muyouzhi6/astrbot_plugin_gitee_aiimg",
"tags": [
"画图"
],
"social_link": "https://github.com/muyouzhi6",
"stars": 12,
"version": "v1.1.1",
"updated_at": "2025-12-08T15:15:00Z",
"logo": "https://raw.githubusercontent.com/muyouzhi6/astrbot_plugin_gitee_aiimg/main/logo.png"
},
"astrbot_plugin_bananic_ninjutsu": {
"display_name": "香蕉忍法帖",
"desc": "适配 Napcat 的 AstrBot 插件,用于 🍌(nano banana),先进的变量 & 参数系统",
"author": "bylkuse",
"repo": "https://github.com/bylkuse/astrbot_plugin_bananic_ninjutsu",
"tags": [],
"stars": 1,
"version": "v0.1.2",
"updated_at": "2025-12-08T06:00:40Z",
"logo": "https://raw.githubusercontent.com/bylkuse/astrbot_plugin_bananic_ninjutsu/master/logo.png"
},
"astrbot_plugin_ASCII": {
"display_name": "图片转 ASCII",
"desc": "引用图片,插件将使用设定的字符内容绘制图片",
"author": "Mlies-mik",
"repo": "https://github.com/Mlies-mik/astrbot_ASCII_se",
"tags": [
"图片转换"
],
"stars": 0,
"version": "1.4.2",
"updated_at": "2025-12-07T06:12:37Z"
},
"astrbot_plugin_smart_translator": {
"display_name": "Smart Translator",
"desc": "基于 LLM 的自然语言翻译插件,支持 50+ 语言、二次翻译和多种输出格式",
"author": "YanL",
"repo": "https://github.com/Yanlyn/astrbot_plugin_smart_translator",
"tags": [
"翻译"
],
"stars": 0,
"version": "0.1.0",
"updated_at": "2025-12-04T12:34:24Z"
},
"undercover": {
"desc": "一个谁是卧底游戏插件,支持多人在线游戏。",
"author": "BB0813",
"repo": "https://github.com/BB0813/astrbot_plugin_undercover",
"tags": [
"Game"
],
"social_link": "https://qm.qq.com/q/d4lwUp9ap4",
"stars": 1,
"version": "V1.0.1",
"updated_at": "2025-12-07T07:13:47Z"
},
"astrbot_plugin_AIpaper": {
"name": "",
"display_name": "AI 论文推送",
"desc": "每日定时向指定群聊推送最新随机 AI 领域论文图片与讲解",
"author": "落叶凌小秋",
"repo": "https://github.com/MaybePass/astrbot_plugin_AIpaper",
"tags": [
"AI",
"论文",
"推送"
],
"stars": 1,
"version": "v1.4.2",
"updated_at": "2025-12-06T04:36:18Z"
},
"astrbot_plugin_comfyui_pro": {
"display_name": "高级 ComfyUI 绘图插件",
"desc": "AstrBot 的高级 ComfyUI 连接插件,支持多工作流热切换、LLM 智能绘图、自定义系统提示词及敏感词过滤。",
"author": "lumingya",
"repo": "https://github.com/lumingya/astrbot_plugin_comfyui_pro",
"tags": [
"画图",
"comfyui"
],
"stars": 3,
"version": "1.2.1",
"updated_at": "2025-12-07T18:18:16Z"
},
"astrbot_plugin_customized_active_reply_prompt": {
"display_name": "自定义主动回复提示词",
"desc": "AstrBot 框架群聊上下文感知中,主动回复提示词默认不可修改且为英文。本插件可由用户自定义群聊主动回复提示词。",
"author": "zz6zz666",
"repo": "https://github.com/zz6zz666/astrbot_plugin_customized_active_reply_prompt",
"tags": [
"1.0.0"
],
"stars": 0,
"version": "v1.0.0",
"updated_at": "2025-12-02T06:34:39Z"
},
"astrbot_plugin_markdown_killer": {
"name": "",
"display_name": "Markdown 杀手",
"desc": "移除 LLM 输出中的 Markdown 格式",
"author": "AlanBacker",
"repo": "https://github.com/AlanBacker/astrbot_plugin_markdown_killer",
"tags": [
"Markdown",
"格式"
],
"social_link": "https://space.bilibili.com/702922307",
"stars": 2,
"version": "0.0.4",
"updated_at": "2025-12-06T11:23:19Z"
},
"astrbot_plugin_fox_status": {
"display_name": "Fox 状态监控",
"desc": "一个用于获取 AstrBot 服务器状态的插件。",
"author": "GoodBoyboy",
"repo": "https://github.com/GoodBoyboy666/astrbot_plugin_fox_status",
"tags": [
"工具",
"状态",
"服务器"
],
"social_link": "https://github.com/GoodBoyboy666",
"stars": 0,
"version": "v1.0.1",
"updated_at": "2025-12-01T10:01:47Z"
},
"astrbot_plugin_ojs": {
"display_name": "ojisan",
"desc": "在特定群聊某人发言后概率触发列表内的回复。",
"author": "Tedi-Dino",
"repo": "https://github.com/Tedi-Dino/astrbot_plugin_ojs",
"tags": [],
"stars": 0,
"version": "v0.1",
"updated_at": "2025-12-01T02:33:25Z"
},
"astrbot_plugin_gifcaijian": {
"display_name": "裁剪和合并 GIF",
"desc": "可以裁剪和合并gif 分解等功能(后续慢慢润化)",
"author": "shskjw",
"repo": "https://github.com/shskjw/astrbot_plugin_gifcaijian",
"tags": [],
"stars": 5,
"version": "v1.3.5",
"updated_at": "2025-12-06T05:28:02Z"
},
"astrbot_plugin_AtTool": {
"display_name": "@工具(艾特工具)",
"desc": "提供给LLM自然使用的@工具",
"author": "糯米茨",
"repo": "https://github.com/nuomicici/astrbot_plugin_AtTool",
"tags": [
"工具",
"tool",
"@"
],
"social_link": "https://qm.qq.com/q/RMjGPizOAm",
"stars": 6,
"version": "v2.2.1",
"updated_at": "2025-12-08T04:29:24Z",
"logo": "https://raw.githubusercontent.com/nuomicici/astrbot_plugin_AtTool/main/logo.png"
},
"astrbot_plugin_CloudImg": {
"name": "",
"display_name": "Cloud Image",
"desc": "从图床获取随机图片。使用 /img 获取一张随机图片。",
"author": "Foolllll",
"repo": "https://github.com/Foolllll-J/astrbot_plugin_CloudImg",
"tags": [
"图床"
],
"stars": 0,
"version": "v1.0",
"updated_at": "2025-11-23T19:21:37Z",
"logo": "https://raw.githubusercontent.com/Foolllll-J/astrbot_plugin_CloudImg/master/logo.png"
},
"astrbot_plugin_aicu_analysis": {
"display_name": "aicu-b站评论查询",
"desc": "通过UID查询AICU数据,生成包含B站用户数据、设备型号及近期评论统计的精美图片报表。",
"author": "Huahuatgc",
"tags": [
"B站",
"playwright"
],
"repo": "https://github.com/Huahuatgc/astrbot_plugin_aicu",
"social_link": "https://github.com/Huahuatgc",
"stars": 0,
"version": "2.5.0",
"updated_at": "2025-12-02T02:21:06Z",
"logo": "https://raw.githubusercontent.com/Huahuatgc/astrbot_plugin_aicu/master/logo.png"
},
"astrbot_plugin_ShareholderPerks": {
"display_name": "股东薅羊毛资讯",
"desc": "股东回馈信息取自巨潮资讯网,帮助各位股东们或是潜在股东们薅羊毛。",
"author": "协调人",
"repo": "https://github.com/Xie-Tiao/astrbot_plugin_ShareholderPerks",
"social_link": "https://github.com/Xie-Tiao",
"tags": [],
"stars": 0,
"version": "v1.0.0",
"updated_at": "2025-11-27T13:07:40Z"
},
"astrbot_plugin_video_analysis": {
"display_name": "Video Analysis",
"desc": "支持对来自视频平台的分享进行解析并以视频形式发送。",
"author": "Foolllll",
"repo": "https://github.com/Foolllll-J/astrbot_plugin_video_analysis",
"tags": [
"视频解析",
"B站",
"抖音"
],
"stars": 2,
"version": "v1.0",
"updated_at": "2025-12-07T09:22:43Z",
"logo": "https://raw.githubusercontent.com/Foolllll-J/astrbot_plugin_video_analysis/master/logo.png"
},
"astrbot_plugin_image_generation": {
"display_name": "image_generation",
"desc": "适配图像生成模型,图片编辑,可自定义预设",
"author": "MoonShadow1976",
"repo": "https://github.com/MoonShadow1976/astrbot_plugin_image_generation",
"tags": [
"image_generation",
"fork"
],
"stars": 1,
"version": "v2.0.0",
"updated_at": "2025-12-07T13:22:50Z"
},
"astrbot_plugin_image_editor": {
"display_name": "图片编辑",
"desc": "使用第三方 API,实现图片编辑功能",
"author": "jengaklll-a11y",
"repo": "https://github.com/jengaklll-a11y/astrbot_plugin_image_editor",
"tags": [
"模型",
"文生图",
"图生图",
"图片编辑"
],
"social_link": "https://github.com/jengaklll-a11y",
"stars": 0,
"version": "v1.2.0",
"updated_at": "2025-11-23T02:12:04Z"
},
"astrbot_plugin_echoscore": {
"display_name": "鸣潮声骸评分插件",
"desc": "通过小维 API 提供快速的鸣潮声骸评分,支持图文、引用、LLM 工具调用。",
"author": "Loping151 & timetetng",
"repo": "https://github.com/timetetng/astrbot_plugin_echoscore",
"tags": [
"鸣潮",
"声骸",
"游戏"
],
"social_link": "https://github.com/Loping151/ScoreEcho",
"stars": 5,
"version": "3.1.5",
"updated_at": "2025-12-03T04:19:00Z",
"logo": "https://raw.githubusercontent.com/timetetng/astrbot_plugin_echoscore/main/logo.png"
},
"astrbot_plugin_vocabularycard": {
"display_name": "每日一词 [单词卡片]",
"desc": "每日定时推送玻璃拟态风格的英语单词卡片,内置 3722+ 个CET-6 词汇,支持进度追踪和随机学习",
"author": "Willixrain",
"repo": "https://github.com/itismygo/astrbot_plugin_vocabcard",
"tags": [
"英语学习",
"卡片",
"每日一词"
],
"social_link": "https://github.com/itismygo",
"stars": 6,
"version": "v1.0.0",
"updated_at": "2025-12-08T06:32:53Z"
},
"astrbot_plugin_web_analyzer": {
"display_name": "网页分析插件",
"desc": "自动识别网页链接并进行内容分析和总结",
"author": "Sakura520222",
"repo": "https://github.com/Sakura520222/astrbot_plugin_web_analyzer",
"tags": [
"分析",
"web",
"工具"
],
"social_link": "https://box.firefly520.top/",
"stars": 9,
"version": "1.2.4",
"updated_at": "2025-12-07T11:06:31Z",
"logo": "https://raw.githubusercontent.com/Sakura520222/astrbot_plugin_web_analyzer/master/logo.png"
},
"astrbot_plugin_ComfyUI_promax": {
"display_name": "ComfyUI_pro",
"desc": "ComfyUI AI 绘画插件-支持文生图、图生图、多服务器轮询、模型选择、LoRA 等高级功能。",
"author": "tjc123456",
"repo": "https://github.com/tjc6666666666666/astrbot_plugin_ComfyUI_promax",
"tags": [
"画图",
"comfyui"
],
"social_link": "",
"stars": 6,
"version": "3.2.6",
"updated_at": "2025-12-06T17:27:49Z"
},
"astrbot_plugin_timeprogress": {
"display_name": "时间可视化",
"desc": "用来可视化时间的,查看今年过去了多少时间。",
"author": "Willixrain",
"repo": "https://github.com/itismygo/astrbot_plugin_timeprogress",
"tags": [
"time",
"图片"
],
"social_link": "https://github.com/itismygo",
"stars": 0,
"version": "v1.4.0",
"updated_at": "2025-12-02T16:10:27Z"
},
"astrbot_plugin_openlistfile": {
"display_name": "Openlist 助手",
"desc": "Openlist 文件管理插件,支持浏览、搜索、下载 Openlist 上的文件。",
"author": "Foolllll",
"repo": "https://github.com/Foolllll-J/astrbot_plugin_openlistfile",
"tags": [
"Openlist",
"文件管理",
"网盘"
],
"stars": 1,
"version": "v1.1.2",
"updated_at": "2025-12-05T17:19:45Z",
"logo": "https://raw.githubusercontent.com/Foolllll-J/astrbot_plugin_openlistfile/master/logo.png"
},
"astrbot_plugin_gemini_image": {
"display_name": "Gemini 生图",
"desc": "基于 Gemini 模型的图像生成插件,支持文生图和图生图,支持自然语言调用和预设提示词",
"author": "Railgun19457",
"repo": "https://github.com/railgun19457/astrbot_plugin_gemini_image",
"tags": [
"生图",
"gemini",
"nano banana"
],
"social_link": "https://www.misakanet.site",
"stars": 4,
"version": "v1.2",
"updated_at": "2025-12-06T19:04:22Z",
"logo": "https://raw.githubusercontent.com/railgun19457/astrbot_plugin_gemini_image/master/logo.png"
},
"astrbot_plugin_gemini_image_generation": {
"display_name": "Gemini 图像生成",
"desc": "Gemini 图像生成插件,支持生图和改图,支持自动获取头像作为参考",
"author": "piexian",
"repo": "https://github.com/piexian/astrbot_plugin_gemini_image_generation",
"tags": [
"生图",
"修图"
],
"social_link": "https://github.com/piexian",
"stars": 13,
"version": "v1.6.9",
"updated_at": "2025-12-08T14:01:54Z",
"logo": "https://raw.githubusercontent.com/piexian/astrbot_plugin_gemini_image_generation/master/logo.png"
},
"astrbot_plugin_genshinimpact": {
"display_name": "原神圣经",
"desc": "检测原神关键词自动回复原神圣经。",
"author": "ましろSaber & Foolllll",
"repo": "https://github.com/Foolllll-J/astrbot_plugin_genshinimpact",
"tags": [
"原神"
],
"stars": 1,
"version": "v1.2",
"updated_at": "2025-11-30T08:38:56Z",
"logo": "https://raw.githubusercontent.com/Foolllll-J/astrbot_plugin_genshinimpact/master/logo.png"
},
"astrbot_plugin_parse_hub": {
"display_name": "多平台解析",
"desc": "抖音、小红书、B 站等多平台解析,仅测试 telegram",
"author": "Neilyo",
"repo": "https://github.com/lixinzai/astrbot_plugin_parse_hub",
"tags": [],
"stars": 0,
"version": "v1.0.0",
"updated_at": "2025-11-22T13:04:09Z"
},
"astrbot_plugin_bangmap": {
"display_name": "全国邦邦同好会信息查询",
"desc": "在enldm.cyou/map查询全国邦邦同好会群聊信息",
"author": "enldm",
"repo": "https://github.com/enldm/astrbot_plugin_bangmap",
"tags": [
"bangdream"
],
"social_link": "https://enldm.cyou/about",
"stars": 1,
"version": "v0.1",
"updated_at": "2025-12-01T07:37:14Z",
"logo": "https://raw.githubusercontent.com/enldm/astrbot_plugin_bangmap/master/logo.png"
},
"astrbot_plugin_msg_transfer": {
"display_name": "MsgTransfer(消息转发插件)",
"desc": "一个用于在不同聊天端点之间转发与同步消息的 AstrBot 插件。",
"author": "Siaospeed",
"repo": "https://github.com/Siaospeed/astrbot_plugin_msg_transfer",
"tags": [
"消息转发",
"跨客户端"
],
"social_link": "https://github.com/Siaospeed",
"stars": 6,
"version": "v0.1.0",
"updated_at": "2025-12-07T14:33:07Z",
"logo": "https://raw.githubusercontent.com/Siaospeed/astrbot_plugin_msg_transfer/main/logo.png"
},
"astrbot_plugin_chuanhuatong": {
"display_name": "传话筒·立绘对话框",
"desc": "拦截 Bot 文本输出,套用 Gal 风气泡和立绘的渲染插件",
"author": "bvzrays",
"repo": "https://github.com/bvzrays/astrbot_plugin_chuanhuatong",
"tags": [
"魔女审判",
"gal"
],
"social_link": "https://github.com/bvzrays",
"stars": 38,
"version": "v2.0.0",
"updated_at": "2025-12-08T01:05:40Z",
"logo": "https://raw.githubusercontent.com/bvzrays/astrbot_plugin_chuanhuatong/master/logo.png"
},
"astrbot_plugin_steamgame": {
"display_name": "Steam 玩家数据可视化插件",
"desc": "Steam 玩家数据可视化插件,支持群内排行,PK,以及游戏墙",
"author": "bvzrays",
"repo": "https://github.com/bvzrays/astrbot_plugin_steamgame",
"tags": [
"steam",
"游戏"
],
"social_link": "https://github.com/bvzrays",
"stars": 5,
"version": "1.6.0",
"updated_at": "2025-12-06T22:08:04Z",
"logo": "https://raw.githubusercontent.com/bvzrays/astrbot_plugin_steamgame/master/logo.png"
},
"astrbot_plugin_gloryofkings": {
"display_name": "王者荣耀数据查询插件",
"desc": "提供王者荣耀战绩、英雄战力、皮肤等数据查询功能,支持自定义图片渲染质量",
"author": "球球",
"repo": "https://github.com/sangjie-stack/astrbot_plugin_gloryofkings",
"tags": [
"游戏",
"王者"
],
"social_link": "https://github.com/sangjie-stack",
"stars": 1,
"version": "v1.1.0",
"updated_at": "2025-12-06T13:39:10Z"
},
"astrbot_plugin_canvas_steve": {
"display_name": "gemini-2.5-flash-image 画图小工具",
"desc": "一个普通的使用 gemini-2.5-flash-image 进行图片内容创作的插件",
"author": "stevessr",
"repo": "https://github.com/stevessr/AstrBot_Plugins_Canvas/",
"tags": [
"gemini",
"画图"
],
"social_link": "https://github.com/stevessr",
"stars": 2,
"version": "v1.1",
"updated_at": "2025-11-27T07:24:45Z"
},
"astrbot_plugin_slave_market": {
"display_name": "大牛马时代",
"desc": "Python 版牛马市场游戏,涵盖银行、市场、农务、VIP 等系统。",
"author": "magisk317",
"repo": "https://github.com/magisk317/astrbot_plugin_slave_market",
"tags": [
"牛马市场",
"经济系统",
"VIP自动化"
],
"social_link": "https://github.com/magisk317",
"stars": 2,
"version": "v1.0.1",
"updated_at": "2025-12-04T01:06:27Z"
},
"astrbot_plugin_nyscheduler": {
"display_name": "定时推送",
"desc": "这是 AstrBot 的一个定时推送插件。包含 60s,摸鱼日历,今日金价,AI资讯。",
"author": "柠柚",
"repo": "https://github.com/ningyou8023/astrbot_plugin_nyscheduler",
"tags": [
"定时",
"推送",
"新闻",
"AI"
],
"stars": 0,
"version": "v1.0.2",
"updated_at": "2025-12-05T00:37:49Z",
"logo": "https://raw.githubusercontent.com/ningyou8023/astrbot_plugin_nyscheduler/main/logo.png"
},
"astrbot_plugin_api_fetcher": {
"display_name": "API 定时获取并展示",
"desc": "定时拉取某 API 并主动推送到指定会话的示例插件",
"author": "贝浦熙",
"repo": "https://github.com/thnf/get_api",
"tags": [],
"stars": 0,
"version": "1.0.4",
"updated_at": "2025-11-07T16:02:26Z"
},
"astrbot_plugin_ftp_control": {
"display_name": "ftp_manager",
"desc": "通过 LLM 工具执行 FTP 文件操作",
"author": "Xican",
"repo": "https://github.com/luosheng520qaq/astrbot_ftp_manager",
"tags": [
"ftp"
],
"stars": 0,
"version": "1.1.0",
"updated_at": "2025-12-02T14:16:11Z"
},
"astrbot_plugin_hotsearch": {
"display_name": "实时热搜插件",
"desc": "实时热搜聚合插件,支持抖音/小红书/知乎/微博/百度/懂车帝/哔哩哔哩/腾讯/头条/猫眼票房,指令无需参数,默认输出图片。",
"author": "柠柚",
"repo": "https://github.com/ningyou8023/astrbot_plugin_hotsearch",
"tags": [
"热搜",
"图片"
],
"stars": 1,
"version": "v1.0.1",
"updated_at": "2025-11-29T17:40:01Z",
"logo": "https://raw.githubusercontent.com/ningyou8023/astrbot_plugin_hotsearch/main/logo.png"
},
"astrbot_plugin_infinite_dialogue": {
"display_name": "AstrBot 无限对话插件",
"desc": "这是一个为 AstrBot 设计的插件,旨在通过自动总结对话历史来实现'无限对话'功能",
"author": "Alan Backer",
"repo": "https://github.com/AlanBacker/astrbot_plugin_infinite_dialogue",
"tags": [
"Summary",
"Chat"
],
"social_link": "https://space.bilibili.com/702922307",
"stars": 4,
"version": "1.0.9",
"updated_at": "2025-12-04T01:10:23Z"
},
"astrbot_plugin_pig": {
"display_name": "猪猪表情包",
"desc": "随机发送一张猪猪表情包",
"author": "SakuraMikku",
"repo": "https://github.com/wuxinTLH/astrbot_plugin_pig",
"social_link": "https://github.com/wuxinTLH",
"tags": [],
"stars": 0,
"version": "v0.0.9",
"updated_at": "2025-11-28T01:16:22Z"
},
"astrbot_plugin_hardwareinfo": {
"display_name": "硬件信息查询",
"desc": "硬件信息查询(CPU/GPU搜索+天梯图+参数图片)",
"author": "SakuraMikku",
"repo": "https://github.com/wuxinTLH/astrbot_plugin_hardwareinfo",
"social_link": "https://github.com/wuxinTLH",
"tags": [],
"stars": 0,
"version": "v0.0.7",
"updated_at": "2025-11-28T06:07:30Z"
},
"astrbot_plugin_command2llm": {
"display_name": "Command2LLM",
"desc": "让大模型能够调用所有插件命令的智能聊天插件。",
"author": "vmoranv",
"repo": "https://github.com/vmoranv/astrbot_plugin_command2llm",
"tags": [
"命令",
"llm工具"
],
"social_link": "https://github.com/vmoranv",
"stars": 3,
"version": "v1.0.0",
"updated_at": "2025-12-02T10:10:45Z"
},
"astrbot_plugin_whitelistpro": {
"display_name": "白名单拓展",
"desc": "支持临时会话、好友私聊、群聊的白名单独立控制和全局白名单黑名单",
"author": "gabriel0721",
"repo": "https://github.com/TenmaGabriel0721/astrbot_plugin_whitelistpro",
"tags": [],
"stars": 1,
"version": "1.0.0",
"updated_at": "2025-11-18T13:20:37Z",
"logo": "https://raw.githubusercontent.com/TenmaGabriel0721/astrbot_plugin_whitelistpro/main/logo.png"
},
"astrbot_plugin_val_shop": {
"display_name": "掌上无畏契约每日商店查询",
"desc": "无畏契约每日商店查询插件,支持绑定账户信息查看每日商店皮肤",
"author": "GuJi08233",
"repo": "https://github.com/GuJi08233/astrbot_plugin_val_shop",
"tags": [],
"stars": 2,
"version": "v3.2.1",
"updated_at": "2025-12-02T19:10:05Z"
},
"astrbot_plugin_doubao": {
"display_name": "豆包即梦生成",
"desc": "豆包即梦生成。使用方法:输入 db 设置查看, API 网址 https://missqiu.icu/api_details.php?id=18 申请免费密钥",
"author": "cube-lover",
"repo": "https://github.com/cube-lover/doubao",
"tags": [],
"stars": 9,
"version": "v2.1",
"updated_at": "2025-12-04T01:18:56Z"
},
"astrbot_plugin_daliy_news": {
"display_name": "每日 60s 新闻",
"desc": "一个简单的不稳定的Astrbot每日60s新闻定时推送插件。",
"author": "eaton",
"repo": "https://github.com/eeetechen/astrbot_plugin_daliy_news",
"tags": [
"新闻"
],
"social_link": "blog.eeete.fun",
"stars": 0,
"version": "v0.0.3",
"updated_at": "2025-12-02T10:19:47Z"
},
"astrbot_plugin_rg2": {
"display_name": "🔫 左轮手枪对决",
"desc": "一个刺激的群聊轮盘游戏插件。支持管理员装填子弹、用户开枪对决、随机走火等功能,提供完整的游戏体验和AI自然语言交互支持。",
"author": "piexian",
"repo": "https://github.com/piexian/astrbot_plugin_rg2",
"tags": [
"小游戏",
"轮盘"
],
"social_link": "https://github.com/piexian",
"stars": 2,
"version": "1.2.0",
"updated_at": "2025-11-27T08:00:15Z",
"logo": "https://raw.githubusercontent.com/piexian/astrbot_plugin_rg2/master/logo.png"
},
"astrbot_plugin_maimaidx": {
"display_name": "国服舞萌插件",
"desc": "国服舞萌查分插件,支持查询成绩、排名、曲目信息等功能(一定要看文档!!!)",
"author": "ZhiheZier",
"repo": "https://github.com/ZhiheZier/astrbot_plugin_maimaidx",
"tags": [
"maimai",
"舞萌",
"查分"
],
"social_link": "https://github.com/ZhiheZier",
"stars": 1,
"version": "v1.0.0",
"updated_at": "2025-12-06T17:57:25Z",
"logo": "https://raw.githubusercontent.com/ZhiheZier/astrbot_plugin_maimaidx/master/logo.png"
},
"astrbot_plugin_mcsmanager": {
"display_name": "MCSManager 管理",
"desc": "可以通过指令管理mcsmanager内实例的插件:主要功能:通过指令开/关mcsm实例,mcsm节点状态(内存,cpu占用),查看实例列表",
"author": "5060ti个马力的2099",
"repo": "https://github.com/HSOS6/astrbot_plugin_mcsmanager",
"tags": [
"MC",
"mcsmanager",
"控制台"
],
"social_link": "https://github.com/HSOS6",
"stars": 1,
"version": "1.1.18.beta",
"updated_at": "2025-11-22T04:44:36Z",
"logo": "https://raw.githubusercontent.com/HSOS6/astrbot_plugin_mcsmanager/main/logo.png"
},
"astrbot_plugin_minecraft_adapter": {
"display_name": "Minecraft适配器",
"desc": "连接到 Minecraft 插件服务器,实现消息互通和服务器管理",
"author": "Railgun19457",
"repo": "https://github.com/railgun19457/astrbot_plugin_minecraft_adapter",
"tags": [
"MC",
"Minecraft"
],
"social_link": "https://www.misakanet.site",
"stars": 0,
"version": "1.2.0",
"updated_at": "2025-11-12T15:33:32Z",
"logo": "https://raw.githubusercontent.com/railgun19457/astrbot_plugin_minecraft_adapter/master/logo.png"
},
"astrbot_plugin_minecraft_monitor": {
"display_name": "MC 服务器状态检测",
"desc": "Minecraft服务器监控插件,支持定时检测服务器状态变化并发送通知。可配置目标群、服务器地址、检查间隔等。",
"author": "cryfly666",
"repo": "https://github.com/cryfly666/astrbot_plugin_play",
"tags": [
"MC"
],
"stars": 0,
"version": "v2.0",
"updated_at": "2025-11-16T14:25:13Z"
},
"astrbot_plugin_temp-email": {
"display_name": "临时邮箱",
"desc": "获取临时邮箱",
"author": "victical",
"repo": "https://github.com/victical/astrbot_plugin_temp-email",
"tags": [
"临时邮箱"
],
"stars": 1,
"version": "v0.0.2",
"updated_at": "2025-11-26T06:41:28Z"
},
"astrbot_plugin_reneban": {
"display_name": "ReNeBan(Ban黑名单插件)",
"desc": "黑名单插件,用于禁用指定用户在会话或全局范围内使用机器人的插件。管理员可通过指令对用户进行禁用或解除禁用,ban-help 查看简易帮助信息",
"author": "NekoiMeiov_Team",
"repo": "https://github.com/NekoiMeiov/astrbot_plugin_reneban",
"tags": [
"ban",
"禁用",
"黑名单"
],
"social_link": "https://github.com/NekoiMeiov",
"stars": 2,
"version": "v1.0.1",
"updated_at": "2025-11-17T16:52:54Z"
},
"astrbot_plugin_mc_update": {
"display_name": "Minecraft 基岩版更新日志提醒插件",
"desc": "用于监控 Minecraft Feedback 的最新基岩版文章,并在有新文章时自动推送通知。",
"author": "Dbackolds",
"repo": "https://github.com/Dbackolds/astrbot_plugin_mc_update",
"tags": [
"Minecraft",
"基岩版",
"MC"
],
"stars": 0,
"version": "1.6.1",
"updated_at": "2025-11-16T04:34:47Z"
},
"astrbot_plugin_minecraft_skin_render": {
"display_name": "MC 皮肤渲染插件",
"desc": "用于获取 Minecraft 玩家皮肤的 3D 渲染图(支持动作)、2D 头像或皮肤文件",
"author": "SatellIta",
"repo": "https://github.com/SatellIta/astrbot_plugin_minecraft_skin_render",
"tags": [
"MC"
],
"stars": 1,
"version": "v1.1.2",
"updated_at": "2025-11-28T15:38:12Z",
"logo": "https://raw.githubusercontent.com/SatellIta/astrbot_plugin_minecraft_skin_render/master/logo.png"
},
"astrbot_plugin_picstatus": {
"display_name": "PicStatus",
"desc": "以图片形式显示当前设备的运行状态。",
"author": "薄暝",
"repo": "https://github.com/exynos967/astrbot_plugin_picstatus",
"tags": [],
"stars": 0,
"version": "v1.1.0",
"updated_at": "2025-11-23T15:51:06Z"
},
"astrbot_plugin_continuous_message": {
"display_name": "消息防抖动",
"desc": "消息防抖动插件可以将用户短时间内发送的多条私聊消息合并成一条发送给大语言模型,避免频繁触发AI回复,提升用户体验。",
"author": "aliveriver",
"repo": "https://github.com/aliveriver/astrbot_plugin_continuous_message",
"tags": [
"llm",
"工具",
"私聊"
],
"stars": 12,
"version": "2.1.0",
"updated_at": "2025-12-03T04:54:05Z"
},
"astrbot_plugin_llm_amnesia": {
"display_name": "LLM 遗忘插件",
"desc": "当您不满意大模型的回复时,使用 /forget 指令,让它“忘记”最近的N轮对话,以便您重新提问并获得更好的回答。",
"author": "NigthStar",
"repo": "https://github.com/SinkAbyss/astrbot_plugin_llm_amnesia",
"tags": [
"对话管理",
"工具",
"遗忘"
],
"social_link": "https://github.com/SinkAbyss",
"stars": 0,
"version": "v1.1.5",
"updated_at": "2025-11-15T18:32:41Z"
},
"astrbot_plugin_Furimg_Cloud": {
"display_name": "兽云祭(兽兽图片/图鉴)",
"desc": "这个是兽云祭官方 API 对接插件,用来获取一张精选的 furry 图片,可以是毛毛照片也可以是兽兽插画或者设定图,该插件的所有图片均来自群友投稿",
"author": "huilongxiji",
"repo": "https://github.com/huilongxiji/astrbot_plugin_Furimg_Cloud",
"tags": [
"furry",
"毛图"
],
"social_link": "",
"stars": 1,
"version": "v1.0.5",
"updated_at": "2025-11-25T10:01:55Z"
},
"astrbot_plugin_werewolf": {
"display_name": "狼人杀游戏",
"desc": "狼人杀游戏插件(预言家+狼人+女巫+猎人+平民)- AI复盘",
"author": "miao",
"repo": "https://github.com/libin99527/astrbot_plugin_werewolf",
"tags": [],
"stars": 6,
"version": "v3.0.0",
"updated_at": "2025-12-06T09:42:56Z",
"logo": "https://raw.githubusercontent.com/libin99527/astrbot_plugin_werewolf/main/logo.png"
},
"astrbot_plugin_media_parser": {
"display_name": "聚合解析流媒体平台链接,转换为媒体直链发送",
"desc": "聚合解析流媒体平台链接,转换为媒体直链发送",
"author": "drdon1234",
"repo": "https://github.com/drdon1234/astrbot_plugin_media_parser",
"tags": [
"流媒体",
"链接解析",
"B站",
"抖音",
"快手",
"微博",
"小红书",
"推特"
],
"stars": 7,
"version": "v3.2.0",
"updated_at": "2025-11-21T02:06:08Z",
"logo": "https://raw.githubusercontent.com/drdon1234/astrbot_plugin_media_parser/main/logo.png"
},
"astrbot_plugin_decision": {
"display_name": "decision",
"desc": "让 Bot 帮你做决定。",
"author": "Butterblock233",
"repo": "https://github.com/Butterblock233/astrbot_plugin_decision",
"social_link": "https://github.com/Butterblok233/",
"tags": [],
"stars": 1,
"version": "v1.1.0",
"updated_at": "2025-12-03T12:40:59Z"
},
"astrbot_plugin_newapi_checkin": {
"display_name": "New-API 签到抽奖插件",
"desc": "绑定 New-API 账号,支持每日签到和抽奖获取额度",
"author": "miao",
"repo": "https://github.com/libin99527/astrbot_plugin_newapi_checkin",
"version": "v1.0.0",
"tags": [],
"stars": 0,
"updated_at": "2025-11-09T13:17:54Z"
},
"astrbot_plugin_furry_chehui": {
"display_name": "爱撤回",
"desc": "【仅QQ】一个可以自动定时撤回机器人自己发送消息的小插件,能一定程度上防止被举报",
"author": "芝士雪豹",
"repo": "https://github.com/furry520-source/astrbot_plugin_furry_chehui",
"tags": [
"撤回"
],
"stars": 0,
"version": "v1.0.0",
"updated_at": "2025-11-14T13:09:09Z",
"logo": "https://raw.githubusercontent.com/furry520-source/astrbot_plugin_furry_chehui/main/logo.png"
},
"astrbot_plugin_simplerepeater": {
"display_name": "简单的复读机",
"desc": "个人学习向制作,用于复读特定群友的部分聊天内容。作用为本人屏蔽群友以防止群友搬石,但又需要知道群友说了什么话时通过bot复读获取信息。",
"author": "KirisameMashiro",
"repo": "https://github.com/KirisameMashiro/astrbot_plugin_simplerepeater",
"tags": [
"复读"
],
"stars": 0,
"version": "v1.6",
"updated_at": "2025-11-29T20:38:30Z"
},
"astrbot_plugin_emotionai": {
"display_name": "高级情感智能交互系统",
"desc": "EmotionAI 旨在为 AI 模拟一个多维度的、自主演变的内心世界。与传统的单一好感度系统不同,EmotionAI 提供了更丰富的情感维度和更智能的交互体验。",
"author": "腾天",
"repo": "https://github.com/tengtian3/astrbot-plugin-emotionai",
"tags": [
"好感度",
"情感"
],
"stars": 7,
"version": "v3.4",
"updated_at": "2025-12-07T05:04:40Z",
"logo": "https://raw.githubusercontent.com/tengtian3/astrbot-plugin-emotionai/main/logo.png"
},
"astrbot_plugin_email_narrator": {
"display_name": "Email Narrator",
"desc": "一个智能邮件播报插件,能接收邮件并让继承了会话和人格的 LLM 来通知用户",
"author": "ZvZPvz",
"repo": "https://github.com/ZvZPvz/astrbot_plugin_email_narrator",
"tags": [
"主动消息",
"拟人",
"邮箱",
"email",
"推送"
],
"social_link": "https://github.com/ZvZPvz",
"stars": 1,
"version": "1.0.0",
"updated_at": "2025-11-12T15:59:18Z",
"logo": "https://raw.githubusercontent.com/ZvZPvz/astrbot_plugin_email_narrator/main/logo.png"
},
"astrbot_plugin_mcwatcher": {
"display_name": "MCWatcher",
"desc": "MCWatcher 是一个基于 AstrBot 的插件,用于 自动监测 Mojang 的最新 Minecraft 版本",
"author": "noname2309-bot",
"repo": "https://github.com/wadadawsd/astrbot_plugin_mcwatcher",
"tags": [
"mc"
],