-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathplugins.json
More file actions
12257 lines (12257 loc) · 442 KB
/
plugins.json
File metadata and controls
12257 lines (12257 loc) · 442 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_smart_segmentation": {
"display_name": "智能分段",
"desc": "使用 LLM 将 AstrBot 主回复自然拆分为多条聊天消息,并异步补发剩余段。",
"author": "薄暝",
"repo": "https://github.com/exynos967/astrbot_plugin_smart_segmentation",
"tags": [
"llm",
"分段",
"回复"
]
},
"astrbot_plugin_newapi_model_status": {
"display_name": "NewAPI 模型健康度",
"desc": "使用 new_api_tools 的公开 embed 接口,生成并发送模型健康度图卡。",
"author": "薄暝",
"repo": "https://github.com/exynos967/astrbot_plugin_newapi_model_status",
"tags": [
"newapi"
]
},
"astrbot_plugin_nitter_tweets": {
"display_name": "Nitter 推文记录",
"desc": "获取 X/Twitter 用户公开推文,支持媒体发送、定时推送和自动翻译。",
"author": "shitianyaa",
"repo": "https://github.com/shitianyaa/astrbot_plugin_nitter_tweets",
"social_link": "https://github.com/shitianyaa"
},
"astrbot_plugin_comfyui_hub": {
"display_name": "ComfyUI 枢纽",
"desc": "将 ComfyUI 的强大能力集成到 AstrBot,支持文生图、图生图、自动标签识别、智能审查、队列管理等功能。",
"author": "ReallyChooseC",
"repo": "https://github.com/ReallyChooseC/astrbot_plugin_comfyui_hub",
"tags": [
"ComfyUI"
],
"social_link": "https://github.com/ReallyChooseC"
},
"astrbot_plugin_anysearch": {
"display_name": "Anysearch 实时联网搜索",
"desc": "调用 Anysearch API 实现联网搜索。支持通用网页搜索、新闻与文档检索、批量查询和网页正文提取,适合让 Bot 在回答中获取更及时、更可靠、更稳定的外部信息。",
"author": "AgIzT",
"repo": "https://github.com/AgIzT/astrbot_plugin_anysearch",
"tags": [
"网络搜索",
"联网",
"anysearch"
]
},
"astrbot_plugin_e2b_code": {
"display_name": "☁️ E2B 云端沙箱",
"desc": "基于 E2B 安全云端沙箱的云端代码运行指令插件。支持群聊或私聊中通过显式指令运行代码,自动捕获标准输出(Stdout)、标准错误(Stderr)、返回结果(Result),并且支持将绘图结果(如 Matplotlib 等)自动提取并发回聊天中。沙箱内置对 Python, JavaScript, TypeScript, R, Java, Bash 等环境的支持。",
"author": "Rat0323",
"repo": "https://github.com/Rat0323/astrbot_plugin_e2b_code",
"tags": [
"工具",
"沙箱",
"代码",
"开发"
]
},
"astrbot_plugin_Robomaster_Information": {
"display_name": "RoboMaster 论坛 AI 推送",
"desc": "RoboMaster 官方论坛里经常会出现开源项目、技术资料、规则讨论和赛季通知。为了更方便地获取论坛的近实时消息,本插件通过 AstrBot 定时监控论坛文章页,在发现新文章后自动抓取详情页正文,调用 AstrBot 当前配置的大模型生成技术摘要,并推送到指定 QQ 会话。",
"author": "asterShining",
"repo": "https://github.com/asterShining/astrbot_plugin_Robomaster_Information",
"tags": [
"robomaster"
],
"social_link": "https://github.com/asterShining"
},
"astrbot_plugin_xnbot": {
"display_name": "XNBot",
"desc": "XNBot 移植插件。自带聊天流,Agent 记忆管理,Kuzu 图结构数据库,以及可编辑设定的配置文件,独立 WebUI,提供高质量且有趣的对话,支持长期记忆,模拟遗忘曲线,生活作息等。",
"author": "kurame123",
"repo": "https://github.com/kurame123/astrbot_plugin_xnbot"
},
"astrbot_plugin_openlist_bot": {
"display_name": "Openlist助手(RE.)",
"desc": "由原本的Openlist助手插件重构优化而来",
"author": "Volundio",
"repo": "https://github.com/Volundio/astrbot_plugin_openlist_bot",
"tags": [
"Openlist",
"文件管理",
"自动备份",
"网盘管理"
]
},
"astrbot-plugin-notion-bridge": {
"display_name": "Notion Bridge 🔗",
"desc": "桥接 Notion 与 AstrBot 的双向文档管理工具。支持递归读取、关键词搜索、知识库同步、LLM 查询,以及完整的文档增删改查(页面/块/数据库/用户/评论)。内置 Notion API 3 req/s 速率限制器,可靠管理大量文档。",
"short_desc": "双向控制 Notion:读取、写入、搜索、管理一站式",
"version": "v2.0.0",
"author": "Masumeiki",
"repo": "https://github.com/Masumeiki/astrbot_plugin_notion_bridge",
"tags": [
"notion",
"文档管理",
"知识库",
"双向同步",
"API"
],
"social_link": ""
},
"astrbot_plugin_dynamic_subagent": {
"display_name": "dynamic_subagent",
"desc": "让 AI 可以通过 tool call 动态创建和管理子 Agent",
"author": "maomaosamaqwq",
"repo": "https://github.com/maomaosamaqwq/astrbot_plugin_dynamic_subagent",
"tags": [
"子agent",
"agent"
],
"social_link": "https://github.com/maomaosamaqwq"
},
"astrbot-plugin-count-loc": {
"display_name": "代码统计 (CountLOC)",
"desc": "一个可以分析 GitHub/GitLab 公开仓库代码行数、文件数和注释行数的 AstrBot 插件喵。支持多分支选择、自定义忽略项过滤和 LLM 函数工具调用喵!",
"author": "DBJD-CR & Gemini",
"repo": "https://github.com/DBJD-CR/astrbot_plugin_count_loc",
"tags": [
"GitHub",
"GitLab",
"代码统计",
"代码分析",
"code-analysis"
],
"social_link": "https://github.com/DBJD-CR"
},
"astrbot_plugin_not_enough_crash": {
"display_name": "Not Enough Crash",
"desc": "在配置的群聊中自动、静默地分析 Minecraft/PCL 崩溃报告文件。",
"author": "mmyddd",
"repo": "https://github.com/mmyddd/astrbot_plugin_not_enough_crash",
"tags": [
"Minecraft",
"崩溃日志"
],
"social_link": "https://github.com/mmyddd"
},
"astrbot_plugin_irmia_devkit": {
"display_name": "弥亚开发工具箱",
"desc": "为 Agent 提供实用且安全的开发工具 — 备份/语法检查/回滚,63 工具 + 1 Skill",
"author": "伊尔弥亚",
"repo": "https://github.com/irmia2026/irmia_devkit_open",
"tags": [
"开发工具",
"代码审查",
"Git",
"安全编辑",
"文件处理"
]
},
"astrbot_plugin_esjzone_downloader": {
"display_name": "ESJZone 小说下载器",
"desc": "ESJZone 小说 EPUB/TXT 下载器。",
"author": "Rentz",
"repo": "https://github.com/Rentz412/astrbot_plugin_esjzone_downloader",
"tags": [
"小说",
"下载",
"ESJZone"
],
"social_link": "https://github.com/Rentz412"
},
"astrbot_plugin_mmx_cli_tool": {
"display_name": "MiniMax 多模态工具",
"desc": "接入 mmx-cli,提供 MiniMax 的文本、图片、视频、音乐、纯音乐、语音、视觉理解和搜索能力。",
"author": "piexian",
"repo": "https://github.com/piexian/astrbot_plugin_mmx_cli_tool",
"tags": [
"视频生成",
"图像生成",
"视觉理解",
"联网搜索",
"minimax",
"音乐生成",
"歌词生成",
"token plan"
],
"social_link": "https://github.com/piexian"
},
"astrbot_plugin_MiniMax_CLI": {
"display_name": "MiniMax CLI",
"desc": "接入 mmx-cli,提供 MiniMax 的文本、图片、视频、音乐、纯音乐、语音、视觉理解和搜索能力。",
"author": "唐格天",
"repo": "https://github.com/tanggetian/astrbot_plugin_MiniMax_CLI",
"social_link": "https://github.com/tanggetian"
},
"astrbot_plugin_mem0_memory": {
"display_name": "mem0",
"desc": "接入 mem0 托管长期记忆。",
"author": "Yuk1you",
"repo": "https://github.com/Yuk1you/astrbot_plugin_mem0_memory",
"tags": [
"memory",
"mem0"
],
"social_link": "https://github.com/Yuk1you/"
},
"astrbot_plugin_video_reference_vision": {
"display_name": "引用视频理解",
"desc": "解析消息所引用的视频。支持视频回查、转述与抽帧。",
"author": " C₂₂H₂₅NO₆",
"repo": "https://github.com/Sisyphbaous-DT-Project/astrbot-plugin-video-reference-vision",
"tags": [
"视频理解",
"全模态"
],
"social_link": "https://github.com/Sisyphbaous-DT-Project"
},
"astrbot_plugin_tsugu_bangdream": {
"display_name": "Tsugu BanGDream Bot",
"desc": "移植了tsugu bot的前端功能到astrbot上,基于nonebot-plugin-tsugu-bangdream-bot项目开发",
"author": "Ars1027",
"repo": "https://github.com/Ars1027/astrbot_plugin_tsugu_bangdream",
"tags": [
"BanGDream",
"邦多利",
"邦邦",
"Tsugu",
"茨菇"
],
"social_link": "https://github.com/Ars1027"
},
"astrbot_plugin_openviking_memory": {
"display_name": "OpenViking Memory",
"desc": "集成 OpenViking 长期记忆能力。支持自动捕获对话、语义召回,以及跨对话空间记忆,且隔离规则可自定义配置。",
"author": "tosaki",
"repo": "https://github.com/t0saki/astrbot_plugin_openviking_memory",
"tags": [
"agent memory",
"记忆",
"知识图谱"
],
"social_link": "t0saki.com"
},
"astrbot_plugin_opencode_tool": {
"display_name": "OpenCode",
"desc": "集成 OpenCode",
"author": "苍岛",
"repo": "https://github.com/cang-dot/astrbot_plugin_opencode_tool",
"tags": [
"编程",
"OpenCode"
]
},
"astrbot_plugin_whatsapp_adapter": {
"display_name": "WhatsApp",
"desc": "AstrBot WhatsApp 适配器",
"author": "casama233",
"repo": "https://github.com/casama233/astrbot_plugin_whatsapp_adapter",
"tags": [
"whatsapp",
"平台",
"适配器",
"消息"
],
"social_link": "https://github.com/casama233"
},
"astrbot-plugin-qzone-ultra": {
"display_name": "QQ空间Ultra",
"desc": "QQ空间Ultra,更稳定的QQ空间插件,支持自动绑定QQ空间,采用独立进程:占用极低、稳定性极高,支持看/评/赞/发/写/删说说、回评、投稿审核、自动发评和 LLM tools。",
"author": "雪碧bir",
"repo": "https://github.com/diaomin66/astrbot_plugin_qzone_ultra",
"tags": [
"QQ空间"
]
},
"telethon-bot-adapter": {
"display_name": "Telegram Bot Adapter",
"desc": "Telethon-based Telegram Bot adapter / 基于 Telethon 的 Telegram Bot 适配器",
"author": "outlook84",
"repo": "https://github.com/outlook84/astrbot_plugin_telethon_bot_adapter",
"tags": [
"telegram",
"telethon",
"adapter",
"bot"
]
},
"astrbot-plugin-subagent-worktogether": {
"display_name": "更好的Agent间通信",
"desc": "能够支持子Agent之间直接通信,可以控制互相通信的深度和次数,可以输出Agent互相通信的完整链路",
"author": "ScarletAugus",
"repo": "https://github.com/ScarletAugus/astrbot_plugin_subagent_worktogether",
"tags": [
"Agent",
"SubAgent"
]
},
"astrbot-plugin-qcm": {
"display_name": "QQ Connect Minecraft 群服互联",
"desc": "定时监听指定群的消息并发送到MC服务器,同时接收MC服务器的消息并转发到群。",
"author": "Huntersxy",
"repo": "https://github.com/huntersxy/astrbot_plugin_qcm",
"tags": [
"互联",
"群",
"我的世界",
"minecraft"
],
"social_link": "https://github.com/huntersxy"
},
"astrbot-plugin-user-terms": {
"display_name": "用户条款签署控制",
"desc": "用户条款签署控制插件,为指定用户 SID 或群组 SID 要求单独同意用户条款后才允许继续使用机器人",
"author": "AlanBacker",
"repo": "https://github.com/AlanBacker/astrbot_plugin_user_terms",
"tags": [
"用户条款",
"功能",
"安全"
],
"social_link": "https://space.bilibili.com/702922307"
},
"astrbot-plugin-chat-archive": {
"display_name": "Chat Archive",
"desc": "一款为 AstrBot 打造的高性能、无感知的聊天记录存档 Web 可视化管理面板插件。",
"author": "YukiNo420",
"repo": "https://github.com/YukiNo420/astrbot_plugin_chat_archive",
"tags": [
"tools",
"admin",
"web",
"database",
"archive"
],
"social_link": "https://github.com/YukiNo420"
},
"astrbot_plugin_agentmemory": {
"display_name": "AgentMemory 长期记忆",
"desc": "Connect AstrBot to agentmemory for sender-scoped long-term memory search, capture, and deletion.",
"author": "buding",
"repo": "https://github.com/zouyonghe/astrbot_plugin_agentmemory",
"tags": [
"memory",
"agentmemory",
"long-term-memory"
]
},
"astrbot_plugin_kimi_web_search": {
"display_name": "Kimi 联网搜索(WebSearch)",
"desc": "使用 Kimi coding plan 的 /coding/v1/search 和 /coding/v1/fetch 为 AstrBot Agent 提供互联网搜索和网页读取能力",
"author": "Tsukumi233",
"repo": "https://github.com/Tsukumi233/astrbot_plugin_kimi_web_search",
"tags": [
"kimi",
"search",
"fetch"
],
"social_link": "https://github.com/Tsukumi233"
},
"astrbot_plugin_group_context_flow": {
"display_name": "群聊上下文 Flow",
"desc": "用于替代内置的群聊上下文感知功能,将滑动窗口改为对前缀缓存和长上下文 agent 友好的消息记录。将群聊非触发消息持久化为符合 QQ 群消息真实顺序的连续 flow,并在 LLM 请求前按 conversation 增量注入,兼容 AstrBot 上下文保存与 LLM 压缩。",
"author": "Tsukumi233",
"repo": "https://github.com/Tsukumi233/astrbot_plugin_group_context_flow",
"tags": [
"context",
"群聊",
"上下文感知"
],
"social_link": "https://github.com/Tsukumi233"
},
"astrbot_plugin_obsidian_sync": {
"display_name": "Obsidian 知识库同步",
"desc": "定时监听本地 Obsidian 目录,自动增量同步 Markdown 笔记到 AstrBot 知识库。支持每日定时和定时间隔两种模式,可在 WebUI 配置面板设置",
"author": "牧濑红莉栖",
"repo": "https://github.com/x1051445024/astrbot_plugin_obsidian_sync",
"tags": [
"obsidian",
"知识库",
"同步",
"FAISS"
],
"social_link": "https://github.com/x1051445024"
},
"astrbot_plugin_wave_memory": {
"display_name": "Wave Memory",
"desc": "基于 VCP TagMemo 浪潮算法的高性能记忆插件。查询路径零 LLM 调用,本地计算 < 2ms,支持通用数据源导入。",
"author": "vivy1024",
"repo": "https://github.com/vivy1024/astrbot_plugin_wave_memory",
"social_link": "https://github.com/lioensky/VCPChat | https://github.com/lioensky/VCPToolBox"
},
"astrbot_plugin_maimai_updater": {
"display_name": "舞萌 B50 更新",
"desc": "让用户可以通过简单的 绑定水鱼 后,直接通过二维码获得的SGID快速更新B50",
"author": "XiaoLan9999",
"repo": "https://github.com/XiaoLan9999/astrbot_plugin_maimai_updater",
"tags": [
"舞萌",
"b50",
"maimai",
"maimaidx"
],
"social_link": "XiaoLan9999.net"
},
"astrbot_plugin_indextts": {
"display_name": "IndexTTS",
"desc": "基于本地 IndexTTS 的文本转语音插件,支持音色克隆与 LLM 回复自动转语音。",
"author": "Moonlit Sapling",
"repo": "https://github.com/zhou-error/astrbot_plugin_indextts",
"tags": [
"IndexTTS"
],
"social_link": "https://moonlitsapling.pages.dev/"
},
"astrbot_plugin_mail": {
"display_name": "邮件处理插件",
"desc": "监控处理发送 IMAP/SMTP 邮箱。",
"author": "neo",
"repo": "https://github.com/Neo-tang283/astrbot_plugin_mail"
},
"astrbot_plugin_paperrag": {
"display_name": "PaperRAG",
"desc": "本地论文库RAG检索,为 AstrBot 提供智能的论文检索和问答能力(支持多模态 VLM 问答),并可通过研究想法生成功能自动创建含方法图的飞书周报。",
"author": "HUSTcyf",
"repo": "https://github.com/HUSTcyf/astrbot_plugin_paperrag.git",
"tags": [
"llamaindex",
"milvus"
]
},
"astrbot_plugin_mcsmanager_function": {
"display_name": "MCSManager Function",
"desc": "提供一系列 MCSManager 面板的 LLM 工具。",
"author": "venti1112",
"repo": "https://github.com/venti1112/astrbot_plugin_mcsmanager_function",
"tags": [
"MCSM",
"MCSManager",
"Tool",
"Tools"
],
"social_link": "https://github.com/venti1112/"
},
"astrbot_plugin_sylanne": {
"display_name": "Sylanne",
"desc": "让不同人格的 Bot 在长期对话中形成可解释、可持续、可被记录的计算性情绪轨迹,并让 Bot 依此作出更贴近生活的反应。",
"author": "Aylovelle",
"repo": "https://github.com/Ayleovelle/astrbot_plugin_sylanne",
"social_link": "https://github.com/Ayleovelle"
},
"astrbot_plugin_hapi_discord_connector": {
"display_name": "HAPI Discord Connector",
"desc": "为 Discord 优化的 HAPI coding session 管理插件,支持 Discord 的按钮等组件。",
"author": "SGSxingchen",
"repo": "https://github.com/SGSxingchen/astrbot_plugin_hapi_discord_connector",
"tags": [
"hapi",
"discord",
"vibe-coding",
"claudecode",
"codex",
"geminicli",
"opencode"
]
},
"astrbot_plugin_simple_long_memory": {
"display_name": "简单长期记忆",
"desc": "为 AstrBot 提供长期记忆能力,基于内置知识库实现用户偏好、历史交互和重要事实的记忆存储与召回",
"author": "piexian",
"repo": "https://github.com/piexian/astrbot_plugin_simple_long_memory",
"tags": [
"长期记忆",
"记忆"
],
"social_link": "https://github.com/piexian"
},
"astrbot_plugin_fund": {
"display_name": "个人基金投资分析助手",
"desc": "基于 AstrBot 的个人基金查询、持仓分析、风险提示与报告生成插件。",
"author": "fxquarter",
"repo": "https://github.com/fxquarter/astrbot_plugin_fund#",
"social_link": "https://github.com/fxquarter"
},
"astrbot_plugin_life_assistant": {
"display_name": "生活助手",
"desc": "一句话记账、一键写日记、自动追基金、智能管日程。对话即生活记录,支持 Obsidian 同步。",
"author": "白树",
"repo": "https://github.com/1fan-Song/astrbot_plugin_life_assistant.git",
"tags": [
"功能",
"生活",
"记录"
],
"social_link": "https://github.com/1fan-Song"
},
"astrbot_plugin_daily_card": {
"display_name": "每日卡片 (Daily Card)",
"desc": "LLM驱动的每日卡片图片生成插件。19款模板、400×300纯黑白、自带中文字体,全部功能通过与 AI 对话驱动。图片生成后可由 LLM 调用 极趣AI便利贴(Zectrix Todo)",
"author": "zhangkai542322",
"repo": "https://github.com/zhangkai542322/astrbot_plugin_daily_card",
"tags": [
"图片生成",
"墨水屏",
"每日卡片",
"Zectrix",
"Ai便利贴"
],
"social_link": "https://github.com/zhangkai542322"
},
"astrbot_plugin_model_connectivity": {
"display_name": "模型连通性状态图插件",
"desc": "这个插件会枚举当前 AstrBot WebUI 中已打开的聊天模型,并检测这些模型的连通性,最后发送一张类似状态页的看板图片",
"author": "blueraina",
"repo": "https://github.com/blueraina/astrbot_plugin_model_connectivity",
"tags": [
"连通性检测",
"模型检测"
]
},
"astrbot-plugin-robomaster-assistant": {
"display_name": "RoboMaster赛事助手",
"desc": "提供 RoboMaster 规则手册检索、RM 官网公告监控和 RoboMaster 赛事状态通知。",
"author": "EmberLuo",
"repo": "https://github.com/CUBOT-robomaster/astrbot_plugin_robomaster_assistant",
"tags": [
"RoboMaster"
]
},
"astrbot-plugin-api-rate-limiter": {
"desc": "多功能API调用管理插件,包含调用间隔限制、次数限制加冷却重开、安静时段定时切断三大功能",
"author": "小红蛋",
"repo": "https://github.com/xiaohondan/astrbot_plugin_api_rate_limiter",
"version": "1.0.0"
},
"astrbot-plugin-history": {
"display_name": "聊天记录备份",
"desc": "在本地极速实时追加备份所有私聊与群聊记录,有效防范数据丢失。内置 WebUI 可视化面板随时浏览。最新版深度双向兼容 AstrBot 史前及最新 API 框架。",
"author": "OmniTopia",
"repo": "https://github.com/Omnitopia/astrbot_plugin_history",
"tags": [
"聊天记录",
"备份",
"工具"
],
"social_link": "https://github.com/Omnitopia"
},
"astrbot-plugin-omnidraw": {
"display_name": "万象画卷",
"desc": "占用低、速度快、配置简洁、质量高的生图插件。支持文生图与图生图、人设自拍;兼容openai;支持 LLM 工具自然调用、指令直接出图、使用权限管理(QQ)。新增视频生成,采用静默幽灵式获取。拥有强大的副脑(提示词优化)功能",
"author": "雪碧bir",
"repo": "https://github.com/diaomin66/astrbot_plugin_omnidraw/",
"tags": [
"生图",
"视频",
"文生图",
"图生图",
"异步视频",
"人设自拍",
"模型热切换",
"提示词优化"
],
"social_link": ""
},
"astrbot-plugin-essentials": {
"display_name": "Essentials",
"desc": "一款集成权限、经济、安全、管理功能的 AstrBot 基础插件。",
"author": "季楠",
"repo": "https://github.com/CPJiNan/astrbot_plugin_essentials",
"tags": [
"权限",
"经济",
"安全",
"管理"
],
"social_link": "https://github.com/CPJiNan"
},
"astrbot-plugin-hardworking": {
"display_name": "防摸鱼水群",
"desc": "一个可以让bot在你想水群的时候提醒你不要水群的插件",
"author": "Waterwzy",
"repo": "https://github.com/Waterwzy/astrbot_plugin_hardworking",
"tags": [
"自律",
"努力"
],
"social_link": ""
},
"astrbot-plugin-skills-mcp-manager": {
"display_name": "Skills & MCP 管理器",
"desc": "为astrbot提供函数工具和指令来管理 AstrBot Skills 和 MCP 服务器。",
"author": "piexian",
"repo": "https://github.com/piexian/astrbot_plugin_skills_mcp_manager",
"tags": [
"工具",
"管理",
"mcp",
"skills"
],
"social_link": "https://github.com/piexian"
},
"astrbot_plugin_Astronomy_Picture_of_the_Day": {
"display_name": "NASA 每日一图",
"desc": "NASA 每日一图,使用指定的指令获取 NASA 的每日天文图片,支持语言模型翻译图片解释。",
"author": "Cysheper",
"repo": "https://github.com/Cysheper/astrbot_plugin_Astronomy_Picture_of_the_Day-APOD",
"tags": [
"NASA",
"apod",
"天文",
"星空",
"图片",
"每日一图"
],
"social_link": "https://github.com/Cysheper"
},
"astrbot_plugin_twitter": {
"display_name": "Twitter 推文转发",
"desc": "基于 Nitter 镜像站的 Twitter 推文转发插件,支持多会话独立订阅、定时推送、链接识别、合并转发与推文翻译。",
"author": "Ars1027",
"repo": "https://github.com/Ars1027/astrbot_plugin_twitter",
"tags": [
"订阅",
"推送",
"Twitter",
"X",
"推特"
]
},
"astrbot_plugin_course": {
"display_name": "早安课表",
"desc": "绑定后可查看今日、明日、本周及下周的课表,并支持课前提醒、每日定时发送课表。",
"version": "1.7.0",
"author": "NimYA",
"repo": "https://github.com/PolysaCHride/astrbot_plugin_course",
"astrbot_version": ">=4.19.4",
"support_platforms": "aiocqhttp"
},
"astrbot-plugin-rocom": {
"display_name": "洛克王国数据查询",
"desc": "基于熵增项目组API的洛克王国数据查询插件,支持远行商人 个人信息 精灵查询 交换大厅 图鉴 配队攻略等查询渲染。",
"author": "bvzrays & 熵增项目组",
"repo": "https://github.com/Entropy-Increase-Team/astrbot_plugin_rocom",
"tags": [],
"social_link": ""
},
"astrbot-plugin-orangevibe": {
"display_name": "橘子鉴定",
"desc": "互动式成分鉴定插件,答题可生成AI专属锐评的海报,支持LLM辅助生成测试方案,分享结果至群聊还能探测同成分群友。",
"author": "largefox",
"repo": "https://github.com/largefox/astrbot_plugin_orangevibe",
"tags": [
"成分鉴定",
"查成分"
],
"social_link": "https://github.com/largefox/"
},
"astrbot_plugin_affection": {
"display_name": "情绪管理",
"desc": "一个基于弗洛伊德心理动力学引入双驱情绪模型的 AstrBot 插件。它模拟了力比多(生本能/爱欲)与攻击性(死本能/毁灭欲)之间的相互作用。机器人的回复与交互将根据这两种核心心理能量的浮动平衡而动态演变,提供独特的、基于心理学基础的陪伴体验。",
"author": "middcom,dream,deepseek",
"repo": "https://github.com/middcom/astrbot_plugin_affection"
},
"astrbot_plugin_media_wiki": {
"display_name": "MediaWiki 通用查询",
"desc": "MediaWiki 通用查询插件,支持查询任何 MediaWiki 站点内容。",
"author": "lingran7031",
"repo": "https://github.com/lingran7031/astrbot_plugin_media_wiki-master",
"tags": [
"MediaWiki",
"Wiki",
"Wiki查询"
]
},
"astrbot_plugin_awmc_maimaidx_status": {
"display_name": "舞萌DX 状态查询",
"desc": "舞萌DX 服务器状态查询(AWMC Status / Uptime Kuma 数据接入)",
"author": "千岚之夏",
"repo": "https://github.com/Blueteemo/astrbot_plugin_awmc_maimaidx_status",
"tags": [
"maimai",
"舞萌",
"状态"
],
"social_link": "https://github.com/Blueteemo"
},
"astrbot_plugin_osu_downloader": {
"display_name": "osu 谱面下载器",
"desc": "自动识别 osu! 谱面链接,从 osu.sayobot , osu.direct 或 catboy.best 镜像站下载 .osz 文件并发送到群聊。",
"author": "xianyuOvO",
"repo": "https://github.com/xianyuOvO0/astrbot_plugin_osu_downloader",
"tags": [
"osu"
],
"social_link": "https://github.com/xianyuOvO0"
},
"astrbot_plugin_minecraft_multy_monitor": {
"display_name": "我的世界多服务器状态监控",
"desc": "在一个群聊中同时监控多台我的世界服务器的状态:服务器上下线,玩家上下线,在线人数等。支持java和基岩版。且支持自由选择展示的条目。",
"author": "xlyang",
"repo": "https://github.com/XiaolongYang-HZAU/astrbot_plugin_minecraft_multy_monitor?tab=readme-ov-file",
"tags": [
"我的世界",
"娱乐"
]
},
"astrbot_plugin_osu_dl": {
"display_name": "osu! 谱面下载",
"desc": "自动识别解析聊天中的 osu! 谱面链接并发送 osz 文件",
"author": "timetetngr",
"repo": "https://github.com/timetetng/astrbot_plugin_osu_dl",
"tags": [
"osu",
"游戏",
"“解析"
]
},
"astrbot_plugin_majsoul": {
"display_name": "雀魂Majsoul助手",
"desc": "🀄一款轻量化雀魂查谱吐槽插件🀄",
"author": "killer-qert",
"repo": "https://github.com/kldsjfas/astrbot_plugin_majsoul",
"tags": [
"雀魂",
"游戏",
"麻将"
],
"social_link": "https://killer-qert.cloud/"
},
"astrbot_plugin_roco_world_wiki_search": {
"display_name": "洛克王国百科全书插件",
"desc": "为 AstrBot 打造的洛克王国 Wiki 查询插件,支持宠物、技能、道具、家具、颜色筛选等全面查询功能。",
"author": "InMain",
"repo": "https://github.com/ZHwash/astrbot_plugin_roco_world_wiki_search",
"tags": [
"洛克王国",
"洛克",
"wiki",
"roco"
],
"social_link": "https://space.bilibili.com/20407488;https://github.com/ZHwash"
},
"astrbot_plugin_currency": {
"display_name": "currency",
"desc": "这是一个基于 AstrBot 框架开发的数字货币价格查询和提醒插件,支持实时查询 BTC、ETH 等主流数字货币价格,并支持设置价格突破提醒。",
"author": "苏澜",
"repo": "https://github.com/sulan-hub/astrbot_plugin_currency",
"tags": [
"虚拟货币",
"查询",
"提醒"
],
"social_link": "http://www.su1001.xyz/"
},
"astrbot_plugin_zhihuSummary": {
"display_name": "知乎总结",
"desc": "发送知乎回答/文章链接,自动生成 AI 结构化总结。\n\n知乎总结:发送知乎链接,自动抓取内容并通过 LLM 生成结构化总结\n多类型支持:回答、专栏文章、问题(自动取高赞回答)\n自动识别:开启后自动检测群聊中的知乎链接并生成总结\n精美渲染:总结可渲染为卡片图片(需 playwright)\n长文本处理:支持截断和 Map-Reduce 分段总结两种策略\n多种 LLM:支持 AstrBot 内置 LLM 或自定义 OpenAI 兼容 API\n访问控制:黑名单/白名单模式控制群聊使用权限",
"author": "MillionDream",
"repo": "https://github.com/MillionDreamQAQ/astrbot_plugin_zhihuSummary",
"tags": [
"功能",
"总结",
"知乎"
]
},
"builtin_commands_extension": {
"display_name": "内置指令扩展",
"desc": "包含了一系列内置命令的扩展,涵盖了对话管理、管理员管理、大语言模型(LLM)提供商管理等功能。",
"author": "AstrBot Team",
"repo": "https://github.com/AstrBotDevs/builtin_commands_extension",
"social_link": "https://docs.astrbot.app/use/command.html"
},
"astrbot_plugin_btw": {
"display_name": "ByTheWay 快捷问题",
"desc": "类似claude code /btw指令,允许用户在当前对话中快速发起一次额外的独立提问,不包含上下文,不计入对话历史。",
"author": "JingLang",
"repo": "https://github.com/PandragonXIII/astrbot_plugin_btw",
"tags": [
"对话"
]
},
"astrbot_plugin_torrent_analyze": {
"display_name": "磁链分析",
"desc": "查询磁链或种子 hash 的基础信息,并可选返回截图拼图(支持高斯模糊)",
"author": "howrain",
"repo": "https://github.com/howrain/astrbot_plugin_torrent_analyze",
"tags": [
"磁链"
],
"social_link": "https://github.com/howrain"
},
"astrbot_plugin_rsshub": {
"display_name": "RSS订阅",
"desc": "多平台RSS订阅推送插件,支持失败队列重试、多BOT去重、平台数据共享、智能发送策略,LLM工具调用,让你的BOT成为信息聚合中心。",
"author": "FlanChanXwO",
"repo": "https://github.com/FlanChanXwO/astrbot_plugin_rsshub",
"tags": [
"rss",
"rsshub",
"订阅",
"推送"
],
"social_link": "https://github.com/FlanChanXwO"
},
"astrbot_plugin_scriptor": {
"display_name": "灵笔司书",
"desc": "AstrBot 长期记忆插件 | Scriptor (灵笔司书) 是一个基于 AstrBot 框架的 AI 管家插件,提供跨越个体与群体的通用记忆管理与智能交互服务。通过多层次记忆系统、跨平台身份管理、渐进式披露架构等核心技术,实现拟人化、个性化、智能化的管家式交互体验。",
"author": "ysf7762-dev",
"repo": "https://github.com/ysf7762-dev/astrbot_plugin_scriptor",
"tags": [
"长期记忆",
"全局记忆",
"管家",
"跨平台身份管理",
"数据库查询"
]
},
"astrbot_plugin_actions": {
"display_name": "快捷指令动作",
"desc": "根据自定义前缀或正则匹配指令,触发无上下文单次对话,可用于生图、嵌字翻译等场景。本项目是对旧版 Chatluna 快捷指令 (chatluna-actions) 在 Astrobot 内的复刻版本 (?)",
"author": "teatube",
"repo": "https://github.com/teatube/astrbot_plugin_actions"
},
"astrbot_plugin_imgexploration": {
"display_name": "图片搜索",
"desc": "通过上传图片搜索其来源,支持 SauceNAO、Google Lens、Ascii2d 等搜图引擎,并结合LLM改善使用体验。",
"author": "FlanChanXwO",
"repo": "https://github.com/FlanChanXwO/astrbot_plugin_imgexploration",
"tags": [
"搜图",
"图片搜索",
"Ascii2d",
"Google Lens",
"SauceNAO",
"找图",
"以图搜图",
"反向图片搜索",
"图片来源"
],
"social_link": "https://github.com/FlanChanXwO"
},
"astrbot_plugin_eggSearch": {
"display_name": "洛克王国世界蛋重查询器",
"desc": "输入尺寸和重量,给出符合的精灵种类",
"author": "WJF",
"repo": "https://github.com/starsky-web/astrbot_plugin_eggSearch"
},
"astrbot_plugin_eve_esi": {
"display_name": "EVE市场助手",
"desc": "EVE Online ESI API 调用插件,支持市场价格查询、舰船加成查询、简称管理等功能",
"author": "LZQ123PKQ",
"repo": "https://github.com/LZQ123PKQ/astrbot_plugin_eve_esi",
"tags": [
"EVE",
"EVE Online",
"星战前夜",
"查询",
"esi"
],
"social_link": "https://github.com/LZQ123PKQ"
},
"astrbot_plugin_gamdl": {
"display_name": "applemusic 下载器(gamdl版)",
"desc": "astrbot_plugin_gamdl 是一个面向 AstrBot 的 Apple Music 插件,基于 gamdl 实现搜索、解析、下载、封面、动态封面、歌词导出等能力。它专为 QQ NapCat(OneBot/aiocqhttp)优化,支持后台任务队列、会话级设置记忆、ZIP/逐个发送、下载进度提醒和错误友好提示。插件采用单体架构,**不依赖额外服务端**,部署更简单,同时支持容器场景下的路径映射与远程 wrapper 配置,适合在实际机器人环境中稳定长期运行。只测试了wrapper的功能",
"author": "jelly",
"repo": "https://github.com/wuuduf/astrbot-plugin-gamdl",
"tags": [
"音乐下载",
"apple music"
],
"social_link": "https://github.com/wuuduf"
},
"astrbot_plugin_paperphone": {
"display_name": "Paperphone 适配器",
"desc": "AstrBot PaperPhone 适配器插件",
"author": "619dev",
"repo": "https://github.com/619dev/astrbot_plugin_paperphone",
"tags": [
"paperphone",
"im"
]
},
"astrbot-plugin-rocket-chat-adapter": {
"display_name": "Rocket.Chat 适配器",
"desc": "AstrBot 的 Rocket.Chat 消息平台适配器,支持通过 WebSocket 实时接收消息,通过 REST API 发送消息",
"author": "星光の殲滅者",
"repo": "https://github.com/NET-Homeless/astrbot_plugin_rocket_chat_adapter",
"tags": [
"消息平台",
"适配器"
],
"social_link": "https://github.com/starlight02"
},
"astrbot-plugin-uapipro-toolbox": {
"display_name": "UApiPro 工具箱",
"desc": "调用 UApiPro 提供的免费 API,支持一言、天气、IP 查询,卡片图片返回。",
"author": "lingyun",
"repo": "https://github.com/lingyun14beta/astrbot_plugin_uapipro_toolbox",
"tags": [
"api",
"uapi"
],
"social_link": "https://github.com/lingyun14beta"
},
"astrbot-plugin-mailer": {
"display_name": "学会发邮件",
"desc": "为Agent提供一个受控的 SMTP 电子邮件发送工具,支持 HTML 格式、内嵌图片以及附件功能。",
"author": "Fold",
"repo": "https://github.com/FFFold/astrbot_plugin_mailer",
"tags": [
"email",
"电子邮件",
"smtp"
]
},
"astrbot-plugin-CNInfoCrawler": {
"display_name": "巨潮资讯上市公司公告自动爬取工具",
"version": "1.0.0",
"desc": "CNInfoHedgeCrawler 是基于巨潮资讯的 A 股上市公司公告爬取工具,支持任意关键词搜索、日期范围过滤、PDF 批量下载和企业微信推送。",
"author": "Interstellar1217",
"repo": "https://github.com/Interstellar1217/CNInfoHedgeCrawler",
"tags": [
"套期保值",
"公告查询",
"巨潮资讯",
"业绩预告",
"金融"
],
"social_link": "https://github.com/Interstellar1217"
},
"astrbot-plugin-anime1-list": {
"display_name": "anime1动画追番",
"desc": "基于anime1.me,获取每日动画更新、番剧列表和观看地址。",
"author": "zhist",
"repo": "https://github.com/zhist2028/astrbot_plugin_anime1_list",
"tags": [
"动画"
]
},
"astrbot-plugin-BiliCookie-monitor": {
"display_name": "B站Cookie状态监控插件",
"desc": "B站Cookie状态监控插件 - 定时检测Cookie有效性,失效时主动通知用户",
"author": "fimore",
"repo": "https://github.com/fimore/astrbot_plugin_bili_cookie_monitor",
"tags": [
"bilibili"
]
},
"astrbot-plugin-touhou-kb": {
"display_name": "东方知识库",
"desc": "将 THBWiki 备用站词条清洗后导入 AstrBot 官方知识库,支持会话绑定、人格绑定与东方话题优先路由",
"author": "YunMo-yanyu",
"repo": "https://github.com/YunMo-yanyu/astrbot-",
"tags": [
"东方Project",
"THBWiki",
"知识库",
"RAG",
"人格绑定"
],
"social_link": ""
},
"astrbot-plugin-terraria-server-manager": {
"display_name": "泰拉服务器管理",
"desc": "Terraria TShock 服务器监控,支持玩家上下线通知、在线查询与远程指令执行",
"author": "Reisenbug",
"repo": "https://github.com/Reisenbug/AstrBot_Plugin_Terraria_Server_Manager",
"tags": [
"服务器",
"terraria",
"泰拉瑞亚",
"tshock"
],
"social_link": "https://github.com/Reisenbug"
},
"astrbot-plugin-dingtalk-feishu-forwarder": {
"desc": "钉钉与飞书之间的双向消息转发插件,支持文本、图片等消息格式自动转换。",
"author": "zwwangoo",
"repo": "https://github.com/zwwangoo/astrbot_plugin_dingtalk_feishu_forwarder",
"tags": [
"dingtalk",
"lark",
"feishu",
"forwarder"
],
"social_link": ""
},
"astrbot-plugin-context-undo": {
"display_name": "上下文撤回",
"desc": "撤回最近一次或多次的ai回复上下文,避免ai被不良信息影响。",
"author": "lumingya",
"repo": "https://github.com/lumingya/astrbot_plugin_context_undo"
},
"astrbot-plugin-qq-restapi": {
"display_name": "QQ REST API 适配器",
"desc": "QQ 官方 REST API 平台适配器,不依赖 botpy,直接 HTTP 调用官方接口。支持 WebSocket/Webhook 双模式、35+ 事件类型、Markdown 模板、按钮面板、自动事件处理等",
"author": "Wanyi",
"repo": "https://github.com/Ryan7t/astrbot_plugin_qq_restapi",
"tags": [
"平台适配器",
"QQ"
],
"social_link": "https://github.com/Ryan7t"
},
"astrbot-plugin-lark-access-control": {
"display_name": "飞书权限控制",