-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathplugins.json
More file actions
13263 lines (13263 loc) · 482 KB
/
Copy pathplugins.json
File metadata and controls
13263 lines (13263 loc) · 482 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-get-px": {
"display_name": "画境拾珍",
"desc": "Pixiv 搜图或者随机图、合并转发、每日签到卡片、签到升级、R18等猎奇标签过滤",
"author": "shitianyaa",
"repo": "https://github.com/shitianyaa/astrbot_plugin_get_px",
"tags": [
"piviv",
"每日签到",
"养成",
"休闲"
],
"social_link": "https://github.com/shitianyaa"
},
"astrbot-plugin-codeforces-helper": {
"display_name": "Codeforces训练助手",
"desc": "面向QQ群的Codeforces训练助手,支持成员管理、AC记录同步、Rating缓存、近7日与近30日排行榜、定时播报和Web管理后台。\n默认补全近30天数据,后续增量更新,并提供分页抓取与重复数据保护。",
"author": "Zinc-acetate",
"repo": "https://github.com/Zinc-acetate/astrbot_plugin_codeforces_helper",
"tags": [
"Codeforces",
"算法竞赛"
],
"social_link": "https://github.com/Zinc-acetate"
},
"astrbot-plugin-matsuko-cover": {
"display_name": "猫猫翻唱",
"desc": "一个可以让机器人输出翻唱语音的插件",
"author": "matsuko",
"repo": "https://github.com/sdfsfsk/matsuko_cover",
"tags": [
"rvc",
"svc",
"ai翻唱"
]
},
"astrbot-plugin-listen-music": {
"display_name": "我想听歌!",
"desc": "Bilibili 单源搜索、语音听歌与文件下载。",
"author": "57darling02",
"repo": "https://github.com/57Darling02/astrbot_plugin_listen_music",
"tags": [
"音乐",
"娱乐"
],
"social_link": "57d02.cn"
},
"astrbot-plugin-palworld": {
"display_name": "PalWorldTerminal · 帕鲁世界终端",
"desc": "在 AstrBot 中统一管理 Palworld 单服/多服,让群友通过状态、日报、事件与排行参与服内日常;提供可视化设置、分组/逐命令权限,以及默认关闭、仅管理员可用的服务器管控。基于官方 REST API。",
"author": "SolitudeRA",
"repo": "https://github.com/SolitudeRA/astrbot_plugin_palworld",
"tags": [
"PalWorld",
"幻兽帕鲁",
"パルワールド"
],
"social_link": "https://www.solitudera.com"
},
"astrbot-plugin-palserverManager": {
"display_name": "Palworld 幻兽帕鲁服务器管理",
"desc": "通过 Palworld REST API 查询和管理服务器,支持管理员 QQ 白名单与中文命令组。",
"author": "MysteryDove",
"repo": "https://github.com/MysteryDove/astrbot_plugin_palserverManager",
"tags": [
"游戏"
],
"social_link": "https://github.com/MysteryDove/"
},
"astrbot-plugin-mineastr": {
"display_name": "MineAstr Minecraft 群聊桥接",
"desc": "将 Minecraft 聊天接入 AstrBot,并提供状态、背包、区域分析、受控命令与低清晰度截图工具",
"author": "Halpha1st",
"repo": "https://github.com/Hgit-1/mineastr-plugin",
"tags": [
"mc",
"Minecraft",
"娱乐",
"游戏",
"连接器"
],
"social_link": "https://github.com/Hgit-1"
},
"astrbot-plugin-ha-control-layer": {
"display_name": "Home Assistant 控制器",
"desc": "扫描 Home Assistant 实体并生成家居能力索引,让 AstrBot 通过自然语言安全控制设备。",
"author": "Xhan258",
"repo": "https://github.com/Xhan258/astrbot_plugin_ha_control_layer",
"tags": [
"智能家居",
"HA",
"Home Assistant",
"家具控制"
],
"social_link": "https://github.com/Xhan258"
},
"astrbot-plugin-body-monitor": {
"display_name": "Body Monitor 身体数据监测",
"desc": "基于 Health Connect Webhook 接收小米手环与体脂秤数据,进行基线计算、异常检测并触发 LLM 主动关心。支持心率、步数、睡眠、血氧、压力、HRV、体重、体脂率等指标的持续监测。",
"author": "ludan",
"repo": "https://github.com/ludan0312/astrbot_plugin_body_monitor",
"tags": [
"health",
"monitor",
"xiaomi",
"body",
"主动关心"
]
},
"astrbot-plugin-virtual-life": {
"display_name": "虚拟人生",
"desc": "Virtual Life:按人格管理长期阶段、虚拟日程与主动消息",
"author": "Florance",
"repo": "https://github.com/FloranceYeh/astrbot_plugin_virtual_life",
"tags": [
"主动消息",
"日程"
],
"social_link": "https://Florance.top"
},
"astrbot-plugin-qbittorrent-manager": {
"display_name": "AstrBot qBittorrent Manager",
"desc": "基于 AstrBot 的 qBittorrent 管理插件,支持在 QQ 群中搜索北洋园 PT 等 NexusPHP 站点种子,并通过卡片展示结果,一键推送到 qBittorrent 下载。",
"author": "JustMonika24769",
"repo": "https://github.com/JustMonika24769/astrbot_plugin_qbittorrent_manager",
"tags": [
"qBittorrent",
"PT"
],
"social_link": "https://github.com/JustMonika24769"
},
"astrbot-plugin-github-trending": {
"display_name": "GitHub Trending",
"desc": "每日 GitHub Trending 榜单推送插件,支持定时推送到指定群聊/私聊,以排行榜图片形式展示。",
"author": "MillionDream",
"repo": "https://github.com/MillionDreamQAQ/astrbot_plugin_github_trending",
"tags": [
"github"
],
"social_link": "https://github.com/MillionDreamQAQ"
},
"astrbot-plugin-vikunja": {
"display_name": "Vikunja助手",
"desc": "让Astrbot连接Vikunja成为你的私人助手",
"author": "Marshall3821",
"repo": "https://github.com/Makarov3821/astrbot_plugin_vikunja"
},
"astrbot-plugin-cwa-alert": {
"display_name": "中央氣象署氣象與災害警報播報外掛",
"desc": "將交通部中央氣象署發布的縣市天氣、地震、海嘯、颱風與其他災害警特報,主動傳送至經管理員明確登記的 AstrBot 群組。外掛使用完整 UMO(Unified Message Origin)識別目標,不綁定 QQ 或任何單一平台的私有介面。",
"author": "Qiuxyi_0",
"repo": "https://github.com/Vlxnz/astrbot_plugin_cwa_alert",
"tags": [
"天气",
"台风",
"天气预报"
],
"social_link": "0-qx.com"
},
"astrbot-plugin-anima-master": {
"display_name": "Anima 绘图大师",
"desc": "将 AstrBot 连接到本地 ComfyUI / Anima 工作流,提供生图、提示词优化、法术解析和图片反推能力。",
"author": "YayiMiko",
"repo": "https://github.com/YayiMiko/anima-master",
"tags": [
"comfyui",
"anima",
"image-generation",
"danbooru"
],
"social_link": "https://github.com/YayiMiko/anima-master"
},
"astrbot-plugin-fund": {
"display_name": "基金小助手",
"desc": "支持基金净值估算、AI智能预测、综合评级、基金经理评价及金银价格查询",
"author": "Novforest",
"repo": "https://github.com/Novforest/astrbot_plugin_fund",
"tags": [
"生活实用",
"效率",
"基金"
],
"social_link": "https://github.com/Novforest"
},
"astrbot-plugin-bartender": {
"display_name": "调酒师",
"desc": "基于playwright无头浏览器库,对sillytavern项目进行操作和交互,达成通过机器人远程游玩Sillytavern,以及高于联机脚本的游玩体验貂蝉在一起",
"author": "dragonuniverse8248",
"repo": "https://github.com/dragonuniverse8248/astrbot_plugin_bartender",
"tags": [
"娱乐",
"sillytavern",
"Playwright"
],
"social_link": "https://github.com/dragonuniverse8248"
},
"astrbot-plugin-halo-whisper": {
"display_name": "Halo 瞬间发布",
"desc": "通过 AstrBot 将文字和图片发布到 Halo 瞬间。",
"author": "MikeYaoyu",
"repo": "https://github.com/MikeYaoyu/astrbot_plugin_halo_whisper",
"tags": [
"博客",
"增强"
],
"social_link": "https://itcainiao.space"
},
"astrbot-plugin-phimg": {
"display_name": "Philomena API 搜图",
"desc": "让机器人通过 Philomena API 在使用 Philomena 搭建的图站上使用 tags 搜图。",
"author": "muyni233",
"repo": "https://github.com/muyni233/astrbot_plugin_phimg",
"tags": [
"image",
"mlp",
"philomena"
],
"social_link": "https://github.com/muyni233"
},
"astrbot-plugin-vpn-traffic": {
"display_name": "订阅流量查询",
"desc": "一个用于查询 Clash/V2Ray 订阅剩余流量的 AstrBot 插件。",
"author": "CMKH",
"repo": "https://github.com/CMKH1337/astrbot_plugin_magic_traffic",
"tags": [
"监控"
],
"social_link": "https://github.com/CMKH1337/astrbot_plugin_magic_traffic"
},
"astrbot-plugin-looki-companion": {
"display_name": "Looki 陪伴记忆",
"desc": "为了让助手能了解我们的现实世界,把 Looki 的实时事件与最近 12 小时 moments 整合成“我们”视角的共同经历摘要。",
"author": "瑞贝特",
"repo": "https://github.com/RabbitZheng4424/astrbot_plugin_looki_companion",
"tags": [
"looki",
"陪伴",
"记忆",
"现实世界"
],
"social_link": "https://rabbitz.icu"
},
"astrbot-plugin-deepseek-automatic-switch": {
"display_name": "DeepSeek 自动切换",
"desc": "在每日高峰期涨价时,在 LLM 请求发出前自动切换模型。",
"author": "CMKH",
"repo": "https://github.com/CMKH1337/astrbot_plugin_deepseek_automatic_switch",
"tags": [
"token",
"成本"
],
"social_link": "https://github.com/CMKH1337/astrbot_plugin_deepseek_automatic_switch"
},
"astrbot-plugin-instant-memo": {
"display_name": "速记备忘录",
"desc": "AI自我备忘录与主动定时提醒插件,支持状态备忘、定时/周期任务、关键词搭话,同时提供 Tool Call 与 XML Tag 双触发模式",
"author": "kitsuneimomo",
"repo": "https://github.com/KitsuneiMomo/astrbot_plugin_instant_memo",
"tags": [
"备忘录",
"定时任务"
],
"social_link": "https://github.com/KitsuneiMomo"
},
"astrbot-plugin-dynamic-life-state": {
"display_name": "动态生活状态插件",
"desc": "为 Bot 生成一天的生活时间线,并在每次对话时注入当前时间段对应的状态。",
"author": "Hola-Gracias",
"repo": "https://github.com/Hola-Gracias/astrbot_plugin_dynamic_life_state",
"social_link": "https://github.com/Hola-Gracias"
},
"astrbot-plugin-nezhatz": {
"display_name": "哪吒探针",
"desc": "查看哪吒监控站点的服务器状态等信息",
"author": "叹号大帝",
"repo": "https://github.com/thTag/astrbot_plugin_nezhatz",
"tags": [
"哪吒",
"监控",
"nezha"
],
"social_link": "https://www.th-dd.top"
},
"astrbot-plugin-sensitivefilter": {
"display_name": "群聊敏感词检测与自动处理",
"desc": "群聊敏感词检测插件,支持本地词库/外部接口/AI 语义识别三种检测方式,可按群单独配置撤回、警告、通知等处理动作",
"author": "lingyun",
"repo": "https://github.com/lingyun14beta/astrbot_plugin_sensitivefilter",
"tags": [
"敏感词处理"
],
"social_link": "https://github.com/lingyun14beta"
},
"astrbot-plugin-memosnotes": {
"display_name": "Memos备忘录连接器",
"desc": "连接到自建 Memos 实例。支持 CRUD、置顶/归档、标签系统、LLM 知识库存取(自动保存/搜索知识)、自然语言写日记",
"author": "YuNaitang",
"repo": "https://github.com/YuNaitang/astrbot_plugin_memosnotes",
"social_link": "https://github.com/YuNaitang"
},
"astrbot-plugin-oven-multi": {
"display_name": "插座的多功能烤箱",
"desc": "整合多种实用功能的插件,包含括号自动匹配、消息复读、移除空行、思考表情、风格学习、主动回复、余额查询和图片转述缓存等功能",
"author": "汐兮雨",
"repo": "https://github.com/huntersxy/astrbot_plugin_oven_multi",
"tags": [
"AI增强",
"娱乐",
"风格",
"学习"
],
"social_link": "https://github.com/huntersxy"
},
"astrbot-plugin-palette": {
"display_name": "AstrBot调色盘",
"desc": "AstrBot调色盘是一个 AstrBot WebUI 美化插件",
"author": " C₂₂H₂₅NO₆",
"repo": "https://github.com/Sisyphbaous-DT-Project/astrbot_plugin_palette",
"tags": [
"美化",
"webui"
],
"social_link": "https://github.com/Sisyphbaous-DT-Project"
},
"astrbot-plugin-polite-silence": {
"display_name": "礼貌性沉默",
"desc": "允许 AI 根据设定概率及提示词自主识别骚扰并拒绝回应,防范恶意持续打扰。",
"author": "KitsuneiMomo",
"repo": "https://github.com/KitsuneiMomo/astrbot_plugin_polite_silence",
"tags": [
"防骚扰",
"自主拒答",
"安全限制"
],
"social_link": "https://github.com/KitsuneiMomo"
},
"astrbot-plugin-spotify": {
"display_name": "Spotify 智能点歌与控制插件",
"desc": "让 Bot 拥有 Spotify 的完整控制权!支持自然语言点歌、排队、切歌、暂停,以及将好听的音乐一键加入收藏夹。",
"author": "maolbsMd",
"repo": "https://github.com/maolbsMd/astrbot_plugin_spotify",
"tags": [
"音乐",
"娱乐",
"工具",
"Spotify"
],
"social_link": "https://github.com/maolbsMd"
},
"astrbot-plugin-image-caption-cache": {
"display_name": "Image Caption Cache",
"desc": "为 AstrBot 图片转述结果提供 TTL 与图片数量双策略缓存,减少重复图片的视觉模型调用",
"author": "Florance",
"repo": "https://github.com/FloranceYeh/astrbot_plugin_image_caption_cache",
"tags": [
"缓存"
],
"social_link": "https://Florance.top"
},
"astrbot-plugin-response2image": {
"display_name": "Response2Image",
"desc": "基于 `/v1/responses` API 的图像生成插件",
"author": "Florance",
"repo": "https://github.com/FloranceYeh/astrbot_plugin_response2image",
"tags": [
"生图"
],
"social_link": "https://Florance.top"
},
"astrbot-plugin-Google-Health-Data-Retrieval-and-Analysis": {
"display_name": "谷歌Health数据拉取与分析",
"desc": "通过 Google Health API 获取健康数据,支持多用户在线授权,可选接入 LLM 进行智能分析",
"author": "catnap",
"repo": "https://github.com/catnap826/astrbot_plugin_Google_Health_Data_Retrieval_and_Analysis",
"tags": [
"health",
"google",
"llm"
],
"social_link": ""
},
"astrbot-plugin-SIGNALIS-save-decoder": {
"display_name": "SIGNALIS 存档解密",
"desc": "SIGNALIS存档解密工具,上传cargo.png可获取存档情况。 ",
"author": "David.z",
"repo": "https://github.com/PhotographyFlow/astrbot_plugin_SIGNALIS_save_decoder",
"tags": [
"signalis"
],
"social_link": "https://github.com/PhotographyFlow"
},
"astrbot-plugin-isittrue": {
"display_name": "是真的吗",
"desc": "是真的吗——群聊事实核查小工具。@机器人说出你想核实的事情,或引用一条消息,AI 自动判断真假。无需额外 API,即装即用。",
"author": "konley",
"repo": "https://github.com/konley/astrbot_plugin_isittrue"
},
"astrbot-plugin-just-enough-mcserver-status": {
"display_name": "Just Enough McServer Status",
"desc": "实现本地Minecraft的服务器查询与仿原版风格信息展示功能。",
"author": "NightVoyager14",
"repo": "https://github.com/NightVoyager14/astrbot_plugin_just_enough_mcserver_status",
"tags": [
"minecraft"
],
"social_link": "https://github.com/NightVoyager14"
},
"astrbot-plugin-tattle": {
"display_name": "LLM 告状机",
"desc": "当LLM需要告状的时候,会调用注册的函数工具complain_to_receivers向指定列表人进行告状。",
"author": "AlanBacker",
"repo": "https://github.com/AlanBacker/astrbot_plugin_tattle",
"tags": [
"安全",
"OneBot"
],
"social_link": "https://space.bilibili.com/702922307"
},
"astrbot-plugin-cost-control": {
"display_name": "Token成本控制",
"desc": "细粒度 token 预算监控、超预算提醒、缓存破坏诊断、提示词优化与全数据可视化",
"author": "Leafiber",
"repo": "https://github.com/leafliber/astrbot_plugin_cost_control",
"tags": [
"token",
"成本",
"上下文",
"缓存"
],
"social_link": "https://github.com/leafliber"
},
"astrbot-plugin-dsa-pusher": {
"display_name": "DSA推送器",
"desc": "接收 DSA (DailyStockAnalysis) 通过 Webhook 推送的股票分析报告,自动转发到微信/QQ 等聊天平台。",
"author": "姬羽",
"repo": "https://github.com/Himehane/astrbot_plugin_dsa_pusher",
"tags": [
"股票",
"Webhook",
"消息推送"
],
"social_link": "https://github.com/Himehane"
},
"astrbot-plugin-hermes-connector": {
"display_name": "Hermes控制器",
"desc": "连接 Hermes Agent,借助 AstrBot 在任意聊天平台(QQ、微信、Telegram 等)上操控 Hermes Agent 会话。支持远程发送消息、查看会话状态、文件操作等,支持自然语言触发。",
"author": "konodiodaaaaa1",
"repo": "https://github.com/konodiodaaaaa1/astrbot_plugin_hermes_connector",
"tags": [
"hermes",
"agent",
"remote",
"vibe-coding",
"远程控制"
],
"social_link": "https://github.com/konodiodaaaaa1"
},
"astrbot-plugin-steam-price-heybox": {
"display_name": "Steam 价格查询(小黑盒)",
"desc": "无需 API Key,使用小黑盒查询 Steam 游戏当前价、历史最低价、促销记录、跨区价格与游戏资料。",
"author": "penguin-madagascar",
"repo": "https://github.com/penguin-madagascar/astrbot_plugin_steam_price_heybox",
"tags": [
"Steam",
"价格查询",
"史低",
"小黑盒",
"Heybox"
]
},
"astrbot-plugin-hindsight-memory": {
"display_name": "Hindsight Memory",
"desc": "接入 Hindsight Cloud,为私聊和群聊提供按会话隔离的长期记忆能力.",
"author": "JiaJian",
"repo": "https://github.com/wjiajian/astrbot_plugin_hindsight_memory",
"tags": [
"memory"
],
"social_link": "https://github.com/wjiajian"
},
"astrbot-plugin-suwayomi-server": {
"display_name": "Suwayomi 漫画助手",
"desc": "将 Suwayomi-Server 作为漫画后端,为聊天用户提供漫画搜索、阅读、下载和订阅更新推送服务。",
"author": "Fold",
"repo": "https://github.com/FFFold/astrbot_plugin_suwayomi_server",
"tags": [
"漫画",
"漫画订阅"
]
},
"astrbot-plugin-AstrNa": {
"display_name": "AstrNa",
"desc": "AstrNa是一款 AstrBot 优化插件。",
"author": "C₂₂H₂₅NO₆",
"repo": "https://github.com/Sisyphbaous-DT-Project/astrbot_plugin_AstrNa",
"tags": [
"优化"
],
"social_link": "https://github.com/Sisyphbaous-DT-Project"
},
"astrbot-plugin-Firefly-Blog-Manager": {
"display_name": "Firefly 博客管理插件",
"desc": "将 Firefly 博客的日常操作封装为 AstrBot AI Agent 可调用的工具。",
"author": "月凌",
"repo": "https://github.com/qiyueling2716/astrbot_plugin_Firefly_Blog_Manager",
"tags": [
"博客",
"流萤",
"Firefly"
],
"social_link": "https://github.com/qiyueling2716"
},
"astrbot-plugin-mc-skin": {
"display_name": "Minecraft 皮肤 3D 查询",
"desc": "查询 Minecraft 正版玩家皮肤并渲染为 3D 图片。",
"author": "chemistryh2o",
"repo": "https://github.com/zqy20081015/astrbot_plugin_mc_skin"
},
"astrbot-plugin-electricity-monitor": {
"display_name": "易校园电费监控",
"desc": "易校园电费监控插件,支持多会话、多寝室订阅,自动查询寝室电量和余额,低于阈值时主动提醒,并提供 WebUI 管理、30 天趋势和错误诊断。",
"author": "烟雨寒月",
"repo": "https://github.com/yanyuhanyue/astrbot_plugin_electricity_monitor",
"tags": [
"电费监控",
"易校园"
]
},
"astrbot-plugin-quota-hub": {
"display_name": "Astrbot 配额中枢",
"desc": "配额中枢——限制每个人、每个群、群里每个成员在一段时间内调用 AI 的次数和 Token 用量,并提供网页面板随时查看用量、调整额度。",
"author": "Dracowyn",
"repo": "https://github.com/Dracowyn/astrbot_plugin_quota_hub",
"tags": [
"配额",
"限流",
"限额",
"Token",
"数据中台",
"rate-limit",
"quota"
],
"social_link": "https://github.com/Dracowyn"
},
"astrbot-plugin-agent-lab": {
"display_name": "任务模式",
"desc": "在 AstrBot 内创建、运行和管理个人任务模式的任务执行插件",
"author": "百岁老太",
"repo": "https://github.com/zzz27578/astrbot_plugin_agent_lab"
},
"astrbot-plugin-serpapi-imgsearch": {
"display_name": "SerpApi 搜图工具",
"desc": "让 LLM 学会用SerpApi搜图、发图与以图搜图",
"author": "monbed",
"repo": "https://github.com/monbed/astrbot_plugin_serpapi_imgsearch",
"tags": [
"功能",
"图片"
]
},
"astrbot-plugin-iris-chat-memory": {
"display_name": "Iris 聊天陪伴记忆",
"desc": "为陪伴设计的长期记忆,针对群聊优化。自带知识图谱、群聊画像、用户画像、图片分析等增强功能(专注于记忆的v2版本)",
"author": "Leafiber",
"repo": "https://github.com/Leafliber/astrbot_plugin_iris_chat_memory",
"tags": [
"长期记忆",
"陪伴",
"知识图谱",
"用户画像"
],
"social_link": "https://github.com/Leafliber"
},
"astrbot-plugin-minecraft-multi-monitor": {
"display_name": "Minecraft 多服务器监控",
"desc": "面向 AstrBot 的 Minecraft 多服务器监控插件,支持同实例监控多台 Java/Bedrock 服务器,内置可切换的 MineBBS API / mcstatus.io 查询源,并在状态变化时推送通知。",
"author": "xlyang",
"repo": "https://github.com/XiaolongYang-HZAU/astrbot_plugin_minecraft_multy_monitor",
"tags": [
"娱乐",
"效率",
"我的世界",
"Minecraft"
],
"social_link": ""
},
"astrbot-plugin-remove-blank-lines": {
"display_name": "删除回复空行",
"desc": "检测并删除bot回复中的空行",
"author": "ahuai",
"repo": "https://github.com/ahuai114514/astrbot_plugin_remove_blank_lines",
"social_link": "https://github.com/ahuai114514"
},
"astrbot-plugin-songloft": {
"display_name": "Songloft 音乐控制 Miot",
"desc": "通过 AstrBot 对话控制 Songloft 音乐服务器,支持小米音箱播放、歌曲搜索、歌单管理等功能。",
"author": "deer",
"repo": "https://github.com/deerwan/astrbot_plugin_songloft",
"tags": [
"Songloft",
"音乐控制"
],
"social_link": "https://lllh.de"
},
"astrbot-plugin-minecraft-motd": {
"display_name": "Minecraft 服务器 motd 查询",
"desc": "一个用于查询 Minecraft 服务器状态的 AstrBot 插件,支持 Java 版和基岩版服务器,完美兼容 ViaVersion 多版本服务器",
"author": "Hayston1001",
"repo": "https://github.com/Hayston1001/astrbot_plugin_minecraft_motd",
"tags": [
"minecraft",
"mc",
"服务器",
"motd"
]
},
"astrbot-plugin-koharu": {
"display_name": "Koharu 漫画翻译",
"desc": "使用 Koharu HTTP API 翻译聊天中的漫画图片。",
"author": "ABCwewe",
"repo": "https://github.com/ABCwewe/astrbot_plugin_koharu",
"tags": [
"翻译",
"Koharu",
"漫画",
"漫画翻译"
],
"social_link": "https://github.com/ABCwewe"
},
"astrbot-plugin-AstrScheduleSync": {
"display_name": "多端日程同步管理",
"desc": "让 AstrBot Agent 通过自然语言创建/查询/修改/删除 ICS 标准格式日历事件和待办,自动上传到 Radicale CalDAV 服务器。用户可通过支持定时导入/定时同步CavDAV日程/待办的软件实现多端日程同步管理",
"author": "D1ff1culTT",
"repo": "https://github.com/D1ff1culTT/astrbot_plugin_AstrScheduleSync",
"tags": [
"日程",
"CalDAV",
"效率",
"待办"
],
"social_link": "https://github.com/D1ff1culTT"
},
"astrbot-plugin-HypixelBanTracker": {
"display_name": "HypixelBanTracker",
"desc": "一个Hypixel封禁查询",
"author": "xiaoxin1336",
"repo": "https://github.com/xiaoxin-qaq/astrbot_plugin_HypixelBanTracker"
},
"astrbot-plugin-baidu-curl": {
"display_name": "百度网盘cURL下载助手",
"desc": "发送百度网盘分享链接,自动转存、提取直链并生成cURL下载命令。支持baidu-autosave转存、OpenList集成、文件自动整理。",
"author": "jichie",
"repo": "https://github.com/jichie/astrbot_plugin_baidu_curl",
"tags": [
"百度网盘",
"下载",
"转存"
],
"social_link": ""
},
"astrbot-plugin-Rcon-minecraft": {
"display_name": "Rcon Minecraft服务器管理",
"desc": "通过 RCON 协议连接 Minecraft 服务器,支持多服务器管理、AI 自然语言控制、定时备份公告、性能监控与完整玩家管理。",
"author": "WindClear-VC",
"repo": "https://github.com/WindClear-VC/astrbot_plugin_Rcon_minecraft"
},
"astrbot-plugin-token-controller": {
"display_name": "Token 流量控制",
"desc": "精细化群聊 Token 流量控制插件:限额、模型阶梯调控、节流与可视化统计。",
"author": "青尘工作室",
"repo": "https://github.com/QingchenWait/astrbot_plugin_token_controller",
"tags": [
"流量控制",
"限流",
"webui"
]
},
"astrbot-plugin-mimo-tts-clone": {
"desc": "基于 MiMo 官方 API 的 TTS 音色克隆插件,支持 Pages 音色管理、授权音频上传、多音色切换、情绪路由、自动语音化、试听诊断,以及供其他插件复用的 TTS 工具。",
"author": "Justice-ocr",
"repo": "https://github.com/Justice-ocr/astrbot_plugin_mimo_tts_clone",
"tags": [
"tts",
"mimo",
"voice-clone",
"pages",
"speech"
],
"social_link": "https://github.com/Justice-ocr"
},
"astrbot-plugin-cloudflare-browser-run": {
"display_name": "Cloudflare云抓取",
"desc": "基于 Cloudflare Browser Run / Browser Rendering 的网页抓取 LLM Tool 插件。",
"author": "piexian",
"repo": "https://github.com/piexian/astrbot_plugin_cloudflare_browser_run",
"tags": [
"工具",
"网页抓取",
"浏览器自动化"
],
"social_link": "https://github.com/piexian"
},
"astrbot-plugin-knowledge-repo-sync": {
"display_name": "知识库同步插件",
"desc": "从远程 Git 仓库同步 Markdown 文档到 AstrBot 知识库,支持自动建库、分支识别、Git 差异检测增量同步、忽略路径、通知和分块参数配置。",
"author": "Sakura1618",
"repo": "https://github.com/Sakura1618/astrbot_plugin_knowledge_repo_sync",
"tags": [
"知识库",
"功能"
]
},
"astrbot-plugin-obsidian-kb-sync": {
"display_name": "Obsidian 知识库同步",
"desc": "通过 Fast Note Sync Service 将 Obsidian 笔记同步到 AstrBot 知识库。",
"author": "aimer的猫",
"repo": "https://github.com/aimercat1994/astrbot_plugin_obsidian_kb_sync",
"tags": [
"知识库",
"obsidian"
],
"social_link": "https://github.com/aimercat1994"
},
"astrbot-plugin-exa-web-search": {
"display_name": "Exa联网搜索",
"desc": "通过 Exa API 进行联网搜索,支持指令和 LLM Tool 调用。",
"author": "piexian",
"repo": "https://github.com/piexian/astrbot_plugin_exa_web_search",
"tags": [
"工具",
"联网搜索",
"Exa",
"llm tool"
],
"social_link": "https://github.com/piexian"
},
"astrbot-plugin-openclaw-caller": {
"display_name": "OpenClaw 任务委派",
"desc": "将 AstrBot 中的长任务委派给 OpenClaw Gateway Agent 执行,支持手动命令、LLM Tool、后台任务、任务列表与结果读取。",
"author": "唐格天",
"repo": "https://github.com/tanggetian/astrbot_plugin_openclaw_caller",
"social_link": "https://github.com/tanggetian"
},
"astrbot-plugin-garmin-health": {
"display_name": "佳明健康看板",
"desc": "佳明健康看板 - 为 AstrBot 提供 Garmin 健康数据查询能力。通过 Garmin Connect 官方接口,支持心率、睡眠、步数、活动、跑量等数据的自然语言查询,让 Bot 在对话中快速获取和展示你的运动健康信息。",
"author": "Jonathan-614",
"repo": "https://github.com/Jonathan-614/astrbot_plugin_garmin_health",
"tags": [
"健康",
"运动",
"工具",
"Garmin",
"佳明"
],
"social_link": "https://github.com/Jonathan-614"
},
"astrbot-plugin-group-llm-guard": {
"display_name": "群聊 AI 聊天控制器",
"desc": "单独关闭指定群聊的 LLM 聊天,同时保留 / 指令。",
"author": "cgefw",
"repo": "https://github.com/cgefw/astrbot_plugin_group_llm_guard",
"tags": [
"LLM",
"黑名单",
"白名单",
"大模型",
"开关"
]
},
"astrbot-plugin-everos-integration": {
"display_name": "EverOS for AstrBot",
"desc": "为 AstrBot 接入 EverOS 自进化记忆引擎,让 Agent 拥有跨会话的长期记忆与自我学习能力。",
"short_desc": "接入自进化记忆引擎,让 Agent 记住每一次对话",
"version": "v1.1.0",
"author": "Masumeiki",
"repo": "https://github.com/Masumeiki/astrbot_plugin_everos_integration",
"tags": [
"记忆系统",
"功能增强",
"AI",
"LLM"
],
"social_link": ""
},
"astrbot-plugin-note-sift": {
"display_name": "筛记笔记管理 NoteSift",
"desc": "渐进式知识库 — 先 grep 发现,再按需读取。告别 RAG 的\"黑盒检索\",让 LLM 像人一样:先搜索候选,再精准提取。原生支持 Obsidian vault,兼容标准 Markdown。FTS5 全文索引,5 种读取模式,多库管理。",
"author": "OldSun",
"repo": "https://github.com/OldSuns/astrbot_plugin_note_sift",
"tags": [
"obsidian",
"知识库",
"grep"
],
"social_link": "https://github.com/OldSuns"
},
"astrbot-plugin-live-stream-companion": {
"display_name": "我会直播圈米养你",
"desc": "接入 VTube Studio 以及 B 站直播。支持 B 站直播间弹幕读取、LLM 自动回应、VTube Studio 表情动作、TTS 嘴型联动和 OBS 字幕层。让 Bot 不只能聊天,还能坐到直播间里看弹幕、接话、摆表情、动嘴和上字幕。",
"author": "menglimi",
"repo": "https://github.com/menglimi/astrbot_plugin_live_stream_companion",
"tags": [
"直播",
"live2d",
"互动"
],
"social_link": "https://github.com/menglimi"
},
"astrbot-plugin-open-notebook": {
"display_name": "Open Notebook 集成",
"desc": "将 Open Notebook 接入 AstrBot,支持聊天命令和 LLM 工具管理 notebooks、上传/引用文件、查询文档内容、删除 notebook,并支持按 AstrBot provider 序号同步 Open Notebook 默认 chat 模型。",
"author": "buding",
"repo": "https://github.com/zouyonghe/astrbot_plugin_open_notebook",
"tags": [
"Open Notebook",
"知识库",
"文档问答"
]
},
"astrbot-plugin-Auto-ddl-Detect": {
"display_name": "ddl自动检测插件",
"desc": "自动检测并整合各种群聊里发布的通知消息,以及ddl提醒。适合事情比较多但来不及看群的人",
"author": "FarasMoon",
"repo": "https://github.com/FarasMoon/astrbot_plugin_Auto_ddl_Detect",
"tags": [
"生活",
"自动"
],
"social_link": "https://github.com/FarasMoon"
},
"astrbot-plugin-dailyhub": {
"display_name": "每日资讯推送",
"desc": "一个 [AstrBot](https://github.com/AstrBotDevs/AstrBot) 插件,聚合每日资讯与各平台热榜:\n**60秒读懂世界 / AI 日报 / Epic 免费游戏 / 实时 IT 资讯 / IT 之家热榜 / 黄金价格 / 抖音 / 小红书 / 哔哩哔哩 / 微博**。\n支持「指令手动获取」+「按源订阅定时推送」,每个源的图片/文字输出与推送频率均可独立配置。",
"author": "AMag1c",
"repo": "https://github.com/AMag1c/astrbot_plugin_dailyhub",
"tags": [
"每日新闻",
"喜加一",
"epic",
"金价",
"热搜",
"热榜"
]
},
"astrbot-plugin-dida-todo": {
"display_name": "滴答清单待办插件",
"desc": "将滴答清单(TickTick / 滴答清单)无缝集成到 AstrBot 中,支持自然语言创建任务和查询待办。\n利用 AstrBot 的 Function Calling 能力,你只需像对人说话一样:“明天下午3点提醒我开会”,即可自动创建带截止时间的任务。",
"author": "neko_null",
"repo": "https://github.com/wuhuqif176/astrbot_plugin_dida_todo",
"tags": [
"工具"
]
},
"Wyccotccy/astrbot-plugin-qzone-tools": {
"display_name": "更多LLM工具",
"desc": "支持机器人发送定时消息,发送QQ空间,发送戳一戳等给群聊或者私聊,以及更多LLM工具(仅支持Napcat version > 4.17.55)",
"author": "Wyccotccy",
"repo": "https://github.com/Wyccotccy/astrbot_plugin_qzone_tools",
"social_link": "www.wyccotccy.cn"
},
"astrbot-plugin-private-companion": {
"display_name": "我会永远陪着你",
"desc": "最强拟人主动插件,面向 AstrBot 的人格连续性、关系识别与主动行为编排插件。它把生活状态、日程细化、梦境日记、长期创作、重要日期、私聊关系、群聊观察、QQ 关系网、可选外部动作、模型 Provider 和扩展页管理组织成一套持续陪伴体验。",
"author": "menglimi",
"repo": "https://github.com/menglimi/astrbot_plugin_private_companion",
"tags": [
"拟人化",
"主动能力",
"插件整合"
],
"social_link": "https://github.com/menglimi"
},
"astrbot-plugin-multimodal-router": {
"display_name": "多模态临时路由",
"desc": "当用户消息包含图片,且当前 LLM provider 不具备多模态能力时,本插件尝试仅将本次 LLM 请求路由到配置的多模态 provider。",
"author": "Rinyin",
"repo": "https://github.com/Rinyin/astrbot_plugin_multimodal_router",
"social_link": "https://github.com/Rinyin"
},
"astrbot-plugin-pic-toolbox": {
"display_name": "图片处理工具箱",
"desc": "QQ平台图片处理工具箱,支持对图片,gif,头像左/右/上/下对称,反色,镜像翻转。支持对gif进行调速(不支持丢帧来进行加速,即加速存在上限)。以及其他的有趣的指令",
"author": "Lucy",
"repo": "https://github.com/lirundong093-glitch/astrbot_plugin_pic_toolbox",
"tags": [
"图片",
"对称",
"反色",
"镜像翻转",
"gif处理",
"趣味表情"
]
},
"astrbot-plugin-hs-rank": {
"display_name": "炉石战棋榜",
"desc": "炉石传说国服战棋排行榜查询插件,支持双打/单打排行、涨跌榜、排名区间、自动记录和后台配置。",
"author": "Scoy507",
"repo": "https://github.com/a1030907531/astrbot_plugin_hs_rank",
"tags": [
"游戏",
"炉石传说",
"战棋",
"排行榜"
]
},
"astrbot-plugin-ottohub": {
"display_name": "Ottohub Adapter",
"desc": "AstrBot 的 OttoHub(ottohub.cn) 平台适配器插件",
"author": "wCSnDb",
"repo": "https://github.com/wCSnDb/astrbot_plugin_ottohub",
"tags": [
"适配器",
"评论回复",
"私信回复"
],
"social_link": "https://github.com/wCSnDb"
},
"astrbot-plugin-camera-exif": {
"display_name": "相机EXIF分析",
"desc": "自动检测接收的图片是否为相机拍摄,提取并分析EXIF数据(快门次数、光圈、ISO、焦距、GPS等),支持所有主流相机厂商RAW格式解析,自动回传元数据至原始聊天渠道。提供19种字段单独查询指令,支持群聊/私聊黑白名单、权限隔离与频率限制。",
"author": "昊天兽王",
"repo": "https://github.com/haotianshouwang/astrbot_plugin_camera_exif",
"tags": [
"相机",
"摄影",
"EXIF",
"工具"
],
"social_link": "https://昊天兽王.top"
},
"astrbot-plugin-galgame-web": {
"display_name": "类Galgame网页端聊天窗口",
"desc": "一个 AstrBot 插件,在浏览器中呈现 Galgame 风格的webchat界面",
"author": "solitude",
"repo": "https://github.com/insolitude610/astrbot_plugin_galgame_web",
"tags": [
"galgame",
"webchat"
],
"social_link": "https://github.com/insolitude610"
},
"astrbot-plugin-feishu-todo": {
"display_name": "飞书待办提醒",
"desc": "自动识别飞书消息中的任务并创建飞书待办,支持多级 DDL 提醒",
"author": "Before",
"repo": "https://github.com/xBefore/astrbot_plugin_feishu_todo",
"tags": [
"Lark",
"飞书",
"待办",
"任务",
"提醒"
],
"social_link": "https://github.com/xBefore"
},
"astrbot-plugin-ow-dashen": {
"display_name": "守望先锋 数据查询插件",
"desc": "守望先锋数据查询插件,支持查询玩家资料、战绩、段位、强度分析、总结、英雄选取率、商店、补丁说明等",
"author": "singularity2000",
"repo": "https://github.com/singularity2000/astrbot_plugin_ow_dashen",
"tags": [
"守望先锋",
"overwatch",
"OW",
"网易大神"
]
},
"astrbot-plugin-tataru": {
"display_name": "塔塔露",
"desc": "最终幻想14 TataruBot2 的 AstrBot 插件迁移版本,支持活动日历、招募板、物价、logs、物品信息等功能一篮子查询。",
"author": "jawwe",
"repo": "https://github.com/jawwe/astrbot_plugin_tataru",
"tags": [
"最终幻想14",
"FFXIV",
"塔塔露机器人"
],
"social_link": "https://github.com/jawwe"
},
"astrbot-plugin-math-plotter": {
"display_name": "数学函数绘图器",
"desc": "AI 辅导学习时自动调用,将数学方程、函数公式绘制为图像。支持一元函数、多函数对比、隐式方程、三维曲面、极坐标、参数方程、球坐标曲面、矢量场、隐式3D曲面等 11 种坐标系/绘图模式。",
"author": "D1ff1cult",
"repo": "https://github.com/D1ff1culTT/astrbot_plugin_math_plotter",
"tags": [
"学习辅导",
"ai增强",
"函数图像",
"数学函数"
],
"social_link": "https://github.com/D1ff1culTT?tab=repositories"
},
"astrbot_plugin_smart_segmentation": {
"display_name": "智能分段",
"desc": "使用 LLM 将 AstrBot 主回复自然拆分为多条聊天消息,并异步补发剩余段。",
"author": "薄暝",
"repo": "https://github.com/exynos967/astrbot_plugin_smart_segmentation",
"tags": [
"llm",