-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathplugins.json
More file actions
8432 lines (8432 loc) · 305 KB
/
plugins.json
File metadata and controls
8432 lines (8432 loc) · 305 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-halo-manager": {
"display_name": "博客管理器",
"desc": "Bot管理的halo博客插件",
"author": "血与蔷薇",
"repo": "https://github.com/danielsunrise/astrbot_plugin_halo_manager"
},
"astrbot-plugin-niji": {
"display_name": "Niji Diary Sync",
"desc": "自动将聊天记录同步到你的日记网站,支持每日自动上传和手动触发同步。",
"author": "iamfromchangsha",
"repo": "https://github.com/iamfromchangsha/astrbot_plugin_niji",
"tags": [
"你的日记",
"日记保存"
],
"social_link": "https://github.com/iamfromchangsha"
},
"astrbot-plugin-phigros": {
"display_name": "phigros音游插件",
"desc": "Phigros 音游数据查询插件,支持查询玩家存档、RKS历史、排行榜、歌曲搜索和新曲速递",
"author": "飞翔的死猪",
"repo": "https://github.com/1-20182/astrbot_plugin_phigros",
"tags": [
"音游",
"phigros"
],
"social_link": "https://github.com/1-20182"
},
"astrbot-plugin-Gemini-STT": {
"display_name": "Gemini_STT",
"desc": "使用Gemini模型来实现STT(分析特别详细哦)",
"author": "政ひかりはる",
"repo": "https://github.com/Weather-719/astrbot_plugin_Gemini_STT",
"tags": [
"STT",
"语音",
"桥接",
"Gemini"
],
"social_link": "https://github.com/Weather-719"
},
"astrbot-plugin-openai-responses": {
"display_name": "OpenAI Responses API Provider",
"desc": "添加OpenAI Responses适配",
"author": "okami-horo",
"repo": "https://github.com/okami-horo/astrbot_plugin_openai_responses"
},
"astrbot-plugin-matrix-sticker": {
"display_name": "Matrix Sticker 管理插件",
"desc": "Matrix Sticker 管理插件,提供 sticker 保存、列表和发送命令",
"author": "stevessr",
"repo": "https://github.com/stevessr/astrbot_plugin_matrix_sticker",
"tags": [
"matrix",
"sticker",
"表情"
],
"social_link": "https://github.com/stevessr"
},
"astrbot-plugin-astrbook": {
"display_name": "Astrbook适配器",
"desc": "Astrbook(一个仅agent论坛)的适配插件,让bot拥有在Astrbook上聊天,逛帖,回帖的能力",
"author": "Jason.Joestar",
"repo": "https://github.com/advent259141/astrbot_plugin_astrbook",
"tags": [
"论坛",
"自动水贴"
],
"social_link": "https://github.com/advent259141"
},
"astrbot-plugin-meting": {
"display_name": "初叶🍂MetingAPI 点歌",
"desc": "基于 MetingAPI 的点歌插件,自定义API地址,支持QQ音乐、网易云、酷狗、酷我音源",
"author": "初叶🍂竹叶-Furry控",
"repo": "https://github.com/chuyegzs/astrbot_plugin_meting",
"social_link": "www.chuyel.cn"
},
"astrbot-plugin-comfyui": {
"display_name": "ComfyUI 工作流 (LLM 工具)",
"desc": "将 ComfyUI 工作流封装为 LLM 可调用的工具,支持工作流上传/管理、说明与 text_slots,文生图/改图等任意工作流通过指定节点(Simple String、ETN_LoadImageBase64、VHS_LoadVideo)即可接入并执行。",
"author": "cjxzdzh",
"repo": "https://github.com/cjxzdzh/astrbot_plugin_comfyui",
"tags": [
"ComfyUI",
"LLM",
"图像生成",
"工作流"
],
"social_link": "https://github.com/cjxzdzh"
},
"astrbot-plugin-payqr": {
"display_name": "智能收款码",
"desc": "当 LLM 觉得自己没钱了或提到要别人给钱时,自动发送用户上传的收款码图片",
"author": "落日七号",
"repo": "https://github.com/luori7hao/astrbot_plugin_payqr"
},
"astrbot-plugin-jx3": {
"display_name": "剑网三游戏数据查询工具",
"desc": "通过接口调用剑网三API接口获取游戏数据",
"author": "飞翔大野猪",
"repo": "https://github.com/qsc20001102/astrbot_plugin_jx3",
"tags": [
"剑网三",
"数据查询"
]
},
"astrbot-plugin-zirunbi": {
"display_name": "孜然币模拟炒股",
"desc": "一款多币种虚拟加密货币交易模拟插件。在群聊中体验模拟炒股的乐趣,体验“韭菜”的起起落落!",
"author": "LumineStory",
"repo": "https://github.com/oyxning/astrbot_plugin_zirunbi",
"tags": [
"炒股",
"模拟",
"本地"
],
"social_link": "https://github.com/oyxning"
},
"astrbot-plugin-at-check": {
"display_name": "谁艾特我",
"desc": "记录群聊中最近@你的消息,支持单独@的上下文获取。",
"author": "Foolllll",
"repo": "https://github.com/Foolllll-J/astrbot_plugin_at_check",
"tags": [
"工具"
]
},
"astrbot-plugin-grok-suite": {
"display_name": "Grok AI 助手",
"desc": "Grok 全能插件:文生图、图生图、图生视频、智能对话(自动联网)、LLM Tool 调用,一站式 AI 多媒体体验",
"author": "沐沐沐倾",
"repo": "https://github.com/muqing-kg/astrbot_plugin_grok_suite",
"tags": [
"AI",
"生图",
"视频",
"联网搜索"
]
},
"astrbot-plugin-chat-polisher": {
"display_name": "最终文本润色",
"desc": "自动将输出的回复文本内容截取,并通过设定的规则进行润色后发出。",
"author": "cyilin",
"repo": "https://github.com/cyilin36/astrbot_plugin_chat_polisher",
"tags": [
"润色",
"校对"
],
"social_link": "https://cyilin36.github.io/"
},
"astrbot-plugin-napcat-enhanced": {
"display_name": "Napcat_Enhanced",
"desc": "基于原有功能的增强的 AstrBot NapCat 接入插件,提供丰富的 QQ 机器人功能。",
"author": "Nonepf",
"repo": "https://github.com/Nonepf/astrbot_plugin_napcat_enhanced"
},
"astrbot-plugin-mcbe-news": {
"display_name": "MCBE 更新监控与 AI 总结插件",
"desc": "定时监控 Minecraft 基岩版官方更新,自动使用 AI 总结并推送到群聊,支持 Beta 和正式版",
"author": "Yuehua",
"repo": "https://github.com/YueHua46/astrbot_plugin_mcbe_news",
"tags": [
"MC",
"我的世界",
"我的世界基岩版",
"MCBE"
],
"social_link": "https://github.com/YueHua46"
},
"astrbot-plugin-wordlimit": {
"display_name": "字数限制器",
"desc": "在 LLM 回复后检查字数,超过限制时自动使用 LLM 缩短回复内容",
"author": "lingyu",
"repo": "https://github.com/DCM234/astrbot_plugin_wordlimit",
"tags": [
"字数限制"
]
},
"astrbot-plugin-bili-resolver": {
"display_name": "Bilibili 小程序原链解析",
"desc": "Bilibili的小组件最麻烦了,电脑打不开,于是做了个可以直接转成原链接和展示播放和介绍的工具",
"author": "chufeng",
"repo": "https://github.com/chufeng/astrbot_plugin_bili_resolver",
"tags": [
"Bilibili",
"B站",
"转链"
]
},
"astrbot-plugin-inkfusion": {
"display_name": "A1111文生图插件",
"desc": "用于Astrbot的Pollinations、SD(stable diffusion A1111)、llm图片生成插件",
"author": "F5",
"repo": "https://github.com/fatsnk/astrbot_plugin_inkfusion",
"tags": [
"A1111",
"stable diffusion",
"text2img",
"sd"
],
"social_link": "https://fatsnk.github.io/fatsnk/"
},
"ImgBB助手": {
"display_name": "ImgBB助手",
"desc": "这是一个用于AstrBot的插件,允许用户抓取指定 ImgBB 用户的公开相册图片,支持对订阅用户随机抓取,使用api_key上传图片到图床,以及通过 Cookie 访问受限内容。",
"author": "FGXYX",
"repo": "https://github.com/FGXYX/astrbot_plugin_ImgBB_Subscriber",
"tags": [
"免费图床"
],
"social_link": "https://github.com/FGXYX"
},
"astrbot_plugin_group_quiz": {
"display_name": "每日技术问答",
"desc": "定时推送技术题目、支持小组订阅和批次管理的群聊答题插件",
"author": "Misaka13906",
"repo": "https://github.com/Misaka13906/astrbot_plugin_group_quiz",
"tags": [
"学习"
],
"social_link": "https://github.com/Misaka13906/"
},
"astrbot_plugin_hapi_connector": {
"name": "",
"display_name": "HAPI Vibe Coding 遥控器",
"desc": "连接 HAPI 服务,借助Astrbot在任意聊天平台(QQ、微信、Telegram 等)上操控 Claude Code / Codex / Gemini / OpenCode 会话,随时随地 vibe coding,支持实时消息推送、快捷审批。",
"author": "LiJinHao999",
"repo": "https://github.com/LiJinHao999/astrbot_plugin_hapi_connector",
"tags": [
"vibe coding",
"claudecode",
"codex",
"geminicil",
"opencode"
]
},
"astrbot_plugin_mc_duration": {
"display_name": "MC魔人时长统计",
"desc": "MC魔人检测插件,主要用于统计每个玩家的游戏时长并进行魔人颁奖,可以查看指定玩家的游戏时间段等。",
"author": "gangcaiyoule",
"repo": "https://github.com/gangcaiyoule/astrbot_plugin_mc_duration",
"tags": [
"mc",
"minecraft"
]
},
"astrbot_plugin_minecraftconsole": {
"display_name": "Minecraft 控制台",
"desc": "使用 Rcon 发送命令至 MC",
"author": "H_aaa",
"repo": "https://github.com/H-aaaa/astrbot_plugin_minecraftconsole",
"tags": [
"MineCraft",
"Console"
],
"social_link": "github.com/hutuyee"
},
"astrbot_plugin_memory_reboot": {
"display_name": "旧消息提醒 火星救援插件",
"desc": "当群聊中有人重复发送旧的新闻/话题时,自动引用回复提醒该用户",
"author": "s11IM、idiotsj",
"repo": "https://github.com/s11IM/astrbot_plugin_memory_reboot",
"tags": [
"群聊",
"提醒"
]
},
"astrbot_plugin_nbalance": {
"display_name": "NewAPI余额查询",
"desc": "格式化 NewAPI 余额接口返回数据,供 AstrBot 查询展示使用,支持命令行查询和 LLM 工具调用两种方式",
"author": "Radiant303",
"repo": "https://github.com/Radiant303/astrbot_plugin_nbalance",
"social_link": "https://github.com/Radiant303"
},
"astrbot_plugin_lingbao_market": {
"display_name": "灵宝集市监控",
"desc": "监听灵宝市集分享码,发送至后端接口。",
"author": "QiChen",
"repo": "https://github.com/QiChenSn/astrbot-wzry-lingbao-market",
"tags": [
"王者荣耀",
"灵宝",
"小马糕"
],
"social_link": "https://github.com/QiChenSn"
},
"astrbot_plugin_BombGame": {
"display_name": "数字炸弹游戏插件",
"desc": "群内互动猜数字,支持多群独立游戏、轮流点名、超时临时会话提醒及 HTML 精美排行榜",
"author": "haoyuedashi",
"repo": "https://github.com/haoyuedashi/astrbot_plugin_BombGame",
"tags": [
"小游戏"
]
},
"astrbot_plugin_lyricsplus": {
"display_name": "接歌词 Plus",
"desc": "重新编写的基于网易云API的接歌词插件。",
"author": "Azured",
"repo": "https://github.com/Aoi-Karlin/astrbot_plugin_lyricsplus"
},
"astrbot_plugin_messenger": {
"display_name": "通风报信插件 (astrbot_plugin_messenger)",
"desc": "通风报信插件 - 帮你传话给好友,支持来回对话",
"author": "落日七号",
"repo": "https://github.com/luori7hao/astrbot_plugin_messenger"
},
"astrbot_plugin_live2d_adapter": {
"display_name": "Live2D 适配器",
"desc": "Live2D 桌面客户端平台适配器,支持 L2D-Bridge Protocol v1.0",
"author": "lxfight",
"repo": "https://github.com/lxfight/astrbot_plugin_live2d_adapter",
"tags": [
"platform"
],
"social_link": "https://github.com/lxfight"
},
"astrbot_plugin_telegram_summary": {
"name": "",
"display_name": "Telegram 频道消息总结",
"desc": "一个 Telegram 频道消息总结插件,每周自动生成指定频道的消息汇总报告,支持自动推送到QQ群组和用户。",
"author": "车厘子小樱",
"repo": "https://github.com/Sakura520222/astrbot_plugin_telegram_summary",
"tags": [
"Telegram",
"周报",
"资讯"
],
"social_link": "https://github.com/Sakura520222"
},
"astrbot_plugin_gok": {
"display_name": "王者荣耀游戏数据查询工具",
"desc": "王者荣耀的战绩、资料等内容的查询",
"author": "飞翔大野猪",
"repo": "https://github.com/qsc20001102/astrbot_plugin_gok",
"tags": [
"王者荣耀",
"数据查询"
]
},
"astrbot_plugin_lyrics_trigger": {
"display_name": "接歌词",
"desc": "基于网易云API的接歌词插件。",
"author": "Azured",
"repo": "https://github.com/Aoi-Karlin/astrbot_plugin_lyrics_trigger"
},
"astrbot_plugin_autobackup": {
"display_name": "AstrBot 自动备份插件",
"desc": "AstrBot 自动备份插件,支持定时备份和手动备份,自动排除 .venv 目录及其他不必要的文件。",
"author": "enldm",
"repo": "https://github.com/enldm/astrbot_plugin_autobackup",
"tags": [
"工具"
],
"social_link": "github.com/enldm"
},
"astrbot_plugin_teamup": {
"display_name": "谁 TM 和我组队",
"desc": "组队报名与随机分队插件。",
"author": "Chinachani",
"repo": "https://github.com/Chinachani/astrbot_plugin_teamup",
"tags": [
"组队",
"跨群"
]
},
"astrbot_plugin_newapi": {
"display_name": "NewAPI 多功能插件",
"desc": "astrbot_plugin_newapi是一个为 AstrBot 打造的 QQ 群 ↔ New API 网站联动插件,集用户绑定、额度经济、群聊互动、管理员工具 于一体,并支持 退群自动解绑与账号净化 的全自动管理套件。",
"author": "Future-404",
"repo": "https://github.com/Future-404/astrbot_plugin_newapi",
"tags": [
"newapi",
"api",
"签到",
"娱乐"
],
"social_link": "https://github.com/Future-404"
},
"astrbot_plugin_live2d_pet": {
"display_name": "live2d_pet",
"desc": "聊天信息投射到桌宠,以及与桌宠交互。",
"author": "coolwind886",
"repo": "https://github.com/coolwind886-spec/astrbot_plugin_live2d_pet/"
},
"astrbot_plugin_steam_updates": {
"display_name": "Steam 游戏更新推送插件",
"desc": "使用 Steam News API 轮询游戏更新并推送(支持多 AppID / 卡片或文本)",
"author": "DearCrazyLeaf",
"repo": "https://github.com/DearCrazyLeaf/astrbot_plugin_steam_updates",
"tags": [
"steam"
]
},
"astrbot_plugin_codemage": {
"display_name": "CodeMage",
"desc": "还在手写 AstrBot 插件?描述你想要的功能,看着 AI 把它变成可运行的代码——不需要编程经验,不需要翻阅文档,只需要一句话。CodeMage 正在改变机器人扩展的开发方式,而你绝对想不到它还能做到什么。",
"author": "qa296",
"repo": "https://github.com/qa296/astrbot_plugin_codemage",
"tags": [
"ai",
"agent",
"codegen"
]
},
"astrbot_plugin_XYTUFunction": {
"display_name": "XYTUFunction | XYTU 功能集",
"desc": "AstrBot 基础功能插件? 一个就够了!",
"author": "Tangzixy, Slime, SLserver, XYTUworkshop",
"repo": "https://github.com/XYTUworkshop/astrbot_plugin_XYTUFunction",
"tags": [
"功能",
"状态查询"
],
"social_link": "https://www.xytuws.cn"
},
"astrbot_plugin_lzpersona": {
"display_name": "快捷人格生成",
"desc": "AI 驱动的人格生成、优化、画像工具。通过简单描述生成人格,智能优化提示词,与 AstrBot 原生 Persona 系统无缝集成。",
"author": "SJ",
"repo": "https://github.com/idiotsj/astrbot_plugin_lzpersona/tree/main",
"tags": [
"画像",
"效率",
"人格",
"提示词"
],
"social_link": "https://github.com/idiotsj"
},
"astrbot_plugin_clawdbot_bridge": {
"display_name": "astrbot_plugin_clawdbot_bridge",
"desc": "AstrBot 与 OpenClaw 的桥接插件,允许管理员通过 QQ 消息直接与 OpenClaw AI Agent 交互,执行系统管理、文档生成等任务。",
"author": "4869-yinxu",
"repo": "https://github.com/4869-yinxu/astrbot_plugin_clawdbot_bridge",
"tags": [
"openclaw",
"qq"
],
"social_link": "https://github.com/4869-yinxu"
},
"astrbot_plugin_riddlegame": {
"display_name": "qq群棋类游戏",
"desc": "qq群生图棋类游戏",
"author": "Riddle",
"repo": "https://github.com/R1ddle1337/astrbot_plugin_riddlegame",
"tags": [
"游戏",
"文生图",
"围棋",
"象棋",
"井字棋"
],
"social_link": "https://github.com/R1ddle1337"
},
"astrbot_plugin_xinsanguo_voice": {
"display_name": "新三国语音梗插件",
"desc": "一个 AstrBot 插件,用于识别群聊中的新三国经典台词关键词,自动发送对应的语音片段。",
"author": "落日七号、复读机长",
"repo": "https://github.com/luori7hao/astrbot_plugin_xinsanguo_voice",
"tags": [
"娱乐"
]
},
"astrbot_plugin_elves_world": {
"display_name": "精灵世界",
"desc": "精灵对战游戏 - 探索、收集、战斗!",
"author": "DITF16",
"repo": "https://github.com/DITF16/astrbot_plugin_elves_world",
"tags": [
"游戏",
"养成",
"对战"
],
"social_link": "https://github.com/DITF16"
},
"astrbot_plugin_simple_injections": {
"name": "",
"display_name": "轻量级提示词注入",
"desc": "轻量级提示词注入插件。允许用户使用指令进行指定轮次的提示词注入,适用于跑团主持人等需要在规定轮次内持续完成特定任务的场景。",
"author": "fjontk",
"repo": "https://github.com/fjontk/astrbot_plugin_simple_injections",
"tags": [
"提示词注入",
"prompt"
]
},
"astrbot_plugin_ipquery": {
"name": "",
"display_name": "IP地址查询",
"desc": "查询 IP 地理位置及类型查询插件。",
"author": "TianLang Hacker",
"repo": "https://github.com/TianLang-Hacker/astrbot_plugin_ipquery",
"tags": [
"IP查询",
"IP Query",
"IP"
],
"social_link": "https://tianlang-hacker.github.io/"
},
"diyrule": {
"display_name": "自定义群聊的唤醒规则",
"desc": "为每个群聊自定义唤醒规则",
"author": "懒大猫",
"repo": "https://github.com/landamao/diyrule",
"tags": [
"工具",
"辅助",
"群聊",
"功能"
]
},
"astrbot_plugin_hlymcn_signin": {
"display_name": "HLYM服务器工具",
"desc": "一个为HLYM社区定向开发的服务器工具插件,提供基础的查询功能,如果需要使用捆绑的更多功能需要自行适配后端系统",
"author": "HLYMCN",
"repo": "https://github.com/DearCrazyLeaf/astrbot_plugin_hlymcn_signin",
"tags": [
"服务器管理"
],
"social_link": "hlymcn.cn"
},
"astrbot_plugin_pic_mirror": {
"display_name": "更多的图像对称",
"desc": "一个图像对称处理插件,用于生成诡异弔图,可以为图片添加多种镜像效果",
"author": "FenChen0211",
"repo": "https://github.com/FenChen0211/astrbot-plugin-pic-mirror",
"tags": [
"对称",
"图像编辑"
],
"social_link": "https://github.com/FenChen0211"
},
"astrbot_plugin_qqrecord": {
"display_name": "Meeting Recorder",
"desc": "将群消息以“内容【群昵称】”的形式及时进行会议记录。调用命令 `/record [limit]`返回当前会话的最近 N 行",
"author": "WLEzj",
"repo": "https://github.com/WLEzj/astrbot_plugin_qqrecord"
},
"astrbot_plugin_upfanswatcher": {
"display_name": "astrbot_plugin_upfanswatcher",
"desc": "b站up粉丝数定时推送",
"author": "laopanmemz",
"repo": "https://github.com/laopanmemz/astrbot_plugin_upfanswatcher",
"tags": [
"b站",
"哔哩哔哩",
"up",
"监控",
"粉丝"
],
"social_link": "https://space.bilibili.com/447591776"
},
"anti_repeat": {
"display_name": "anti_repeat",
"desc": "指令冷却与防刷屏拦截插件",
"author": "灵汐",
"repo": "https://github.com/yuanshen-scaramouche/star",
"tags": [
"拦截指令",
"刷屏"
]
},
"astrbot_plugin_grok_web_search": {
"display_name": "Grok联网搜索",
"desc": "通过 Grok API 进行实时联网搜索,返回综合答案和来源链接,支持指令,LLM Tool和skills调用。",
"author": "piexian",
"repo": "https://github.com/piexian/astrbot_plugin_grok_web_search",
"tags": [
"网络搜索",
"工具",
"grok"
],
"social_link": "https://github.com/piexian"
},
"astrbot_plugin_fake_ai_watermark": {
"display_name": "仿制AI水印",
"desc": "为图片添加仿制AI水印,支持Gemini和豆包两种风格",
"author": "FenChen0211",
"repo": "https://github.com/FenChen0211/astrbot-plugin-fake-ai-watermark",
"tags": [
"图像",
"水印"
],
"social_link": "https://github.com/FenChen0211"
},
"astrbot_plugin_html_render": {
"display_name": "HTML 渲染插件",
"desc": "将 AI 返回的文本内容渲染成精美图片发送,支持多种预设模板、GIF 动画、Markdown 语法,让聊天体验更加丰富多彩。",
"author": "lumingya",
"repo": "https://github.com/lumingya/astrbot_plugin_html_render"
},
"astrbot_plugin_opencode": {
"display_name": "OpenCode Bridge",
"desc": "让 AstrBot 对接 OpenCode,通过自然语言远程指挥电脑干活。使用此插件,意味着你已知晓相关风险。",
"author": "singularity2000",
"repo": "https://github.com/singularity2000/astrbot_plugin_opencode",
"tags": [
"AI",
"Agent",
"vibe coding",
"OpenCode"
]
},
"astrbot_plugin_claudecode": {
"display_name": "Claude Code CLI",
"desc": "将 Claude Code CLI 作为 LLM 函数工具集成到 AstrBot",
"author": "YukiRa1n",
"repo": "https://github.com/YukiRa1n/astrbot_plugin_claudecode",
"tags": [
"AI",
"Claude",
"Claude Code"
],
"social_link": "https://github.com/YukiRa1n"
},
"astrbot_plugin_sudoku": {
"display_name": "数独游戏",
"desc": "功能:生成唯一解数独题目(简单/中等/困难)对局持久化与超时清理 图片渲染展示棋盘(优先使用PIL本地渲染)填错扣生命值(默认 3 次,归零结束)",
"author": "金幺",
"repo": "https://github.com/wangyingxuan383-ai/astrbot_plugin_sudoku",
"tags": [
"数独",
"游戏",
"娱乐"
],
"social_link": "846994183@qq.com"
},
"astrbot_plugin_meme": {
"display_name": "表情包插件",
"desc": "基于本地目录的表情包发送插件,支持 LLM 自动使用表情包增强对话效果。",
"author": "总觉得缺什么",
"repo": "https://github.com/kasumi-ppp/astrbot_meme_plugin",
"tags": [
"表情包"
]
},
"astrbot_plugin_daily_stock_analysis_adapter": {
"display_name": "DailyStockAnalysis",
"desc": "接收股票分析HTML报告并通过Astrbot发送给指定群组或用户",
"author": "棒棒糖",
"repo": "https://github.com/zhoufan47/astrbot_plugin_daily_stock_analysis_adapter",
"tags": [
"股票"
]
},
"astrbot_plugin_emby": {
"display_name": "Emby 助手",
"desc": "关联自部署 Emby 媒体库。支持 LLM 自动检索影片、获取元数据及最近更新。",
"author": "cyilin36",
"repo": "https://github.com/cyilin36/astrbot_plugin_emby",
"tags": [
"emby",
"媒体库",
"搜索"
],
"social_link": "https://cyilin36.github.io"
},
"astrbot_plugin_telegram_forwarder": {
"display_name": "Telegram Forwarder",
"desc": "将一个公开 Telegram 频道的消息自动转发到你自己的 Telegram 频道或 QQ 群。",
"author": "HSJ-BanFan",
"repo": "https://github.com/HSJ-BanFan/astrbot_plugin_telegram_forwarder",
"tags": [
"频道搬运",
"telegram",
"QQ群转发"
],
"social_link": "https://meilunova.pages.dev/"
},
"astrbot_plugin_NekoMusic": {
"display_name": "Neko 云音乐点歌",
"desc": "一个接入了 Neko 云音乐的点歌插件",
"author": "Nyanyagulugulu(不穿胖次の小奶猫)",
"repo": "https://github.com/NyaNyagulugulu/astrbot_NekoMusic",
"tags": [
"音乐",
"Neko",
"云音乐",
"免费",
"娱乐"
],
"social_link": "https://www.cnmsb.xin"
},
"astrbot_plugin_mooncell_finder": {
"display_name": "MOONCELL搜索插件",
"desc": "MOONCELL搜索插件,用于查询FGO相关的从者、礼装、纹章和特性信息。",
"author": "akidesuwa",
"repo": "https://github.com/aki0623/astrbot_plugin_mooncell_finder",
"tags": [
"FGO",
"搜索"
]
},
"astrbot_plugin_smart_segment_reply": {
"display_name": "智能分段回复插件",
"desc": "通过调用硅基流动免费的大模型实现智能的分段回复,也支持自定义分段回复大模型",
"author": "Wyccotccy",
"repo": "https://github.com/Wyccotccy/astrbot_plugin_smart_segment_reply",
"tags": [
"分段回复"
],
"social_link": "https://cinder.wyccotccy.cn/"
},
"astrbot_plugin_vibe": {
"display_name": "vibe",
"desc": "Codex app-server vibe plugin.",
"author": "vmoranv",
"repo": "https://github.com/vmoranv/astrbot_plugin_vibe",
"tags": [
"vibecoding"
],
"social_link": "https://github.com/vmoranv/"
},
"astrbot_plugin_wifepicker": {
"display_name": "今日老婆",
"desc": "全新的抽取群友当老婆的插件,可以增进群友的感情()。只抽一个月内取发言过的人,并且可生成老婆关系图,还可以强娶哦~",
"author": "何夕",
"repo": "https://github.com/Heximiao/astrbot-plugin-wifepicker",
"tags": [
"抽老婆",
"抽",
"群友",
"老婆"
],
"social_link": "https://github.com/Heximiao"
},
"astrbot_plugin_steamwatch": {
"display_name": "Steam 视奸机器人",
"desc": "通过astrbot视奸你的steam好友!",
"author": "Chinachani",
"repo": "https://github.com/Chinachani/astrbot_plugin_steamwatch",
"tags": [
"steam",
"视奸"
]
},
"astrbot_plugin_minecraft_monitor": {
"display_name": "MC 服务器监控(适配基岩版与 Java 版)",
"desc": "Minecraft服务器监控插件,支持定时检测服务器状态变化并发送通知。可配置目标群、服务器地址、检查间隔等。",
"author": "cryfly666",
"repo": "https://github.com/cryfly666/astrbot_plugin_apimcmc",
"tags": [
"mc",
"Minecraft",
"mc服务器"
],
"social_link": "https://github.com/cryfly666"
},
"astrbot_plugin_image_url_base64_to_mcp": {
"display_name": "图片_url_base64_传递至_mcp",
"desc": "帮助 MCP 工具从上下文中获取图片 URL 或 Base64 数据。",
"author": "Thetail001",
"repo": "https://github.com/Thetail001/astrbot_plugin_image_url_base64_to_mcp",
"tags": [
"tool",
"mcp",
"图片"
]
},
"astrbot_plugin_at_ignore": {
"display_name": "忽略@消息",
"desc": "让 Bot 不响应任何 @ 它的消息,被 @ 时直接忽略,不进行 LLM 处理。",
"author": "lamp3721",
"repo": "https://github.com/lamp3721/astrbot_plugin_at_ignore"
},
"message_cleaner": {
"display_name": "消息清洗器",
"desc": "在 Bot 回复前过滤掉人机词汇或者你不喜欢的内容",
"author": "懒大猫",
"repo": "https://github.com/landamao/message_cleaner",
"tags": [
"美化"
]
},
"astrbot_plugin_friends_welcome": {
"display_name": "friends_welcome",
"desc": "(OneBot v11) 好友审批系统",
"author": "mjy1113451# 作者",
"repo": "https://github.com/mjy1113451/astrbot_plugin_friends_welcome"
},
"astrbot_plugin_HowMuchIsYourFace": {
"display_name": "头像值多少",
"desc": "头像值多少钱?让 AstrBot 来给你估个价! 本插件基于玄学算法(和一点点AI魔法),为群友的头像进行“专业”估值——可能是百万像素富翁,也可能是表情包难民。纯属娱乐,切勿当真!快@机器人看看你的头像值几个亿吧~ 💰📸",
"author": "qiyuqingyun",
"repo": "https://github.com/qiyuqingyun/HowMuchIsYourFace",
"tags": [
"头像",
"估价"
],
"social_link": "https://github.com/qiyuqingyun"
},
"astrbot_plugin_qq_tools": {
"display_name": "QQ 工具集",
"desc": "为 AstrBot 提供 QQ 平台(OneBot / aiocqhttp)特定的工具集:引用回复、撤回消息、检索最近消息、群管理、头像查看、网页浏览(Playwright)、视频分析(Gemini)、以及「定时唤醒」等能力。\n让机器人在 QQ 场景下的“动手能力”更强,增强自主性。",
"author": "YUMU1658",
"repo": "https://github.com/YUMU1658/astrbot_plugin_qq_tools",
"tags": [
"Agent",
"工具",
"浏览器",
"aiocqhttp",
"QQ"
]
},
"astrbot_plugin_skland": {
"display_name": "森空岛签到",
"desc": "森空岛签到,支持终末地和明日方舟,支持定时签到",
"author": "Azincc",
"repo": "https://github.com/Azincc/astrbot_plugin_skland",
"tags": [
"明日方舟",
"终末地",
"自动签到"
],
"social_link": "https://github.com/Azincc/"
},
"astrbot_plugin_tomin": {
"display_name": "Tomin - 少女乐队游戏",
"desc": "一个少女乐队休闲游戏插件。",
"author": "Llyjus",
"repo": "https://github.com/Llyjus/astrbot_plugin_tomin",
"tags": [
"少女乐队",
"gbc",
"bangdream"
]
},
"astrbot_plugin_odoo": {
"display_name": "AstrBot Odoo 连接器",
"desc": "连接 AstrBot 与 Odoo 18 Discuss 模块,实现企业内部 AI 机器人功能。",
"author": "mact",
"repo": "https://github.com/chaojimct/astrbot_plugin_odoo",
"tags": [
"odoo",
"连接器"
]
},
"astrbot_plugin_dailynews_agent": {
"display_name": "dailynews_agent",
"desc": "基于 Multi-Agent 的日报插件。",
"author": "xunxiing",
"repo": "https://github.com/xunxiing/astrbot_dailynews_agent",
"tags": [
"日报",
"multiagent"
]
},
"astrbot_plugin_trpgdice_rerolled": {
"display_name": "星星骰娘-重骰版!",
"desc": "支持自定义回复的骰娘插件!基于trpgdice_complete开发",
"author": "星空凌",
"repo": "https://github.com/HosisoraLing/astrbot_plugin_trpgdice_rerolled",
"tags": [
"TRPG",
"跑团",
"桌游",
"COC",
"骰娘"
]
},
"astrbot_plugin_bestdori_tools": {
"display_name": "BanG!Dream!Bestdori工具箱",
"desc": "少女乐团派对 游戏查询工具:基于Bestdori资源网的活动信息、卡面查询、生日祝福、订阅播报(应该没成)等简易功能,代码基本是ai跑的,bug大堆,但还是跑通了,等其它大佬能够集成更多茨菇没有的指令简单的有趣功能。",
"author": "findx1197",
"repo": "https://github.com/findx010197/astrbot_plugin_bestdori_tools/tree/main",
"social_link": "https://github.com/findx010197"
},
"astrbot_plugin_wfbot": {
"display_name": "WF 游戏相关数据查询订阅",
"desc": "Warframe 数据层(世界状态/PublicExport/多镜像/market),支持缓存、清理与定时刷新",
"author": "Youzini",
"repo": "https://github.com/Youzini-afk/astrbot_plugin_wfbot",
"tags": [
"游戏",
"warframe"
],
"social_link": "https://github.com/Youzini-afk"
},
"astrbot_plugin_group_aip_review": {
"display_name": "群消息内容安全审核插件",
"desc": "让我康康你的消息正不正常喵?基于百度内容审核API对群聊消息进行实时审查喵,支持文本和图片审核喵,自动处置违规内容并通知管理员喵。",
"author": "香草味的纳西妲喵(VanillaNahida)",
"repo": "https://github.com/VanillaNahida/astrbot_plugin_group_aip_review",
"tags": [
"管理",
"审查"
],
"social_link": "https://github.com/VanillaNahida"
},
"astrbot_plugin_goons": {
"display_name": "塔科夫三狗位置查询",
"desc": "查询逃离塔科夫中 Goons 小队(三狗)的实时位置",
"author": "Juhua402",
"repo": "https://github.com/Juhua402/astrbot_plugin_goons",
"tags": [
"游戏",
"塔科夫",
"工具"
]
},
"astrbot_plugin_nnnu_wm_electricity": {
"display_name": "南宁师范大学-武鸣校区电费提醒插件",
"desc": "提醒电费还够不够、有人充了电费等功能",
"author": "Tom?",
"repo": "https://github.com/2732335411/astrbot_plugin_nnnu_wm_electricity_repo"
},
"astrbot_plugin_crypto_asset": {
"display_name": "数字货币资产查询与监控插件",
"desc": "astrbot_plugin_crypto_asset 是一个功能强大的 AstrBot 插件,专为加密货币用户设计。它不仅支持实时查询全网虚拟币价格,还具备多链钱包地址转账监控功能,让您随时随地掌握链上动态。",
"author": "Arturia169",
"repo": "https://github.com/Arturia169/astrbot_plugin_crypto_asset",
"tags": [
"虚拟货币",
"查询"
],
"social_link": "https://github.com/Arturia169"
},
"astrbot_plugin_spider": {
"display_name": "网站订阅",
"desc": "订阅不同网站的更新并推送给用户",
"author": "zanderzhng",
"repo": "https://github.com/stonk-org/astrbot_plugin_spider"
},
"astrbot_plugin_komari_status": {
"display_name": "Komari 监控查询",
"desc": "AstrBot 的 Komari 服务器状态监控插件。支持查询节点列表、实时状态、公开设置及版本信息。支持生成精美的状态图片,并允许用户自定义触发指令。",
"author": "nulijiazaizhong",
"repo": "https://github.com/nulijiazaizhong/astrbot_plugin_komari_status",
"social_link": "https://github.com/nulijiazaizhong"
},
"astrbot_plugin_lark_enhance": {
"display_name": "飞书增强",
"desc": "增强 AstrBot 在飞书场景下的表现,支持上下文感知增强(名字、群名、聊天记录、引用回复),流式输出,@群成员等",
"author": "anneviliu",
"repo": "https://github.com/anneviliu/astrbot_lark_enhance",
"tags": [
"Lark",
"飞书"
],
"social_link": "https://github.com/anneviliu"
},
"astrbot_plugin_worldbook": {
"display_name": "世界书插件",
"desc": "面向 LLM 的「世界书」系统实现插件。可在特定触发条件下,将预设内容注入至 system_prompt,用于临时或持续影响 AI 的世界观、角色行为与回复逻辑",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_worldbook",
"tags": [
"提示词",
"prompt",
"世界书"
],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_service_watcher": {
"display_name": "互联网服务监控",
"desc": "聚合监控 GitHub、OpenAI、Cloudflare 等主流服务的运行状态。通过各服务官方提供的 JSON API 进行轮询,在检测到服务状态异常或恢复时第一时间发送预警推送。",
"author": "Aloys233",
"repo": "https://github.com/Aloys233/astrbot_plugin_service_watcher"
},
"astrbot_plugin_cmdmask": {
"display_name": "指令伪装",
"desc": "将真实指令映射为伪装指令,并支持静默或自定义回复,用“今天天气真好”代替“/reset”,用“挺好”代替“/reset”的回复,悄悄的重置,避免露馅。",
"author": "木有知",
"repo": "https://github.com/muyouzhi6/strbot_plugin_cmdmask",
"social_link": "https://github.com/muyouzhi6"
},
"astrbot_plugin_daily_sharing": {
"display_name": "定时主动分享所见所闻",
"desc": "Daily Sharing 打破了单一的图文限制,让 Bot 拥有了“开口说话”的能力,根据时间段、生活状态、聊天记忆和网络热搜,通过带有情绪的语音、配图与文字,向指定的好友或群组分享生活点滴。",
"author": "四次元未来",
"repo": "https://github.com/siciyuanweilai/astrbot_plugin_daily_sharing",
"tags": [
"拟人",
"分享",
"定时",
"推送"
],
"social_link": "https://github.com/siciyuanweilai"
},
"astrbot_plugin_group_auto_clean_member": {
"display_name": "群聊自动满员清人",
"desc": "(仅 OneBot) 当群聊满员时,自动移除活跃度倒数第一的成员,同时提示倒数第二成员尽快发言。",
"author": "香草味的纳西妲喵(VanillaNahida)",
"repo": "https://github.com/VanillaNahida/astrbot_plugin_group_auto_clean_member",
"tags": [
"群管",
"清人",
"管理"
],
"social_link": "https://github.com/VanillaNahida"
},
"astrbot_plugin_judge": {
"display_name": "智能路由判断",
"desc": "根据用户消息复杂度,智能选择高智商模型或快速模型进行回答",
"author": "HEI",
"repo": "https://github.com/HEI1491/astrbot_plugin_judge",
"social_link": "https://github.com/HEI1491"
},
"astrbot_plugin_bbt_daily_news": {