-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathplugins.json
More file actions
3191 lines (3191 loc) · 143 KB
/
plugins.json
File metadata and controls
3191 lines (3191 loc) · 143 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_m": {
"desc": "AI自动识别对话中的歌名,支持发送音乐卡片、链接、语音、音频文件,集成网易云音乐数据接口",
"author": "Mnbqq",
"repo": "https://github.com/Mnbqq/astrbot_plugin_m",
"tags": ["音乐"]
},
"astrbot_plugin_slg": {
"desc": "用astrbot玩slg",
"author": "xunxiing",
"repo": "https://github.com/xunxiing/astrbot_plugin_slg",
"tags": ["游戏", "slg"]
},
"qq_group_sign": {
"desc": "QQ群打卡插件,支持自动定时打卡、白名单模式、管理员通知等功能",
"author": "EraAsh",
"repo": "https://github.com/EraAsh/astrbot_plugin_qq_group_sign",
"tags": ["QQ群打卡"],
"social_link": "https://github.com/EraAsh"
},
"astrbot_plugin_livingmemory": {
"desc": "为 AstrBot 打造的、拥有完整记忆生命周期的智能长期记忆插件。",
"author": "lxfight",
"repo": "https://github.com/lxfight-s-Astrbot-Plugins/astrbot_plugin_livingmemory",
"tags": ["memory", "rag"]
},
"astrbot_plugin_mathitools": {
"desc": "基于mpmath&eval的简易数学表达式支持",
"author": "NekoiMeiov_Team",
"repo": "https://github.com/NekoiMeiov/astrbot_plugin_mathitools",
"tags": ["函数工具", "数学"]
},
"astrbot_plugin_completely_disable": {
"desc": "通过黑名单或白名单模式完全禁止某个群聊或用户使用机器人。",
"author": "qa296",
"repo": "https://github.com/qa296/astrbot_plugin_completely_disable",
"tags": ["黑名单", "禁用"],
"social_link": "https://github.com/qa296"
},
"astrbot_plugin_recall_cancel": {
"desc": "“你撤回了我就当你没发过”,当用户撤回触发LLM回应的消息时,如果LLM回复还未发送则取消发送。防止用户发错消息撤回后机器人仍然回复的情况,提升用户体验并避免资源浪费。",
"author": "木有知",
"repo": "https://github.com/muyouzhi6/astrbot_plugin_recall_cancel",
"tags": [
"消息管理",
"撤回处理",
"LLM控制",
"用户体验",
"自动化",
"QQ机器人",
"OneBot"
],
"social_link": "https://github.com/muyouzhi6"
},
"astrbot_plugin_multimsg": {
"desc": "[仅aiocqhttp] 为bot发送多种类型消息提供便捷命令,包括markdown,猜拳,转骰子,发表情,音乐卡片,推荐卡片,转发,合并转发,@全体成员...",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_multimsg",
"tags": ["消息"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_keywordsreply": {
"desc": "一个简单的关键词自动回复插件",
"author": "Origin173",
"repo": "https://github.com/Origin173/astrbot_plugin_keywordsreply",
"tags": ["自动回复", "关键词"]
},
"gemini-25-image-openrouter": {
"desc": "使用openrouter的免费api生成图片",
"author": "喵喵",
"repo": "https://github.com/miaoxutao123/AstrBot_plugin_gemini2point5image-openrouter",
"tags": ["banana", "gemini-2.5-flash-image-preview", "画图", "AI绘画"]
},
"github_star_verify": {
"desc": "[aiocqhttp]使用 GitHub 仓库的 Star 状态作为入群验证条件,仅允许已 Star 指定仓库的用户留在群内。",
"author": "Qian23333",
"repo": "https://github.com/Qian23333/astrbot_plugin_github_star_verify"
},
"astrbot-qq-group-daily-analysis": {
"desc": "QQ群日常分析插件 - 生成精美的群聊分析报告,支持话题分析、用户称号、群聊金句等功能",
"author": "SXP-Simon",
"repo": "https://github.com/SXP-Simon/astrbot-qq-group-daily-analysis",
"tags": ["QQ", "群聊", "分析", "总结"],
"social_link": "https://github.com/SXP-Simon"
},
"astrbot_plugin_boss_notifier": {
"desc": "AstrBot头目通知插件,可更新头目信息并通知订阅者",
"author": "Alent7",
"repo": "https://github.com/Alent7/astrbot_plugin_boss_notifier"
},
"astrbot_plugin_furry_dsgg": {
"desc": "[仅aiocqhttp] 广告助手,帮助你向所有群聊定时发送广告",
"author": "furryhm",
"repo": "https://github.com/furryHM-mrz/astrbot_plugin_furry_dsgg"
},
"astrbot_plugin_mememaker_api": {
"author": "jmt059",
"repo": "https://github.com/jmt059/astrbot_plugin_mememaker_api",
"desc": "表情包制作插件(api版),功能齐全,需要调用 meme-generator 服务",
"tags": ["meme", "api", "表情包"]
},
"wxauto_repost": {
"desc": "微信消息转发框架插件 - 基于 wxauto 库和 OneBotV11 协议,支持微信消息与 OneBotV11 协议的双向转发",
"author": "汐灿",
"repo": "https://github.com/luosheng520qaq/wxauto-repost-onebotv11",
"tags": ["wechat", "wxauto"],
"social_link": "blog.isla.ltd"
},
"astrbot_plugin_AnimeMagnet": {
"desc": "这是一个动漫磁链查询插件,可以获取动漫磁链",
"author": "Hxfrzc",
"repo": "https://github.com/Hxfrzc/astrbot_plugin_AnimeMagnet",
"tags": ["动漫", "番剧", "磁链"]
},
"astrbot_plugin_restrict_syscmd": {
"desc": "限制仅管理员可用某些指令(支持自定义),静默处理不回复,防止bot被测,防止被恶意new、reset等",
"author": "木有知",
"repo": "https://github.com/muyouzhi6/astrbot_plugin_restrict_syscmd"
},
"astrbot_plugin_jojo_stand_panel": {
"desc": "一个用于 AstrBot 的 JOJO 替身面板生成插件,调用 TripleYing 的 API 生成 JOJO 风格替身面板图片。支持随机生成、自定义设置、替身系统等功能。",
"author": "Dogend",
"repo": "https://github.com/Dogend233/astrbot_plugin_jojo_stand_panel",
"tags": ["JOJO"],
"social_link": "http://www.tripleying.com/jojo"
},
"astrbot_plugin_qun_album": {
"desc": "[仅napcat>=4.8.100] 群相册插件,记录群友怪话",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_qun_album",
"tags": ["群相册"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_favourpro": {
"desc": "这是一个与现有好感度系统完全不同的插件。它不再是一个简单的数值计算工具,而是旨在为 AI 模拟一个多维度、自主且保密的内心世界。AI 会根据与用户的互动,真实地改变其内在的“好感度”、“态度”和“关系”,并通过回应风格的变化自然地流露出来。",
"author": "天各一方",
"repo": "https://github.com/Catfish872/astrbot_plugin_favourpro"
},
"astrbot_plugin_vtb_adapter": {
"desc": "用于连接 AstrBot 与 Open LLM Vtuber,除安装插件外还需要修改 Open LLM Vtuber 中的相关文件",
"author": "YakumoAki",
"repo": "https://github.com/murphys7017/astrbot_plugin_vtb_adapter",
"tags": ["适配器"]
},
"astrbot_plugin_ms_aiimg": {
"desc": "接入魔搭社区文生图模型",
"author": "竹和木",
"repo": "https://github.com/3451996649/astrbot_plugin_ms_aiimg"
},
"asbot_plugin_furry_mzxyy": {
"desc": "毛主席一言",
"author": "furryhm",
"repo": "https://github.com/furryHM-mrz/asbot_plugin_furry_mzxyy"
},
"astrbot_plugin_auto_ban_new": {
"desc": "在指定群聊中对新入群用户自动禁言并发送欢迎消息,支持多种方式解除监听。帮助群管理员更好地管理新成员,确保新成员先阅读群规再发言。",
"author": "糯米茨",
"repo": "https://github.com/nuomicici/astrbot_plugin_auto_ban_new",
"tags": ["禁言", "群管"],
"social_link": "https://qm.qq.com/q/wMGXYfKKoS"
},
"command_to_llm": {
"desc": "将指令(比如/help)转换为LLM函数(比如 get_help)调用,让AI能够通过LLM函数执行其他插件的指令,支持动态添加和管理指令映射",
"author": "kjqwdw",
"repo": "https://github.com/kjqwer/astrbot_plugin_command_to_llm",
"tags": ["command", "llm", "function"],
"social_link": "https://github.com/kjqwer"
},
"astrbot_plugin_lark_send_patcher": {
"desc": "通过猴子补丁的方式,优化了飞书Lark适配器下,机器人发送的消息引用太频繁的问题。现在飞书下所有的机器人回复从引用消息变更为直接发送。插件可能会随着astrbot本体版本更新,涉及到lark_adapter和lark_event重大更新时失效。",
"author": "天各一方",
"repo": "https://github.com/Catfish872/lark_send_patcher"
},
"astrbot_plugin_message_tester": {
"desc": "使用 logger 完整打印消息结构",
"author": "drdon1234",
"repo": "https://github.com/drdon1234/astrbot_plugin_message_tester",
"tags": ["调试"]
},
"asbot_plugin_furry-API": {
"desc": "调用趣绮梦云黑API查询用户的插件",
"author": "furryhm",
"repo": "https://github.com/furryHM-mrz/asbot_plugin_furry-API-"
},
"asbot_plugin_furry-API-hy": {
"desc": "调用趣绮梦云黑API的群黑云查询踢出还有进群自动检测黑云有问题自动踢出的插件",
"author": "furryhm",
"repo": "https://github.com/furryHM-mrz/asbot_plugin_furry-API-hy"
},
"astrbot_plugin_urldb": {
"desc": "为 [老九网盘数据库系统](https://github.com/ctwj/urldb) 设计的AstrBot插件,支持被@时搜索功能。",
"author": "老九",
"repo": "https://github.com/ctwj/astrbot_plugin_urldb",
"social_link": "https://pan.l9.lc"
},
"astrbot_plugin_furry_cg": {
"desc": "小茶馆插件",
"author": "furryhm",
"repo": "https://github.com/furryHM-mrz/astrbot_plugin_furry_cg"
},
"astrbot_plugin_furry_cgsjk": {
"desc": "小茶馆数据库插件,为小茶馆插件提供数据支持",
"author": "furryhm",
"repo": "https://github.com/furryHM-mrz/astrbot_plugin_furry_cgsjk"
},
"astrbot_plugin_typst_support": {
"desc": "添加 typst 渲染支持",
"author": "baitwo02",
"repo": "https://github.com/baitwo02/astrbot_plugin_typst_support",
"tags": ["typst"]
},
"astrbot_plugin_retry_v2": {
"desc": "一个基于事件钩子的、处理空回复和截断等非完整响应的重试插件",
"author": "长安某",
"repo": "https://github.com/zgojin/astrbot_plugin_retry_v2",
"tags": "优化",
"social_link": "astrbot.uk"
},
"astrbot_plugin_papertrading": {
"desc": "基于a股真实数据的模拟炒股插件。支持实时股价、委托交易、持仓管理、群内排行等功能。",
"author": "Shiroim",
"repo": "https://github.com/Shiroim/astrbot_plugin_papertrading",
"tags": ["股市"]
},
"astrbot_plugin_figurine_workshop": {
"desc": "基于gemini生图的手办化,不再需要本地部署。",
"author": "长安某",
"repo": "https://github.com/zgojin/astrbot_plugin_figurine_workshop",
"tags": "娱乐",
"social_link": "astrbot.uk"
},
"should_I_respond": {
"desc": "“我要回复这条消息吗?”当打开主动回复时,LLM 可能傻傻的就部分上下文一直回复。这个插件没准能解决这个问题。(在 aiocqhttp 平台测试,需要搭配主动回复功能使用)",
"author": "idk114-514",
"repo": "https://github.com/idk114-514/should_I_respond"
},
"astrbot_plugin_lmarena": {
"desc": "全面对接lmarena(模型竞技场),免费无限调用模型,如调用nano-banana进行手办化",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_lmarena",
"tags": ["LMArena", "nano_banana", "手办化"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_Mirecraft_motd": {
"desc": "Minecraft motd 探测服务器的插件",
"author": "ChuranNeko",
"repo": "https://github.com/ChuranNeko/astrbot_plugin_mirecraft_motd",
"tags": ["Minecraft", "motd"]
},
"astrbot-plugin-huaer-bot": {
"desc": "基于 SiliconFlow API 的多组群聊天插件,支持人格设定、Markdown 显示、联网搜索、检索增强生成(RAG)等功能",
"author": "HuaEr DevGroup",
"repo": "https://github.com/suizoe-cosine/astrbot-plugin-huaer-bot",
"tags": ["ChatBot", "LLM", "RAG"]
},
"astrbot_plugin_pic_search": {
"desc": "爬取 Bing 的图片搜索结果,再使用 VLM 进行选择处理",
"author": "RC-CHN",
"repo": "https://github.com/RC-CHN/astrbot_plugin_pic_search"
},
"astrbot_plugin_spaghetti_concrete": {
"desc": "一本正经胡说八道生成器 —— 基于“意大利面混凝土理论”,输出跨领域因果谬误文案。",
"author": "KONpiGG",
"repo": "https://github.com/KONpiGG/spaghetti_concrete",
"tags": ["胡说八道", "娱乐"]
},
"astrbot_plugin_ctx_trimmer": {
"desc": "按照 Token 丢弃对话的插件",
"author": "xunxiing & gpt5",
"repo": "https://github.com/xunxiing/astrbot_plugin_ctx_trimmer",
"tags": ["对话丢弃", "token", "llm"]
},
"astrbot_plugin_steam_topsellers": {
"desc": "获取 Steam 热销榜前 5 名游戏",
"author": "danfong1104",
"repo": "https://github.com/danfong1104/astrbot_plugin_steam_topsellers",
"tags": ["Steam"],
"social_link": "https://github.com/danfong1104"
},
"astrbot_plugin_tts_emotion_router": {
"desc": "按情绪路由到不同音色与语速的 TTS 插件(硅基流动 API,其他OpenAI语音接口api同样适配),支持隐藏标记与启发式情绪识别、概率/长度/冷却门控与会话开关。",
"author": "木有知",
"repo": "https://github.com/muyouzhi6/astrbot_plugin_tts_emotion_router",
"tags": ["TTS", "情绪识别", "SiliconFlow"],
"social_link": "https://github.com/muyouzhi6"
},
"astrbot_plugin_keyword_monitor": {
"desc": "当群里出现关键词时触发自动提醒。",
"author": "NMpancake",
"repo": "https://github.com/NMpancake/astrbot_plugin_keyword_monitor",
"tags": ["工具", "关键词监控"],
"social_link": "mailto://2461248172@qq.com"
},
"astrbot_plugin_Xiaomi_BandProMax": {
"desc": "小米手环的新用法",
"author": "Futureppo",
"repo": "https://github.com/Futureppo/astrbot_plugin_Xiaomi_BandProMax",
"tags": ["MiBand"],
"social_link": "https://github.com/Futureppo"
},
"astrbot_plugin_immersive_control": {
"desc": "🎮 给 AI 植入神奇小玩具的娱乐插件,3分钟沉浸式互动体验。",
"author": "木有知",
"repo": "https://github.com/muyouzhi6/astrbot_plugin_immersive_control",
"social_link": "https://github.com/muyouzhi6"
},
"astrbot_plugin_provider_ark_ResponsesAPI": {
"desc": "将火山方舟(Volcengine Ark)的上下文缓存API(Responses API)注册为 AstrBot 的对话服务提供商(Provider)(支持/provider、缓存命中统计、Function Calling)",
"author": "CaQing & GPT-5 Thinking",
"repo": "https://github.com/caqingtgas/astrbot_plugin_provider_ark_ResponsesAPI"
},
"astrbot_plugin_meme_generator": {
"desc": "高性能表情包生成器 - 支持多种模板和智能参数识别,具备头像缓存、用户冷却、超时控制等高级功能",
"author": "SodaSizzle",
"repo": "https://github.com/SodaSizzle/astrbot_plugin_meme_generator",
"tags": ["表情包"],
"social_link": "https://github.com/SodaSizzle"
},
"astrbot_plugin_self_learning": {
"desc": "智能自学习对话插件 - 通过实时消息捕获、多维度数据分析、渐进式学习机制和动态人格更新以及社交关系网络,使聊天机器人能够模仿特定用户的对话,实现更自然、个性化的交互",
"author": "NickMo",
"repo": "https://github.com/NickCharlie/astrabot_plugin_self_learning",
"tags": ["模仿", "学习", "人格"],
"social_link": "https://github.com/NickCharlie"
},
"astrbot_plugin_baiduocr": {
"desc": "百度智能云的 OCR 文字识别服务。新用户有千次的免费调用次数,适合轻度使用",
"author": "Yuki Soffd",
"repo": "https://github.com/Soffd/astrbot_plugin_baiduocr",
"tags": ["工具", "OCR", "图片识别"]
},
"astrbot_plugin_WealthAndContract": {
"desc": "集签到、契约与经济系统于一体的群聊插件",
"author": "HINS",
"repo": "https://github.com/WUHINS/astrbot_plugin_WealthAndContract",
"tags": ["经济", "市场", "签到", "社交"],
"social_link": "https://t.me/astrbot_plugin_HINS"
},
"astrbot_plugin_xfbank": {
"desc": "一个简易的银行插件",
"author": "XiaoFu1025",
"repo": "https://github.com/XiaoFu1025/astrbot_plugin_xfbank",
"tags": ["Bank"]
},
"astrbot_plugin_jrysprpr": {
"desc": "今日运势查询,会生成一张图片,包含今日运势、宜忌、吉时等信息。",
"author": "ominus",
"repo": "https://github.com/NINIYOYYO/astrbot_plugin_jrys",
"tags": ["运势"]
},
"astrbot_plugin_wakepro": {
"desc": "更强大的唤醒增强插件:唤醒CD、唤醒合并、提及唤醒、唤醒延长、空@唤醒、话题相关性唤醒、答疑唤醒、无聊唤醒、闭嘴机制、被骂沉默机制、屏蔽人机",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_wakepro",
"tags": ["唤醒增强"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_memora_connect": {
"desc": "一个模仿人类记忆方式的记忆插件。",
"author": "qa296",
"repo": "https://github.com/qa296/astrbot_plugin_memora_connect",
"tags": ["拟人", "记忆"],
"social_link": "https://github.com/qa296/"
},
"astrbot_plugin_iearning_style": {
"desc": "使机器人可以从聊天中学习他人说话方式",
"author": "qa296",
"repo": "https://github.com/qa296/astrbot_plugin_iearning_style",
"tags": ["学习", "拟人"],
"social_link": "https://github.com/qa296"
},
"astrbot_plugin_who_at_me": {
"desc": "谁艾特我?监听 @ 消息,便于快速查找自己被 @ 时说了什么。",
"author": "长安某",
"repo": "https://github.com/zgojin/astrbot_plugin_who_at_me",
"tags": ["工具"],
"social_link": "astrbot.uk"
},
"astrbot_plugin_outputpro": {
"desc": "输出增强插件:报错拦截、文本清洗、随机@、随机引用",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_outputpro",
"tags": ["输出增强"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_image_summary": {
"desc": "[仅aiocqhttp] 图片外显插件, 将群外显示的“图片”二字替换成更丰富的句子",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_image_summary",
"tags": ["图片外显"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_voice_to_text": {
"desc": "语音转文字智能回复插件(新用户看README.md),支持 OpenAI、Groq、Deepgram、Azure 等多种兼容OpenAI格式的STT服务提供商",
"author": "NickMo",
"repo": "https://github.com/NickCharlie/Astrbot-Voice-To-Text-Plugin",
"tags": ["STT", "语音转文字"]
},
"astrbot_plugin_bangumi": {
"desc": "一个用于查询 Bangumi条目的插件",
"author": "Amatsutsumi",
"repo": "https://github.com/Amatsutsumi/astrbot_plugin_bangumi",
"tags": ["bangumi"],
"social_link": "https://github.com/Amatsutsumi/astrbot_plugin_bangumi"
},
"asbot_plugin_furry_jtwzbq": {
"desc": "[QQ] 监听文字表情时重复发送",
"author": "furryhm",
"repo": "https://github.com/furryHM-mrz/asbot_plugin_furry_jtwzbq"
},
"astrbot_plugin_index_tts": {
"desc": "基于index-tts对AstrBot的语音转文字(TTS)补充",
"author": "xiewoc",
"repo": "https://github.com/xiewoc/astrbot_plugin_index_tts",
"tags": ["TTS", "文字转语音"],
"social_link": "https://github.com/xiewoc"
},
"astrbot_plugin_aolastar": {
"desc": "通过Aolarhapsody后端 API 解析奥拉星游戏内容",
"author": "vmoranv",
"repo": "https://github.com/vmoranv/astrbot_plugin_aolastar",
"tags": ["奥拉星"],
"social_link": "https://github.com/vmoranv"
},
"astrbot_plugin_identity_strategy": {
"desc": "为群聊/私聊注入指定的应对提示词(纯配置,无命令;支持特殊ID与空白策略)",
"author": "CaQing & GPT-5 Pro",
"repo": "https://github.com/caqingtgas/astrbot_plugin_identity_strategy"
},
"astrbot_plugin_qzone": {
"desc": "QQ空间对接插件, 可自动发说说、表白墙投稿审核、查看说说",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_qzone",
"tags": ["QQ空间", "说说", "表白墙"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_matchreminder": {
"desc": "算法比赛查询和今日比赛自动提醒 - 支持 CF、牛客、AtCoder 平台",
"author": "LuBanQAQ",
"repo": "https://github.com/LuBanQAQ/astrbot_plugin_matchreminder"
},
"astrbot_plugin_recall": {
"desc": "智能撤回插件,自动判断并撤回bot自身发的长文本、复读词、违禁词、色图、报错等",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_recall",
"tags": ["撤回"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_record_converter": {
"desc": "QQ 语音转化插件,包括语音转文件,文件转语音,同时内置QQ声聊实现TTS",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_record_converter",
"tags": ["语音转化"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_spark_tts": {
"desc": "用于使用 Spark-TTS 进行文字转语音。",
"author": "xiewoc",
"repo": "https://github.com/xiewoc/astrbot_plugin_spark_tts",
"tags": ["TTS", "语音转文字"],
"social_link": "https://github.com/xiewoc"
},
"astrbot_plugin_provider_ark": {
"desc": "将可应用上下文缓存API的火山方舟(Volcengine Ark) 注册为 AstrBot 的对话服务提供商(Provider)(支持 /provider 切换)",
"author": "CaQing & GPT-5",
"repo": "https://github.com/caqingtgas/astrbot_plugin_provider_ark"
},
"astrbot_plugin_daily_reminder": {
"desc": "让机器人支持定时消息",
"author": "小懒",
"repo": "https://github.com/xiaolan0216/astrbot_plugin_daily_reminder"
},
"astrbot_plugin_schedule_injector": {
"desc": "在 LLM 请求前注入日程/目标上下文,并在回复后解析隐藏 JSON 更新日程。支持白名单、每日目标与微目标",
"author": "xunxiing",
"repo": "https://github.com/xunxiing/astrbot_plugin_schedule_injector",
"tags": ["角色扮演", "日程"],
"social_link": "https://github.com/xunxiing"
},
"astrbot_plugin_image_size_limit": {
"desc": "限制图片尺寸",
"author": "ctrlkk",
"repo": "https://github.com/ctrlkk/astrbot_plugin_image_size_limit"
},
"intelligent_retry": {
"desc": "当LLM回复为空或包含特定错误关键词时,自动进行多次重试,提高交互稳定性。",
"author": "木有知 & 长安某",
"repo": "https://github.com/muyouzhi6/astrabot_plugin_retry",
"tags": ["LLM", "工具", "增强"]
},
"astrbot_plugin_Group-Verification_PRO": {
"desc": "一个强大的 QQ 群成员入群验证插件。新成员需回答动态生成的 100 以内加减法问题方可入群。支持完全自定义的提示消息(成功、失败、超时警告、踢出等)和时间控制(验证超时、警告时机、踢出延迟)。当用户回答错误时,会自动生成新题目并重置验证时间,有效防止机器人账号。",
"author": "huntuo146",
"repo": "https://github.com/huntuo146/astrbot_plugin_Group-Verification_PRO",
"tags": ["新成员验证", "群审核"],
"social_link": "https://github.com/huntuo146"
},
"pokemon_fusion": {
"desc": "宝可梦融合插件,支持指定宝可梦融合和随机融合。",
"author": "sugayoiya",
"repo": "https://github.com/sugayoiya/astrbot_plugin_pokemon_fusion",
"tags": ["pokemon", "fusion"],
"social_link": "https://github.com/sugayoiya"
},
"sunsetbot_search": {
"desc": "获取 sunsetbot.top 今日/明日火烧云数据",
"author": "棒棒糖",
"repo": "https://github.com/zhoufan47/astrbot_plugin_sunsetbot_search",
"tags": ["天气", "火烧云"]
},
"astrbot_plugin_soupai": {
"name": "astrbot_plugin_soupai",
"desc": "AI 海龟汤推理游戏插件,支持自动生成谜题、智能判断、验证系统、智能提示、存储库管理等功能。网络题库包含近300道海龟汤,还在持续更新中。",
"author": "KONpiGG",
"repo": "https://github.com/KONpiGG/astrbot_plugin_soupai",
"tags": ["海龟汤"]
},
"astrbot_plugin_typst_render": {
"name": "astrbot_plugin_typst_render",
"desc": "渲染 Typst 代码并返回图片",
"author": "Laplace",
"repo": "https://github.com/Laplace825/astrbot_plugin_typst_render",
"tags": ["Typst"],
"social_link": "www.blog.lap-lace.top"
},
"astrbot_plugin_friberg": {
"desc": "猜 CS Player 的小游戏",
"author": "oldPeter616",
"repo": "https://github.com/oldPeter616/astrbot_plugin_friberg",
"tags": ["CS", "游戏", "弗一把"]
},
"astrbot_plugin_better_markdown_to_image": {
"desc": "更好的 Markdown 转图片,支持自动转换来自 LLM 的回复的 Markdown 内容和指令直接转换",
"author": "MLSLi",
"repo": "https://github.com/MLSLi/astrbot_plugin_better_markdown_to_image",
"tags": ["Markdown", "文转图"]
},
"pjsk_guess_song": {
"desc": "PJSK 猜歌游戏插件",
"author": "nichinichisou",
"repo": "https://github.com/nichinichisou0609/astrbot_plugin_pjsk_guess_song",
"tags": ["pjsk", "猜歌", "初音未来 缤纷舞台"]
},
"astrbot_plugin_screenctrl": {
"desc": "截屏插件,支持单次截屏、连续截屏、定时截屏,需将bot挂载在有屏幕的设备上",
"author": "Zhalslar",
"repo": "https://github.com/Zhalslar/astrbot_plugin_screenctrl",
"tags": ["截屏"],
"social_link": "https://github.com/Zhalslar"
},
"astrbot_plugin_error_pro": {
"desc": "屏蔽机器人的错误消息,选择是否发送给管理员,支持AI友好解释。",
"author": "Chris",
"repo": "https://github.com/Chris95743/astrbot_plugin_error_pro",
"tags": ["报错", "屏蔽", "轮询"]
},
"astrbot_plugin_silent": {
"desc": "一个极其简单的静默插件,当LLM回复内容中包含 silent 关键词时,自动阻止发送回复消息。",
"author": "Chris",
"repo": "https://github.com/chris95743/astrbot_plugin_silent",
"social_link": "https://wickh.cn"
},
"astrbot_plugin_random_likes": {
"desc": "[仅 QQ] 智能检测点赞关键词并自动随机点赞数",
"author": "--sora--",
"repo": "https://github.com/sora-yyds/astrbot_plugin_random_likes",
"tags": ["点赞"]
},
"astrbot_plugin_image_censor": {
"desc": "AstrBot 图片审查插件",
"author": "Omnisch",
"repo": "https://github.com/Omnisch/astrbot_plugin_image_censor"
},
"astrbot_plugin_3dmapi": {
"desc": "3dmmod 搜索插件,支持在 3dmgame Mod 站搜索相关 Mod 内容",
"author": "--sora--",
"repo": "https://github.com/sora-yyds/astrbot_plugin_3dmapi",
"tags": ["3DM", "Mod"]
},
"astrbot_plugin_ragecoop": {
"desc": "GTAV RageCoop 服务器查询插件",
"author": "--sora--",
"repo": "https://github.com/sora-yyds/astrbot_plugin_ragecoop",
"tags": ["GTAV", "RageCoop", "IP"]
},
"astrbot_plugin_TurtleSoup": {
"desc": "海龟汤互动解谜游戏,支持 LLM 自动判题和自定义海龟汤预设题库",
"author": "anchor",
"repo": "https://github.com/anchorAnc/astrbot_plugin_TurtleSoup",
"tags": ["海龟汤"]
},
"astrbot_plugin_update_manager": {
"desc": "一个用于一键更新所有 AstrBot 插件的工具,支持定时检查。",
"author": "bushikq",
"repo": "https://github.com/zhewang448/astrbot_plugin_update_manager",
"tags": ["工具", "实用", "定时任务"],
"social_link": "https://github.com/zhewang448"
},
"astrbot_plugins_canvas": {
"desc": "基于 Gemini AI 模型的画图改图插件,可通过指令或自然语言调用。",
"author": "长安某",
"repo": "https://github.com/zgojin/AstrBot_Plugins_Canvas",
"tags": ["画图", "图像编辑", "工具"],
"social_link": "https://astrbot.uk"
},
"astrbot_plugin_lanzoucloud": {
"desc": "蓝奏云文件解析插件,支持自动检测和手动解析蓝奏云分享链接",
"author": "BB0813",
"repo": "https://github.com/BB0813/astrbot_plugin_lanzoucloud",
"tags": ["文件解析"],
"social_link": "https://qm.qq.com/q/d4lwUp9ap4"
},
"astrbot_plugin_img_rev_searcher": {
"desc": "图片反搜项目,以图搜图,找出处",
"author": "drdon1234",
"repo": "https://github.com/drdon1234/astrbot_plugin_img_rev_searcher",
"tags": ["图片反搜", "以图搜图", "找出处"]
},
"astrbot_plugin_LLMTempBan": {
"desc": "让 Bot 学会主动拉黑或者通过管理员指令拉黑。",
"author": "长安某",
"repo": "https://github.com/zgojin/astrbot_plugin_LLMTempBan",
"tags": ["工具"],
"social_link": "https://astrbot.uk"
},
"astrbot_proactive_reply": {
"desc": "一个支持聊天附带用户信息和定时主动发送消息的 AstrBot 插件",
"author": "AstraSolis",
"repo": "https://github.com/AstraSolis/astrbot_proactive_reply",
"tags": ["聊天增强", "定时任务", "用户信息", "主动回复"]
},
"treasure_bag_plugin": {
"desc": "一个为 AstrBot 设计的多功能插件,包含多种实用和娱乐功能。",
"author": "祁筱欣",
"repo": "https://github.com/xiaomizhoubaobei/astrbot_plugin_treasure_bag",
"tags": ["娱乐"]
},
"LiteBridge": {
"name": "LiteBridge",
"desc": "基于 WebSocket 的 Minecraft 群服互通插件",
"author": "Asurin219",
"repo": "https://github.com/Asurin219/astrbot_plugin_lite_bridge",
"tags": ["Minecraft", "群服互通"],
"social_link": "QQ: 824907403"
},
"cngal_morning_report": {
"desc": "CnGal 每日晨报",
"author": "YaoYue",
"repo": "https://github.com/yaoyuesuzu/astrbot_plugin_cngal_morning_report",
"tags": ["cngal", "晨报", "Galgame"],
"social_link": "https://github.com/yaoyuesuzu"
},
"astrbot_plugin_url_2_knowledge_base": {
"desc": "通过 URL 提取内容,并经过处理、聚类和总结后,生成知识库文件。",
"author": "RC-CHN",
"repo": "https://github.com/RC-CHN/astrbot_plugin_url_2_knowledge_base"
},
"astrbot_plugin_plea_mercy": {
"name": "astrbot_plugin_plea_mercy",
"desc": "当被禁言时,向管理员私聊求情。",
"author": "qa296",
"repo": "https://github.com/qa296/astrbot_plugin_plea_mercy",
"tags": ["防禁言", "拟人", "LLM", "aiocqhttp"],
"social_link": "https://github.com/qa296/"
},
"astrbot_plugin_server_status_nickname": {
"name": "astrbot_plugin_server_status_nickname",
"desc": "通过群昵称动态显示服务器状态的插件,并提供状态历史图生成",
"author": "DITF16",
"repo": "https://github.com/DITF16/astrbot_plugin_server_status_nickname",
"tags": ["工具", "服务器", "监控"]
},
"astrbot_plugin_scheduler": {
"desc": "功能强大的通用定时任务调度插件,支持 Cron 表达式、间隔执行、条件执行等多种调度方式。提供可视化配置界面和任务创建向导。",
"author": "Couei",
"repo": "https://github.com/xpnobug/astrbot_plugin_scheduler",
"tags": ["定时任务", "自动化", "Cron"],
"social_link": "QQ: 2877406366"
},
"astrbot_plugin_battlefield_tool": {
"desc": "战地风云战绩查询插件",
"author": "SHOOTING_STAR_C",
"repo": "https://github.com/SHOOTING-STAR-C/astrbot_plugin_battlefield_tool",
"tags": ["战地风云"]
},
"astrbot_plugin_SteamSaleTracker": {
"desc": "这是一个 Steam 游戏价格监控插件",
"author": "bushikq",
"repo": "https://github.com/zhewang448/astrbot_plugin_SteamSaleTracker",
"tags": ["Steam", "游戏"],
"social_link": "https://github.com/zhewang448"
},
"astrbot_plugin_Heartflow": {
"desc": "基于简单的心流机制的群聊主动回复插件,带来更生动的主动回复体验",
"author": "Jason.Joestar",
"repo": "https://github.com/advent259141/Astrbot_plugin_Heartflow",
"tags": ["主动回复", "拟人"],
"social_link": "https://github.com/advent259141",
"pinned": true
},
"cngal_search": {
"desc": "CnGal查询",
"author": "YaoYue",
"repo": "https://github.com/yaoyuesuzu/astrbot_plugin_cngal_search",
"tags": ["cngal", "第三方", "查询"],
"social_link": "https://github.com/yaoyuesuzu"
},
"astrbot_plugin_Trans": {
"desc": "哦齁噢喔~语翻译器,基于https://msbt.seku.su提出的的编码解码功能",
"author": "EIA",
"repo": "https://github.com/EIA2024/astrbot_plugin_Trans",
"tags": ["工具"],
"social_link": "https://github.com/EIA2024"
},
"astrbot_plugin_deer_check": {
"desc": "一个发送'🦌'进行打卡并生成月度日历的插件",
"author": "DITF16",
"repo": "https://github.com/DITF16/astrbot_plugin_deer_check",
"tags": ["鹿", "打卡", "健康", "娱乐"]
},
"astrbot_plugin_pet": {
"desc": "一个简单的的群内宠物养成插件,支持LLM随机事件、PVP对决和图片状态卡。",
"author": "DITF16",
"repo": "https://github.com/DITF16/astrbot_plugin_pet",
"tags": ["游戏", "趣味", "宠物"]
},
"astrbot_plugin_error_monitor": {
"desc": "捕获 Immersive Error 抛出的异常,并提供 SMTP 邮件通知进行报告。",
"author": "Magstic, Gemini 2.5 Pro",
"repo": "https://github.com/Hina-Chat/astrbot_plugin_error_monitor",
"tags": ["工具", "实用"],
"social_link": "https://magstic.art/"
},
"astrbot_plugin_immersive_error": {
"desc": "客制化回覆插件。侦测自订的拦截词,并将其替换为与之对应的沉浸式回覆。",
"author": "Magstic, Gemini 2.5 Pro",
"repo": "https://github.com/Hina-Chat/astrbot_plugin_immersive_error",
"tags": ["工具", "实用"],
"social_link": "https://magstic.art/"
},
"astrbot_plugin_eat_history": {
"desc": "自动保存转发的消息记录,随时查看",
"author": "logicat",
"repo": "https://github.com/logicat-123/astrbot_plugin_eat_history"
},
"astrbot_plugin_rg": {
"desc": "群聊左轮手枪游戏插件,玩家可以在群聊中进行左轮手枪射击游戏,支持随机走火事件。",
"author": "piexian",
"repo": "https://github.com/piexian/astrbot_plugin_rg"
},
"echo_avatar": {
"desc": "学习指定用户的说话方式并生成专业的Prompt,仅限全局管理员使用。",
"author": "LumineStory",
"repo": "https://github.com/oyxning/astrtbot_plugin_echo_avatar",
"tags": ["模仿"],
"social_link": "https://github.com/oyxning"
},
"EmailNotixion": {
"name": "EmailNotixion",
"desc": "实时IMAP邮件推送插件",
"author": "Temmie",
"repo": "https://github.com/OlyMarco/EmailNotixion",
"tags": ["邮箱", "email", "推送", "工具"]
},
"astrbot_plugin_RecallGuard": {
"name": "astrbot_plugin_RecallGuard",
"desc": "[仅 aiocqhttp] 监听指定用户撤回图片并将其转发到指定群聊。",
"author": "和泉智宏",
"repo": "https://github.com/0d00-Ciallo-0721/astrbot_plugin_RecallGuard"
},
"astrbot_plugin_reply_directly": {
"name": "astrbot_plugin_reply_directly",
"desc": "让您的 AstrBot 在群聊中变得更加生动和智能!本插件使其可以主动的连续交互。",
"author": "qa296",
"repo": "https://github.com/qa296/astrbot_plugin_reply_directly",
"tags": ["交互增强", "聊天辅助", "主动回复", "沉浸式"]
},
"astrbot_plugin_choulaopo": {
"name": "抽老婆",
"desc": "[仅napcat] 这是用于抽取QQ群友当老婆的插件。",
"author": "糯米茨",
"repo": "https://github.com/nuomicici/astrbot-plugin-choulaopo",
"tags": ["工具", "娱乐"]
},
"astrbot_plugin_file": {
"name": "astrbot_plugin_file",
"desc": "一个简单的文件发送、删除、移动、复制和查看文件夹内容插件,命令均默认开启管理员权限",
"repo": "https://github.com/Chris95743/astrbot_plugin_file"
},
"astrobot_plugin_code_executor": {
"name": "astrobot_plugin_code_executor",
"desc": "为LLM提供代码运行权限,可以执行文件操作",
"repo": "https://github.com/luosheng520qaq/astrobot_plugin_code_executor",
"tags": ["代码运行", "文件处理"]
},
"astrbot_plugin_group_sign": {
"name": "group_sign",
"desc": "[仅 aiocqhttp] 让 bot 定时群打卡",
"author": "mmyddd",
"repo": "https://github.com/mmyddd/astrbot_plugin_group_sign"
},
"astrbot_plugin_wwbirthday": {
"desc": "鸣潮角色生日播报",
"author": "arkina",
"repo": "https://github.com/yan3931/astrbot_plugin_wwbirthday",
"tags": ["鸣潮"]
},
"astrbot_plugin_balance": {
"desc": "一个简单的 LLM API 余额查询与 IP 查询小插件, 支持硅基流动,DeepSeek 与 OpenAI 余额查询及 IP 地址查询功能",
"author": "Chris",
"repo": "https://github.com/Chris95743/astrbot_plugin_balance"
},
"astrbot_plugin_mp": {
"desc": "一个适用于最新版本moviepilot的小工具,支持搜索、订阅、消息转发等功能",
"author": "EWEDL",
"repo": "https://github.com/EWEDLCM/astrbot_plugin_mp",
"tags": ["MP", "工具", "转发", "交互"]
},
"astrbot_plugin_anti_recall": {
"desc": "[仅限aiocqhttp] 防撤回插件,开启监控指定会话后,该会话内撤回的消息将转发给指定接收者",
"author": "JOJO",
"repo": "https://github.com/jiongjiongJOJO/astrbot_plugin_anti_recall",
"tags": ["工具", "防撤回", "aiocqhttp"],
"social_link": "https://blog.jojo.host/"
},
"astrbot_plugin_ip_proxy": {
"desc": "一个将HTTP代理API转换为本地代理的AstrBot插件",
"author": "timetetng",
"repo": "https://github.com/timetetng/astrbot_plugin_ip_proxy"
},
"astrbot_plugin_cmd_console": {
"desc": "提供 WebUI 的指令管理面板,可以启用/禁用插件的指令。",
"repo": "https://github.com/Hina-Chat/astrbot_plugin_cmd_console",
"tags": ["工具", "实用"],
"author": "Hina-Chat",
"social_link": "https://magstic.art/"
},
"astrbot_plugin_market": {
"desc": "指令版插件市场。(点个 star 吧~ 你的 star 是我更新的动力)",
"repo": "https://github.com/zgojin/astrbot_plugin_market",
"author": "长安某",
"tags": ["工具"],
"social_link": "astrbot.uk"
},
"astrbot_plugin_bw_monitor": {
"desc": "Bilibili Show 票务监控插件,支持群聊/私聊隔离,检测余票变化并推送通知。",
"repo": "https://github.com/satori5555/astrbot_plugin_bw_monitor",
"tags": ["bilibili", "ticket", "推送", "余票"],
"author": "satori5555"
},
"astrbot_plugin_78animesearch": {
"desc": "通过 `/78dm [关键词]` 命令在 78动漫模型网搜索模玩信息",
"repo": "https://github.com/critans/astrbot_plugin_78animesearch",
"tags": ["爬虫", "78动漫"],
"author": "critans"
},
"astrbot_plugin_hyrz": {
"desc": "从火影忍者官网上查询火影忍者手游忍者信息",
"repo": "https://github.com/Aurora-xk/astrbot_plugin_hyrz",
"author": "Aurora-xk"
},
"astrbot_plugin_at_somebody": {
"desc": "[仅限aiocqhttp] 在指定群内艾特(@)给定名单的用户+要通知的内容",
"repo": "https://github.com/jiongjiongJOJO/astrbot_plugin_at_somebody",
"author": "JOJO",
"social_link": "https://blog.jojo.host/"
},
"astrbot_plugin_deltaforce": {
"desc": "三角洲行动插件",
"repo": "https://github.com/UyNewNas/astrbot_plugin_deltaforce",
"tags": ["抽卡", "三角洲行动", "鼠鼠"],
"author": "UyNewNas"
},
"astrbot_plugin_LetAI_sendemojis": {
"desc": "智能分析AI对话内容并发送匹配表情包,支持情感识别、历史记录和多数据源,让聊天更生动有趣",
"repo": "https://github.com/Heyh520/astrbot_plugin_LetAI_sendemojis",
"tags": ["表情包", "聊天体验增强"],
"author": "Heyh520"
},
"astrbot_plugin_monitor": {
"desc": "[仅aiocqhttp] 群消息互通插件,通过bot查看其他群聊的聊天记录, 同时能通过bot向其他群聊发消息",
"repo": "https://github.com/Zhalslar/astrbot_plugin_monitor",
"tags": ["消息互通"],
"social_link": "https://github.com/Zhalslar",
"author": "Zhalslar"
},
"astrbot_plugin_decision_roulette": {
"desc": "一个有趣且实用的插件,通过一张精美的静态结果卡片帮助用户做出决策,完美解决“选择困难症”或群组中意见不统一的难题。",
"repo": "https://github.com/oyxning/astrbot_plugin_decision_roulette",
"tags": ["工具", "趣味", "决策", "实用"],
"author": "oyxning",
"social_link": "https://github.com/oyxning/"
},
"astrbot_plugin_top_chehui": {
"author": "mingrixiangnai",
"repo": "https://github.com/mingrixiangnai/top_chehui",
"desc": "[仅 aiocqhttp] 自动撤回上一条触发机器人的消息",
"tags": ["撤回", "消息", "聊天"],
"social_link": "https://github.com/mingrixiangnai/top_chehui"
},
"astrbot_plugin_chengyu": {
"author": "chengyu",
"repo": "https://github.com/auberginewly/astrbot_plugin_chengyu",
"desc": "支持LLM智能接龙的成语接龙插件v2.0,分用户积分统计,简化命令,智能过滤,随机开始"
},
"astrbot_plugin_shitu": {
"author": "Aurora-xk & DeepSeek R1",
"repo": "https://github.com/Aurora-xk/astrbot_plugin_shitu",
"desc": "通过调用 AnimeTrace 网站提供的 API 进行动漫识图"
},
"astrbot_plugin_cheru": {
"author": "irs",
"desc": "切噜语翻译器",
"repo": "https://github.com/irs1122/astrbot_plugin_cheru"
},
"yandere_github_stalker": {
"author": "Hakimyu",
"desc": "监控 GitHub 用户活动,采用病娇风格,并通过图片或文本的形式发送通知。",
"repo": "https://github.com/SXP-Simon/astrbot_plugin_yandere_github_stalker",
"tags": ["GitHub", "病娇"]
},
"tron_address": {
"author": "xinghanxu",
"desc": "波场地址查询插件",
"tags": ["Tron"],
"social_link": "https://t.me/tianxu648",
"repo": "https://github.com/xinghanxu666/tron-q"
},
"astrbot_plugin_test_helper": {
"author": "LumineStory",
"desc": "允许你通过一个简单的聊天指令,远程热更新你正在开发和测试的任何其他插件",
"social_link": "https://github.com/oyxning",
"repo": "https://github.com/oyxning/astrbot_plugin_test_helper"
},
"astrbot_plugin_discord_self_embeded": {
"author": "SXP-Simon",
"desc": "一个用于 AstrBot 的 Discord Embed 适配器插件,可以自动将发送至 Discord 的文本消息转换为精美的 Embed 格式。",
"social_link": "https://github.com/SXP-Simon",
"repo": "https://github.com/SXP-Simon/astrbot_plugin_discord_self_embeded"
},
"astrbot_plugin_dynamic_persona": {
"author": "LumineStory",
"desc": "在每次交互前为你的 Bot 动态生成一个全新的、临时的性格,让你的 Bot 充满惊喜和生命力。",
"repo": "https://github.com/oyxning/astrbot_plugin_dynamic_persona",
"social_link": "https://github.com/oyxning",
"tags": ["随机人格"]
},
"astrbot_plugin_touchi": {
"author": "sa1guu",
"desc": "三角洲鼠鼠偷吃模拟器(简易)",
"repo": "https://github.com/sa1guu/astrbot_plugin_touchi"
},
"astrbot_plugin_Astrsupermarket": {
"author": "和泉智宏本人",
"repo": "https://github.com/0d00-Ciallo-0721/astrbot_plugin_Astrsupermarket",
"desc": "一款专为 AstrBot 打造的高互动性 QQ 群聊插件,融合经济、社交、冒险等玩法"
},
"astrbot_plugin_gameinfo": {
"author": "bushikq",
"repo": "https://github.com/zhewang448/astrbot_plugin_gameinfo",
"desc": "基于 Selenium 的一个获取部分二游角色 Wiki 信息的插件。",
"tags": ["明日方舟", "wiki", "selenium"],
"social_link": "https://github.com/zhewang448"
},
"astrbot_plugin_shutup": {
"author": "Railgun19457",
"repo": "https://github.com/railgun19457/astrbot_plugin_shutup",
"desc": "一个简单的插件,让 Bot 闭嘴",
"social_link": "https://github.com/railgun19457"
},
"astrbot_plugin_check-dst-room": {
"author": "EncodedWitcher",
"repo": "https://github.com/EncodedWitcher/astrbot_plugin_check-dst-room",
"desc": "饥荒查房"
},
"astrbot_plugin_solve_longmsg": {
"author": "HakimYu/SXP-Simon",
"repo": "https://github.com/HakimYu/astrbot_plugin_solve_longmsg",
"desc": "撤回并合并转发群员或者机器人的长消息"
},
"astrbot_plugin_promise_keeper": {
"author": "xunxi",
"desc": "一个能自动识别聊天承诺并提醒记录的智能插件,支持模糊时间解析、排行榜生成和自定义规则,确保承诺不被遗忘。",
"repo": "https://github.com/xunxiing/astrbot_plugin_promise_keeper",
"tags": ["提醒", "守信", "排行榜"]
},
"astrbot_plugin_kook_adapter": {
"author": "wuyan1003",
"desc": "为 AstrBot Kook 平台适配器,支持机器人在 Kook 服务器中实现消息接收、指令响应等功能,轻松拓展多平台运营能力。",
"repo": "https://github.com/wuyan1003/astrbot_plugin_kook_adapter",
"tags": ["Kook", "平台适配器"]
},
"astrbot_plugin_deepresearch": {
"author": "lxfight",
"desc": "为 AstrBot 提供一种 DeepResearch 方案,并支持生成可视化 HTML 报告",
"repo": "https://github.com/lxfight/astrbot_plugin_deepresearch",
"tags": ["deep research", "web search"],
"social_link": "https://github.com/lxfight"
},
"astrbot_plugin_textadventure": {