-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathplugins.json
More file actions
10058 lines (10058 loc) · 360 KB
/
plugins.json
File metadata and controls
10058 lines (10058 loc) · 360 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-char": {
"display_name": "多功能生活助手",
"desc": "多功能生活助手(char 合集),对原 char 系列多个热门插件进行整合,一套插件搞定日常查询、提醒、记账、搜索等高频需求,统一配置、统一指令、统一维护。",
"author": "char",
"repo": "https://github.com/zhongyu0306/MyAstrBot",
"social_link": "QQ群:1071693895"
},
"astrbot-plugin-local-reminiscence": {
"display_name": "本地回忆[APLR]",
"desc": "轻量级本地记忆插件,使用本地Embedding模型、本地数据库存储和回忆聊天记录。无需额外API,零Embedding成本,节约Token,完全保护隐私。使用Cron Job自动记录对话,通过关键词和语义匹配帮助AI自动回忆起相关经历和概念。初次安装时请科学上网以便快速下载依赖。",
"author": "olozhika",
"repo": "https://github.com/olozhika/astrbot_plugin_local_reminiscence",
"tags": [
"记忆",
"回忆",
"每日总结",
"语义识别",
"关键词",
"上下文注入",
"长期记忆"
],
"social_link": "https://github.com/olozhika/"
},
"astrbot-plugin-oyasumi": {
"display_name": "睡了喵~",
"desc": "基于正则触发的早安晚安长期记录插件,可自定义触发词,支持统计、修正与 llm 个性化分析,配套 webui。",
"author": "RichardLiu",
"repo": "https://github.com/RichardLiuda/astrbot_plugin_oyasumi",
"tags": [
"睡觉",
"睡眠",
"作息",
"ai"
],
"social_link": "https://github.com/RichardLiuda"
},
"astrbot-plugin-LivelyState": {
"display_name": "角色状态记忆",
"desc": "这是一个让角色拥有持续状态记忆的拟人插件:不再每句“重开存档”,而是带着上一刻的心情继续和你说话。",
"author": "兔子",
"repo": "https://github.com/KonmaKanSinPack/astrbot_plugin_LivelyState",
"tags": [
"拟人",
"全局记忆"
]
},
"astrbot-plugin-memory": {
"display_name": "astrbot_plugin_memory",
"desc": "跨会话持久化记忆插件。支持 Soul 设定、用户画像、历史对话、备忘录、会话 TODO,所有工具结果返回 LLM 推理,不打断推理循环。",
"author": "Bluezeamer",
"repo": "https://github.com/Bluezeamer/astrbot_plugin_memory",
"tags": [
"memory",
"持久化记忆",
"记忆控制"
]
},
"astrbot-plugin-talkative-king": {
"display_name": "话痨王 ",
"desc": "统计群组发言并生成精美的排行榜图片,内置 pilmoji 支持,完美渲染 Emoji 和颜文字,支持自定义背景。",
"author": "妈妈",
"repo": "https://github.com/Marcuscaixiao/astrbot_plugin_talkative_king",
"tags": [
"排行榜",
"发言",
"image",
"tool"
]
},
"astrbot-plugin-memos-manager": {
"display_name": "Memos Manager",
"desc": "一个能对usememos/memos进行管理的插件",
"author": "cyilin36",
"repo": "https://github.com/cyilin36/astrbot_plugin_memos_manager",
"tags": [
"笔记",
"note"
],
"social_link": "https://cyilin36.github.io/"
},
"astrbot-plugin-daily-ai-news": {
"display_name": "每日AI资讯推送",
"desc": "订阅橘鸦AI日报并进行AI总结",
"author": "xx",
"repo": "https://github.com/xxofficial/astrbot_plugin_daily_ai_news"
},
"astrbot-plugin-Grok2API Token": {
"display_name": "Grok2API Token",
"desc": "监控 Grok2API Token 号池状态,查看 Token 总数、正常/限流/失效数量及剩余配额",
"author": "冰冰",
"repo": "https://github.com/fbbDirge/Grok2API-Token",
"tags": [
"grok",
"Token检测"
],
"social_link": "https://github.com/fbbDirge"
},
"astrbot-plugin-bangumi-enhance": {
"display_name": "Bangumi Enhance",
"desc": "AstrBot Bangumi 增强版:为 AstrBot 打造的一站式 Bangumi 追番助手。支持番剧/漫画图文搜索、每日放送时刻表查看及集数更新自动提醒。",
"author": "united_pooh",
"repo": "https://github.com/united-pooh/astrbot_plugin_bangumi",
"tags": [
"动漫",
"番剧",
"bangumi",
"追番"
],
"social_link": "https://github.com/united-pooh"
},
"astrbot-plugin-three-body-wiki": {
"display_name": "灰机wiki搜索工具",
"desc": "通过API调用在灰机wiki中搜索内容",
"author": "J-SLY",
"repo": "https://github.com/J-SLY/astrbot_plugin_three_body_wiki"
},
"astrbot-plugin-listen-github": {
"display_name": "监听github平台用户公开动态",
"desc": "通过 RSS 定时获取 GitHub 用户/仓库动态并推送到聊天会话",
"author": "aliveriver",
"repo": "https://github.com/aliveriver/astrbot_plugin_listen_github",
"tags": [
"视奸",
"github"
],
"social_link": "https://github.com/aliveriver"
},
"astrbot-plugin-bazaar": {
"display_name": "大巴扎小助手",
"desc": "astrbot_plugin_bazaar 是一个 AstrBot 聊天机器人插件,可以在 QQ / Telegram / 微信等平台中快速查询 The Bazaar 游戏数据,包括怪物、物品、技能信息,以及来自社区的推荐阵容。\n\n查询结果以精美的图片卡片形式呈现,支持中英文双语查询。",
"author": "钱德勒饼",
"repo": "https://github.com/shitlsh/astrbot_plugin_bazaar",
"tags": [
"bazaar",
"电子游戏"
]
},
"astrbot-plugin-epic-freegame": {
"display_name": "Epic 免费游戏推送",
"desc": "获取 Epic 每周免费游戏信息,支持定时推送和指令查询,通过 60s API 获取数据并渲染为精美图片发送。",
"author": "xiaoruange39",
"repo": "https://github.com/xiaoruange39/astrbot_plugin_epic_freegame",
"tags": [
"Epic",
"喜加一",
"游戏",
"推送",
"免费游戏",
"epic"
],
"social_link": "https://github.com/xiaoruange39"
},
"astrbot-plugin-goofish-catcher": {
"display_name": "闲鱼蹲蹲助手",
"desc": "关键词订阅闲鱼商品上新与降价监控,支持即时查询、LLM 推荐与后台主动通知。",
"author": "RichardLiu",
"repo": "https://github.com/RichardLiuda/astrbot_plugin_goofish_catcher",
"tags": [
"ai",
"购物",
"闲鱼",
"监控"
],
"social_link": "https://github.com/RichardLiuda"
},
"astrbot-plugin-poetry-games": {
"display_name": "诗词查询/游戏",
"desc": "这是一个用于 AstrBot 的诗词插件。通过存在于本地的数据库,进行诗词查询和诗词游戏。",
"author": "ALin",
"repo": "https://github.com/sfw2099/astrbot_plugin_poetry_games",
"tags": [
"诗词",
"传统文化",
"游戏"
]
},
"astrbot-plugin-screen-companion": {
"display_name": "我会一直看着你",
"desc": "这是一款智能屏幕观察(视奸)插件,通过截图分析和环境感知,为用户提供个性化的互动体验。它不仅能观察用户的屏幕活动,还能感知环境变化,如系统状态、天气情况和节假日,甚至能监听麦克风音量,为用户提供全方位的智能陪伴。灵感来源于妹居物语,使用请注意隐私保护。",
"author": "menglimi",
"repo": "https://github.com/menglimi/astrbot_plugin_screen_companion",
"tags": [
"视奸",
"陪伴"
],
"social_link": "https://github.com/menglimi"
},
"astrbot-plugin-fishing-again": {
"display_name": "Fishing Again!",
"desc": "forked from 0xNMLSS/astrbot_plugin_fishing,原作因工作原因停止维护,我尝试接手后续开发,兼容原存档。能力微弱也许存在大量Bug请提Issues,至于功能大概是想到什么加什么也许会逐渐偏离钓鱼走向综合(感谢前辈们编写的钓鱼系统)",
"author": "Akiyo-dayo",
"repo": "https://github.com/Akiyo-dayo/astrbot_plugin_fishing",
"tags": [
"fishing",
"钓鱼",
"骰宝"
],
"social_link": "https://github.com/Akiyo-dayo"
},
"astrbot-plugin-deobfuscation": {
"display_name": "小番茄混淆",
"desc": "小番茄图片混淆/解混淆插件,基于Gilbert 2D空间填充曲线算法",
"author": "Tairitsu_nya",
"repo": "https://github.com/qingyuan114514/astrbot_plugin_deobfuscation",
"tags": [],
"social_link": ""
},
"w2902171175/astrbot-plugin-GPT-SoVITS": {
"display_name": "astrbot_plugin_GPT-SoVITS",
"desc": "本地运行的 GPT-SoVITS-1007-cu124 的 Astrbot 文本转语音插件。",
"author": "w2902171175",
"repo": "https://github.com/w2902171175/astrbot_plugin_GPT-SoVITS",
"tags": [
"TTS",
"AI",
"文本转语音",
"GPT SoVITS",
"语音合成"
],
"social_link": "https://github.com/w2902171175"
},
"astrbot-plugin-custome-segment-reply": {
"display_name": "自定义断句回复插件",
"desc": "纯本地规则智能分段回复插件。通过自定义字数、标点优先级、超长降级等规则实现极速断句,彻底告别AI大模型延迟,零成本且更稳定。",
"author": "LinJohn8",
"repo": "https://github.com/LinJohn8/astrbot_plugin_custome_segment_reply",
"tags": [
"分段",
"工具",
"对话",
"分段回复"
],
"social_link": "https://github.com/LinJohn8"
},
"astrbot-plugin-alteration-notifier": {
"display_name": "插件变更提醒",
"desc": "再也不想看到有人输入一串奇怪的指令但是机器人没有响应导致陷入尴尬的境地?本插件可以及时通知机器人使用者插件的变更。",
"author": "PyuraMazo",
"repo": "https://github.com/PyuraMazo/astrbot_plugin_alteration_notifier",
"tags": [
"插件管理",
"提醒"
],
"social_link": "https://github.com/PyuraMazo"
},
"astrbot-plugin-sl-query": {
"display_name": "SCP:SL 服务器查询插件",
"desc": "通过 ServerKey 查询 SCP:SL 服务器信息",
"author": "DNT_OF",
"repo": "https://github.com/DNTOF/astrbot_plugin_sl_query",
"tags": [
"api"
],
"social_link": "https://github.com/DNTOF"
},
"astrbot-plugin-sky": {
"display_name": "sky光遇助手",
"desc": "这是一个为光遇玩家打造的智能助手插件。(移植于Yunzai-bot的Tlon-Sky插件,并加入LLM大模型调用)\n\n无论你是想了解今日任务、查询光翼收集进度,还是想知道服务器排队情况——只需在QQ发送一条消息,即可快速获取光遇游戏相关信息。\n\n支持自然语言交互,直接问\"今天光遇有什么任务?\",AI 会自动调用相应功能回复你。",
"author": "wzq10314",
"repo": "https://github.com/wzq10314/astrbot_plugin_sky",
"tags": [
"光遇",
"游戏",
"sky"
]
},
"astrbot-plugin-animatedemoji": {
"display_name": " Animated Emoji",
"desc": "将静态 emoji 转换为动态 emoji,支持 Google Noto 和 Telegram 两种动态方案。",
"author": "camera-2018",
"repo": "https://github.com/camera-2018/astrbot_plugin_animatedemoji",
"social_link": "https://github.com/camera-2018"
},
"astrbot-plugin-yunhuAdapter": {
"display_name": "云湖机器人平台适配器",
"desc": "将 AstrBot 接入云湖机器人平台的插件,通过 WebSocket 与云湖 SDK 桥接通信。",
"author": "Yuki Soffd",
"repo": "https://github.com/Soffd/astrbot_plugin_yunhuAdapter",
"tags": [
"云湖",
"平台适配器"
]
},
"astrbot-plugin-manbo-tts": {
"display_name": "manbo-tts",
"desc": "基于外部API:https://api.milorapart.top/apis/mbAIsc 提供曼波语音信息生成",
"author": "zoffyultraman",
"repo": "https://github.com/zoffyultraman/astrbot_plugin_manbo-tts",
"social_link": "https://github.com/zoffyultraman"
},
"astrbot-plugin-steammod-monitor": {
"display_name": "steam创意工坊检测/服主开服工具",
"desc": "用于监控steam的创意工坊和mod状态变更,并在状态变化时推送通知。硬核游戏服主(僵尸毁灭工程、方舟、Rust等)打造的“赛博网监”级 AstrBot 插件。 彻底告别“玩家进不去服务器才发现模组更新”的窘境,实现全自动更新预警与优雅的群组推送和管理!",
"author": "danfong1104",
"repo": "https://github.com/danfong1104/astrbot_plugin_steammod_monitor",
"tags": [
"steam"
]
},
"astrbot-plugin-memos-pusher": {
"display_name": "Memos 灵感推送",
"desc": "快速将灵感推送到 Memos,支持 /memo 指令。",
"author": "penguinway",
"repo": "https://github.com/penguinway/astrbot_plugin_memos_pusher",
"tags": [
"memos",
"功能",
"工具"
],
"social_link": "https://github.com/penguinway"
},
"astrbot-plugin-livepulse": {
"display_name": "LivePulse",
"desc": "Multi-platform live stream monitor for YouTube, Twitch, and Bilibili.",
"author": "Xyfer",
"repo": "https://github.com/cxyfer/astrbot_plugin_livepulse",
"tags": [
"直播",
"Bilibili",
"YouTube",
"Twitch"
],
"social_link": "https://github.com/cxyfer"
},
"astrbot-plugin-bookkeeper": {
"display_name": "自动记账",
"desc": "AI 自动记账:通过 LLM 工具调用自动识别消息中的消费事实并记账\n手动查询:支持查询当日、当月、自定义日期范围的账单\n分类汇总:按消费项分类统计金额和笔数\n记录管理:支持删除指定序号的记录\n白名单管理:支持白名单开关、管理员绕过、用户增删查\n定时推送:支持每日/每月定时发送账单汇总\n时区配置:支持自定义 IANA 时区",
"author": "橘猫",
"repo": "https://github.com/IwannaYuJie/astrbot_plugin_bookkeeper.git",
"tags": [
"记账",
"生活助手",
"财务"
],
"social_link": "https://github.com/IwannaYuJie"
},
"astrbot-plugin-bookkeeping": {
"display_name": "日常记账",
"desc": "一个功能完善的个人记账插件,支持支出/收入记录、统计分析、AI财务建议等功能。",
"author": "NONAME",
"repo": "https://github.com/NONAME00X/astrbot_plugin_bookkeeping",
"tags": [
"财务",
"记账",
"日常"
],
"social_link": "https://github.com/NONAME00X",
"category": "生活实用"
},
"astrbot-plugin-mewgenics": {
"display_name": "喵基因wiki查询",
"desc": "快速查询《喵喵的结合》(Mewgenics) 的 Wiki 数据。",
"author": "野生",
"repo": "https://github.com/yesheng440/astrbot_plugin_mewgenics",
"tags": [
"wiki",
"游戏"
],
"social_link": "https://github.com/yesheng440",
"category": "娱乐游戏"
},
"astrbot-plugin-memorix": {
"display_name": "Memorix",
"desc": "让AstrBit拥有可检索、可维护、可追溯的长期记忆——图谱+向量混合检索,内置生命周期管理与 WebUI。",
"author": "薄暝",
"repo": "https://github.com/exynos967/astrbot_plugin_memorix",
"tags": [
"长期记忆",
"图谱",
"webui",
"向量",
"检索",
"人物画像"
],
"category": "AI增强"
},
"astrbot-plugin-GPT-SoVITS": {
"display_name": "GPT-SoVITS",
"desc": "本地运行的 GPT-SoVITS-1007-cu124 的 Astrbot 文本转语音插件。",
"author": "w2902171175",
"repo": "https://github.com/w2902171175/astrbot_plugin_GPT-SoVITS",
"category": "AI增强"
},
"astrbot-plugin-topic-starter": {
"display_name": "topic_starter",
"desc": "主动话题发起、会话跟踪、可配置调度",
"author": "薄暝",
"repo": "https://github.com/exynos967/astrbot_plugin_topic_starter",
"tags": [
"话题",
"主动发言"
],
"category": "效率工具"
},
"astrbot-plugin-web-screenshot": {
"display_name": "API网页截图😝",
"desc": "基于外部API提供网页截图功能的AstrBot插件,适用于OneBot QQ机器人",
"author": "浅月tniay",
"repo": "https://github.com/tniany/astrbot_plugin_web-screenshot",
"tags": [
"截图",
"api",
"tniay",
"Onebot"
],
"social_link": "https://github.com/tniany",
"category": "外部集成"
},
"astrbot-plugin-astrbot-enhance-mode": {
"display_name": "AstrBot Enhance Mode - 群聊增强插件",
"desc": "本插件为 AstrBot 的群聊场景提供增强功能,完全替代内置的「群聊上下文感知」和「主动回复」,并额外支持角色标签和发送者 ID。",
"author": "阿汐",
"repo": "https://github.com/Axi404/astrbot_plugin_astrbot_enhance_mode",
"tags": [
"聊天增强"
],
"social_link": "https://axi404.top",
"category": "效率工具"
},
"astrbot-plugin-biliVideo": {
"display_name": "哔哩哔哩视频总结",
"desc": "提供b站视频链接自动生成一份结构化的视频总结,带有订阅up主功能并定时推送最新视频",
"author": "storyAura",
"repo": "https://github.com/storyAura/astrbot_plugin_biliVideo",
"social_link": "https://github.com/storyAura",
"category": "生活实用"
},
"astrbot-plugin-opencode-client": {
"display_name": "Opencode Client",
"desc": "用于连接到 Opencode 服务器 https://opencode.ai/docs/server/",
"author": "gitsang",
"repo": "https://github.com/gitsang/astrbot_plugin_opencode_client",
"tags": [
"opencode"
],
"social_link": "gitsang.github.io",
"category": "AI增强"
},
"astrbot-plugin-iris-memory": {
"display_name": "Iris Memory 智能三层记忆",
"desc": "三层记忆插件,为 AstrBot 提供智能记忆管理能力,内置知识图谱、向量数据库、用户画像等增强功能,同时提供纯规则、LLM和混合三种模式的切换",
"author": "Leafiber",
"repo": "https://github.com/leafliber/astrbot_plugin_iris_memory",
"tags": [
"记忆",
"知识图谱",
"用户画像"
],
"social_link": "https://github.com/leafliber",
"category": "AI增强"
},
"astrbot-plugin-manosaba-memes": {
"display_name": "魔裁 Memes",
"desc": "生成「魔法少女的魔法审判」的表情包",
"author": "祁筱欣",
"repo": "https://github.com/xiaomizhoubaobei/astrbot_plugin_manosaba-memes",
"social_link": "https://github.com/xiaomizhoubaobei",
"category": "娱乐游戏"
},
"astrbot-plugin-soulmap": {
"display_name": "用户画像",
"desc": "AI驱动的用户画像收集系统,在聊天中自动提取用户信息(昵称、生日、饮食偏好、健康状况等),并在聊天中自然提及。",
"author": "柯尔",
"repo": "https://github.com/Luna-channel/astrbot_plugin_soulmap",
"tags": [],
"social_link": "",
"category": "外部集成"
},
"astrbot-plugin-warframe-helper": {
"display_name": "Warframe助手",
"desc": "国际服Warframe游戏信息查询",
"author": "moemoli",
"repo": "https://github.com/moemoli/astrbot_plugin_warframe_helper",
"tags": [
"warframe",
"星际战甲"
],
"social_link": "",
"category": "娱乐游戏"
},
"astrbot-plugin-trello": {
"display_name": "Trello Controller for AstrBot",
"desc": "通过 AstrBot 连接 Trello,提供卡片管理、列表管理等功能。",
"author": "Potatoworkshop",
"repo": "https://github.com/potatoworkshop/astrbot_plugin_trello",
"tags": [
"trello"
],
"social_link": "https://github.com/potatoworkshop",
"category": "效率工具"
},
"astrbot-plugin-ow-hero-stats": {
"display_name": "守望先锋 (国服)数据可视化查询插件",
"desc": "这是一个专为 AstrBot 设计的守望先锋 2(国服)数据查询插件。\n\n它摒弃了枯燥的纯文本回复,能够直接从暴雪国服 API 获取最新的英雄数据,并生成包含 英雄头像、段位图标、胜率/出场率/禁用率/KDA 的精美可视化图片战报。",
"author": "Eager",
"repo": "https://github.com/Eager2024/astrbot_plugin_ow_hero_stats",
"tags": [
"守望先锋",
"数据查询"
],
"social_link": "https://github.com/Eager2024",
"category": "外部集成"
},
"astrbot-plugin-sentinel": {
"display_name": "QQ 群哨兵",
"desc": "实时监控群聊消息,通过关键词或正则表达式进行识别,并自动执行撤回、禁言以及踢出等操作。",
"author": "Foolllll",
"repo": "https://github.com/Foolllll-J/astrbot_plugin_sentinel",
"tags": [
"群管理",
"禁言",
"撤回",
"踢人"
],
"category": "效率工具"
},
"astrbot-plugin-bilibanshi": {
"display_name": "b站搬石",
"desc": "让你的bot在b站搬石",
"author": "雪雾",
"repo": "https://github.com/Xuewu-awa/astrbot_plugin_bilibanshi",
"category": "效率工具"
},
"blueraina/astrbot-plugin-novel": {
"desc": "QQ群群友协作 + AI辅助写作的长篇小说插件(每群独立/知识库/多AI打分/冲突投票/风格模仿/用户修正/EPUB/PDF导出)",
"author": "blueraina",
"repo": "https://github.com/blueraina/astrbot_plugin_novel",
"tags": [
"小说",
"AI写作",
"群协作",
"创作",
"EPUB",
"PDF"
],
"category": "外部集成"
},
"astrbot-plugin-inaturalist-search": {
"display_name": "iNaturalist自然观察数据查询插件",
"desc": "一个基于 iNaturalist API 的 AstrBot 插件,支持物种分类信息查询和观察记录搜索。",
"author": "CecilyGao",
"repo": "https://github.com/CecilyGao/astrbot_plugin_inaturalist_search",
"tags": [
"自然",
"生物",
"生态",
"照片",
"观察",
"科学",
"记录",
"数据库"
],
"social_link": "https://github.com/CecilyGao",
"category": "外部集成"
},
"astrbot-plugin-command-router": {
"display_name": "智能指令路由器",
"desc": "基于AI的自然语言指令解析,允许用户使用自然语言调用 AstrBot 中已注册的指令。",
"author": "PyuraMazo",
"repo": "https://github.com/PyuraMazo/astrbot_plugin_command_router",
"tags": [
"指令解析"
],
"social_link": "https://github.com/PyuraMazo",
"category": "AI增强"
},
"astrbot-plugin-iamthinking": {
"display_name": "别吵我在思考",
"desc": "别吵,我在思考!还在因为思考型模型反应太慢而烦恼?这个插件不能解决问题,但可以提升一点体验。收到用户消息并准备调用 LLM 时,为这条用户消息贴一个表情表示处理中;发送回复后,再贴一个表情表示处理完成。",
"author": "石上三年",
"repo": "https://github.com/sssn-tech/astrbot_plugin_iamthinking",
"social_link": "https://github.com/sssn-tech",
"category": "AI增强"
},
"astrbot-plugin-gbif-search": {
"display_name": "GBIF自然科学数据库查询插件",
"desc": "一个基于 GBIF API 的 AstrBot 插件,支持物种分类信息查询和 occurrence(出现记录)搜索。支持关键词模糊匹配,命令缩写,可返回文本或图片。",
"author": "CecilyGao",
"repo": "https://github.com/CecilyGao/astrbot_plugin_gbif_search",
"tags": [
"自然",
"科学",
"数据库",
"关键词搜索",
"生物",
"生态",
"分布"
],
"social_link": "https://github.com/CecilyGao",
"category": "外部集成"
},
"astrbot-plugin-novel": {
"display_name": "群聊AI小说构建插件",
"desc": "QQ群群友协作 + AI辅助写作的长篇小说插件(每群独立/知识库/多AI打分/冲突投票/风格模仿/用户修正/EPUB/PDF导出)",
"author": "blueraina",
"repo": "https://github.com/blueraina/astrbot_plugin_novel",
"tags": [
"小说",
"群聊总结",
"共同协作"
],
"category": "外部集成"
},
"astrbot-plugin-clonetts": {
"display_name": "克隆语音",
"desc": "基于火山引擎音色克隆的文本转语音插件",
"author": "Radiant303",
"repo": "https://github.com/Radiant303/astrbot_plugin_clonetts",
"tags": [
"声音",
"语音",
"火山引擎",
"豆包"
],
"social_link": "https://github.com/Radiant303",
"category": "AI增强"
},
"astrbot-plugin-ssh": {
"display_name": "远程SSH执行器",
"desc": "一个功能弱小的 AstrBot 插件,允许您通过聊天连接远程 SSH 服务器并执行命令。支持交互式 Shell 会话、状态保持、LLM 函数调用,并具备一定的安全保护机制。",
"author": "5060ti个马力的6999",
"repo": "https://github.com/HSOS6/astrbot_plugin_ssh",
"tags": [
"ssh",
"远程控制",
"服务器"
],
"social_link": "https://github.com/HSOS6",
"category": "AI增强"
},
"astrbot-plugin-httpadapter": {
"display_name": "HTTP平台适配器",
"desc": "为 AstrBot 提供 HTTP/HTTPS 接口,支持外部应用通过 HTTP 协议与 AstrBot 交互",
"author": "lishining",
"repo": "https://github.com/Li-shi-ling/astrbot_plugin_httpplatform",
"tags": [
"平台适配器"
],
"category": "外部集成"
},
"astrbot-plugin-halo-manager": {
"display_name": "博客管理器",
"desc": "Bot管理的halo博客插件",
"author": "血与蔷薇",
"repo": "https://github.com/danielsunrise/astrbot_plugin_halo_manager",
"category": "效率工具"
},
"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",
"category": "外部集成"
},
"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",
"category": "娱乐游戏"
},
"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",
"category": "AI增强"
},
"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",
"category": "外部集成"
},
"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",
"category": "外部集成"
},
"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",
"category": "外部集成"
},
"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",
"category": "外部集成"
},
"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",
"category": "AI增强"
},
"astrbot-plugin-payqr": {
"display_name": "智能收款码",
"desc": "当 LLM 觉得自己没钱了或提到要别人给钱时,自动发送用户上传的收款码图片",
"author": "落日七号",
"repo": "https://github.com/luori7hao/astrbot_plugin_payqr",
"category": "AI增强"
},
"astrbot-plugin-jx3": {
"display_name": "剑网三游戏数据查询工具",
"desc": "通过接口调用剑网三API接口获取游戏数据",
"author": "飞翔大野猪",
"repo": "https://github.com/qsc20001102/astrbot_plugin_jx3",
"tags": [
"剑网三",
"数据查询"
],
"category": "外部集成"
},
"astrbot-plugin-zirunbi": {
"display_name": "孜然币模拟炒股",
"desc": "一款多币种虚拟加密货币交易模拟插件。在群聊中体验模拟炒股的乐趣,体验“韭菜”的起起落落!",
"author": "LumineStory",
"repo": "https://github.com/oyxning/astrbot_plugin_zirunbi",
"tags": [
"炒股",
"模拟",
"本地"
],
"social_link": "https://github.com/oyxning",
"category": "效率工具"
},
"astrbot-plugin-at-check": {
"display_name": "谁艾特我",
"desc": "记录群聊中最近@你的消息,支持单独@的上下文获取。",
"author": "Foolllll",
"repo": "https://github.com/Foolllll-J/astrbot_plugin_at_check",
"tags": [
"工具"
],
"category": "效率工具"
},
"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",
"生图",
"视频",
"联网搜索"
],
"category": "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/",
"category": "效率工具"
},
"astrbot-plugin-napcat-enhanced": {
"display_name": "Napcat_Enhanced",
"desc": "基于原有功能的增强的 AstrBot NapCat 接入插件,提供丰富的 QQ 机器人功能。",
"author": "Nonepf",
"repo": "https://github.com/Nonepf/astrbot_plugin_napcat_enhanced",
"category": "外部集成"
},
"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",
"category": "娱乐游戏"
},
"astrbot-plugin-wordlimit": {
"display_name": "字数限制器",
"desc": "在 LLM 回复后检查字数,超过限制时自动使用 LLM 缩短回复内容",
"author": "lingyu",
"repo": "https://github.com/DCM234/astrbot_plugin_wordlimit",
"tags": [
"字数限制"
],
"category": "AI增强"
},
"astrbot-plugin-bili-resolver": {
"display_name": "Bilibili 小程序原链解析",
"desc": "Bilibili的小组件最麻烦了,电脑打不开,于是做了个可以直接转成原链接和展示播放和介绍的工具",
"author": "chufeng",
"repo": "https://github.com/chufeng/astrbot_plugin_bili_resolver",
"tags": [
"Bilibili",
"B站",
"转链"
],
"category": "效率工具"
},
"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/",
"category": "AI增强"
},
"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",
"category": "外部集成"
},
"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/",
"category": "知识学习"
},
"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"
],
"pinned": true,
"category": "外部集成"
},
"astrbot_plugin_mc_duration": {
"display_name": "MC魔人时长统计",
"desc": "MC魔人检测插件,主要用于统计每个玩家的游戏时长并进行魔人颁奖,可以查看指定玩家的游戏时间段等。",
"author": "gangcaiyoule",
"repo": "https://github.com/gangcaiyoule/astrbot_plugin_mc_duration",
"tags": [
"mc",
"minecraft"
],
"category": "娱乐游戏"
},
"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",
"category": "娱乐游戏"
},
"astrbot_plugin_memory_reboot": {
"display_name": "旧消息提醒 火星救援插件",
"desc": "当群聊中有人重复发送旧的新闻/话题时,自动引用回复提醒该用户",
"author": "s11IM、idiotsj",
"repo": "https://github.com/s11IM/astrbot_plugin_memory_reboot",
"tags": [
"群聊",
"提醒"
],
"category": "生活实用"
},
"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",
"category": "外部集成"
},
"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",
"category": "娱乐游戏"
},
"astrbot_plugin_BombGame": {
"display_name": "数字炸弹游戏插件",
"desc": "群内互动猜数字,支持多群独立游戏、轮流点名、超时临时会话提醒及 HTML 精美排行榜",
"author": "haoyuedashi",
"repo": "https://github.com/haoyuedashi/astrbot_plugin_BombGame",
"tags": [
"小游戏"
],
"category": "娱乐游戏"
},
"astrbot_plugin_lyricsplus": {
"display_name": "接歌词 Plus",
"desc": "重新编写的基于网易云API的接歌词插件。",
"author": "Azured",
"repo": "https://github.com/Aoi-Karlin/astrbot_plugin_lyricsplus",
"category": "外部集成"
},
"astrbot_plugin_messenger": {
"display_name": "通风报信插件 (astrbot_plugin_messenger)",
"desc": "通风报信插件 - 帮你传话给好友,支持来回对话",
"author": "落日七号",
"repo": "https://github.com/luori7hao/astrbot_plugin_messenger",
"category": "效率工具"
},
"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",
"category": "外部集成"
},
"astrbot_plugin_telegram_summary": {
"name": "",
"display_name": "Telegram 频道消息总结",
"desc": "一个 Telegram 频道消息总结插件,每周自动生成指定频道的消息汇总报告,支持自动推送到QQ群组和用户。",
"author": "车厘子小樱",
"repo": "https://github.com/Sakura520222/astrbot_plugin_telegram_summary",
"tags": [
"Telegram",
"周报",