-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1687 lines (1573 loc) · 117 KB
/
index.html
File metadata and controls
1687 lines (1573 loc) · 117 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<!-- Google analytics tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-STGLQW4BJX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-STGLQW4BJX');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QuantaAlpha - AI Agent Research Team</title>
<meta name="description" content="QuantaAlpha is an elite AI Agent research team focusing on CodeAgent, DeepResearch, Agentic RL, and Self-Evolving systems. 30+ publications at top venues including NeurIPS, AAAI, ACL, and EMNLP.">
<meta name="keywords" content="AI Agent, CodeAgent, LLM, Deep Research, Self-Evolving, NeurIPS, AAAI, Machine Learning, Autonomous Intelligence">
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website">
<meta property="og:title" content="QuantaAlpha - AI Agent Research Team">
<meta property="og:description" content="Elite AI Agent research team building the future of Autonomous Intelligence. 30+ publications at NeurIPS, AAAI, ACL, EMNLP.">
<meta property="og:image" content="images/logo.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="QuantaAlpha - AI Agent Research Team">
<meta name="twitter:description" content="Elite AI Agent research team building the future of Autonomous Intelligence.">
<!-- Favicon -->
<link rel="icon" type="image/jpeg" href="images/logo.png">
<link rel="shortcut icon" type="image/jpeg" href="images/logo.png">
<link rel="apple-touch-icon" href="images/logo.png">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
slate: {
950: '#020617', // Deepest background
},
brand: {
blue: '#38bdf8',
violet: '#818cf8',
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
}
}
}
}
</script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AOS Animation -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body class="mesh-bg min-h-screen selection:bg-brand-blue selection:text-white">
<!-- Navigation -->
<nav class="fixed w-full z-50 top-0 glass border-b border-white/5">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-20">
<!-- Logo -->
<div class="flex-shrink-0 flex items-center gap-3 cursor-pointer" onclick="window.scrollTo(0,0)">
<img class="h-10 w-10 rounded-lg shadow-lg shadow-brand-blue/20" src="images/logo.png" alt="QuantaAlpha">
<span class="font-bold text-xl tracking-tight text-white">QuantaAlpha</span>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex space-x-8 items-center">
<a href="#publications" class="text-sm font-medium text-slate-300 hover:text-white transition-colors">About</a>
<a href="#research" class="text-sm font-medium text-slate-300 hover:text-white transition-colors">Research</a>
<a href="#all-publications" class="text-sm font-medium text-slate-300 hover:text-white transition-colors">Publications</a>
<a href="#people" class="text-sm font-medium text-slate-300 hover:text-white transition-colors">People</a>
<a href="#community" class="text-sm font-medium text-slate-300 hover:text-white transition-colors">Community</a>
<a href="#contact" class="px-4 py-2 text-sm font-semibold text-slate-950 bg-white rounded-full hover:bg-slate-200 transition-all shadow-lg shadow-white/10">
Join Us
</a>
</div>
<!-- Mobile Menu Button -->
<div class="md:hidden">
<button id="mobile-menu-btn" class="text-slate-300 hover:text-white p-2">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden glass border-t border-white/5 absolute w-full">
<div class="px-4 pt-2 pb-6 space-y-2">
<a href="#publications" class="block px-3 py-2 text-base font-medium text-slate-300 hover:text-white hover:bg-white/5 rounded-md">About</a>
<a href="#research" class="block px-3 py-2 text-base font-medium text-slate-300 hover:text-white hover:bg-white/5 rounded-md">Research</a>
<a href="#all-publications" class="block px-3 py-2 text-base font-medium text-slate-300 hover:text-white hover:bg-white/5 rounded-md">Publications</a>
<a href="#people" class="block px-3 py-2 text-base font-medium text-slate-300 hover:text-white hover:bg-white/5 rounded-md">People</a>
<a href="#community" class="block px-3 py-2 text-base font-medium text-slate-300 hover:text-white hover:bg-white/5 rounded-md">Community</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-white bg-brand-blue/20 rounded-md">Join Us</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="about" class="relative pt-32 pb-20 lg:pt-48 lg:pb-32 overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10 text-center">
<div data-aos="fade-up" data-aos-duration="1000">
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-brand-blue/10 border border-brand-blue/20 text-brand-blue text-sm font-medium mb-6">
<span class="flex h-2 w-2 rounded-full bg-brand-blue animate-pulse"></span>
Advancing Intelligence Frontiers
</div>
<h1 class="text-5xl md:text-7xl font-extrabold tracking-tight text-white mb-6">
QuantaAlpha
</h1>
<p class="text-xl md:text-2xl text-slate-400 max-w-3xl mx-auto font-light leading-relaxed mb-10">
Elite AI Agent Research Team 🚀 <br>
<span class="text-gradient font-medium">Building the future of Autonomous Intelligence</span>
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center items-center">
<a href="#research" class="px-8 py-3.5 text-base font-bold text-slate-950 bg-white rounded-full hover:bg-slate-200 transition-all shadow-xl shadow-white/10 w-full sm:w-auto">
Explore Research
</a>
<a href="#contact" class="px-8 py-3.5 text-base font-bold text-white bg-white/5 border border-white/10 rounded-full hover:bg-white/10 transition-all backdrop-blur-sm w-full sm:w-auto">
Collaboration
</a>
</div>
</div>
<!-- Stats Grid -->
<div class="mt-20 grid grid-cols-1 md:grid-cols-3 gap-6 max-w-4xl mx-auto" data-aos="fade-up" data-aos-delay="200">
<div class="glass-card p-6 rounded-2xl text-center group">
<div class="text-3xl font-bold text-white mb-2 group-hover:text-brand-blue transition-colors">30+</div>
<div class="text-sm text-slate-400 uppercase tracking-wider font-semibold">Publications</div>
</div>
<div class="glass-card p-6 rounded-2xl text-center group">
<div class="text-3xl font-bold text-white mb-2 group-hover:text-brand-blue transition-colors">60+</div>
<div class="text-sm text-slate-400 uppercase tracking-wider font-semibold">Researchers</div>
</div>
<div class="glass-card p-6 rounded-2xl text-center group">
<div class="text-3xl font-bold text-white mb-2 group-hover:text-brand-blue transition-colors">April 2025</div>
<div class="text-sm text-slate-400 uppercase tracking-wider font-semibold">Founded</div>
</div>
</div>
<!-- Affiliations -->
<div class="mt-8 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="inline-flex flex-wrap justify-center gap-3 px-6 py-4 glass-card rounded-full">
<span class="text-white font-semibold">PKU</span>
<span class="text-slate-500">•</span>
<span class="text-white font-semibold">THU</span>
<span class="text-slate-500">•</span>
<span class="text-white font-semibold">UCAS</span>
<span class="text-slate-500">•</span>
<span class="text-white font-semibold">CMU</span>
<span class="text-slate-500">•</span>
<span class="text-white font-semibold">HKUST</span>
<span class="text-slate-500">•</span>
<span class="text-white font-semibold">Stanford</span>
<span class="text-slate-500">•</span>
<span class="text-white font-semibold">ZJU</span>
</div>
<div class="text-xs text-slate-500 mt-2 uppercase tracking-wider">Top Affiliations</div>
</div>
</div>
</section>
<!-- Research Areas -->
<section id="research" class="py-20 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Research Focus</h2>
<div class="h-1 w-20 bg-brand-blue mx-auto rounded-full"></div>
</div>
<!-- Agent Intelligence -->
<div class="mb-16" data-aos="fade-up">
<h3 class="text-xl font-bold text-slate-300 mb-8 text-center">Agent Intelligence</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- CodeAgent -->
<div class="glass-card p-8 rounded-2xl" data-aos="fade-up" data-aos-delay="0">
<div class="h-12 w-12 bg-blue-500/20 rounded-xl flex items-center justify-center mb-6 text-brand-blue">
<i class="fas fa-laptop-code text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">CodeAgent</h3>
<p class="text-slate-400 text-sm leading-relaxed">
End-to-end execution for real-world coding tasks, enabling agents to autonomously understand, modify, and run complex repositories.
</p>
</div>
<!-- DeepResearch -->
<div class="glass-card p-8 rounded-2xl" data-aos="fade-up" data-aos-delay="100">
<div class="h-12 w-12 bg-purple-500/20 rounded-xl flex items-center justify-center mb-6 text-purple-400">
<i class="fas fa-book-journal-whills text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">DeepResearch</h3>
<p class="text-slate-400 text-sm leading-relaxed">
Multi-step reasoning agents for open-ended scientific and knowledge discovery, synthesizing insights across domains.
</p>
</div>
<!-- Agentic RL -->
<div class="glass-card p-8 rounded-2xl" data-aos="fade-up" data-aos-delay="200">
<div class="h-12 w-12 bg-yellow-500/20 rounded-xl flex items-center justify-center mb-6 text-yellow-400">
<i class="fas fa-brain text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Agentic RL</h3>
<p class="text-slate-400 text-sm leading-relaxed">
Reasoning-centered reinforcement learning, bridging decision-making, planning, and adaptive intelligence.
</p>
</div>
<!-- Self-Evolving -->
<div class="glass-card p-8 rounded-2xl" data-aos="fade-up" data-aos-delay="300">
<div class="h-12 w-12 bg-green-500/20 rounded-xl flex items-center justify-center mb-6 text-green-400">
<i class="fas fa-dna text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Self-Evolving</h3>
<p class="text-slate-400 text-sm leading-relaxed">
Agents that continuously improve through self-evolution and collaborative learning, enabling emergent collective intelligence.
</p>
</div>
</div>
</div>
<!-- AI4Science -->
<div data-aos="fade-up" data-aos-delay="100">
<h3 class="text-xl font-bold text-slate-300 mb-8 text-center">AI4Science</h3>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- AI4Investment -->
<div class="glass-card p-8 rounded-2xl" data-aos="fade-up" data-aos-delay="0">
<div class="h-12 w-12 bg-amber-500/20 rounded-xl flex items-center justify-center mb-6 text-amber-400">
<i class="fas fa-chart-line text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">AI4Investment</h3>
<p class="text-slate-400 text-sm leading-relaxed">
Agent-driven automated investment: discovering optimal factors, strategies, and execution models for intelligent trading and portfolio management.
</p>
</div>
<!-- AI4Healthcare -->
<div class="glass-card p-8 rounded-2xl" data-aos="fade-up" data-aos-delay="100">
<div class="h-12 w-12 bg-rose-500/20 rounded-xl flex items-center justify-center mb-6 text-rose-400">
<i class="fas fa-heart-pulse text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">AI4Healthcare</h3>
<p class="text-slate-400 text-sm leading-relaxed">
Efficiency-first AI for healthcare: scalable foundation models, vision-language alignment, and agentic workflows for real-world clinical impact.
</p>
</div>
<!-- AI4Bioinformatics -->
<div class="glass-card p-8 rounded-2xl" data-aos="fade-up" data-aos-delay="200">
<div class="h-12 w-12 bg-teal-500/20 rounded-xl flex items-center justify-center mb-6 text-teal-400">
<i class="fas fa-flask text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">AI4Bioinformatics</h3>
<p class="text-slate-400 text-sm leading-relaxed">
Agent-driven discovery in genomics: automating bioinformatics analyses and enabling novel scientific insights in biological research.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Featured Publications (Carousel) -->
<section id="publications" class="py-20 relative">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4">Featured Publications</h2>
<p class="text-slate-400 text-sm">Highlighted papers, swipe to explore more</p>
<div class="h-1 w-20 bg-brand-blue mx-auto rounded-full mt-4"></div>
</div>
<!-- Carousel Container -->
<div class="relative">
<!-- Navigation Buttons -->
<button id="carousel-prev" class="absolute left-0 top-1/2 -translate-y-1/2 -translate-x-4 z-10 w-12 h-12 bg-white/10 hover:bg-white/20 backdrop-blur-sm rounded-full flex items-center justify-center text-white transition-all shadow-lg border border-white/10 hidden md:flex">
<i class="fas fa-chevron-left"></i>
</button>
<button id="carousel-next" class="absolute right-0 top-1/2 -translate-y-1/2 translate-x-4 z-10 w-12 h-12 bg-white/10 hover:bg-white/20 backdrop-blur-sm rounded-full flex items-center justify-center text-white transition-all shadow-lg border border-white/10 hidden md:flex">
<i class="fas fa-chevron-right"></i>
</button>
<!-- Carousel Track -->
<div id="carousel-container" class="overflow-x-auto pb-4 scrollbar-hide scroll-smooth">
<div id="carousel-track" class="flex gap-6" style="width: max-content;">
<!-- Pub 0: EpochX -->
<div class="glass-card p-6 rounded-2xl flex flex-col md:flex-row gap-6 items-start w-[90vw] md:w-[700px] flex-shrink-0">
<div class="w-full md:w-2/5 flex-shrink-0">
<img src="images/EpochX.jpg" alt="EpochX" class="w-full h-auto rounded-lg shadow-lg border border-white/10 hover:scale-[1.02] transition-transform duration-300">
</div>
<div class="flex-1">
<h3 class="text-xl font-bold text-white mb-3 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2603.27304">EpochX: Building the Infrastructure for an Emergent Agent Civilization</a>
</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-white/5 rounded-full text-xs font-medium text-brand-blue border border-brand-blue/20">QuantaAlpha Team</span>
<span class="px-2 py-1 bg-cyan-500/10 rounded-full text-xs font-medium text-cyan-400 border border-cyan-500/20">arXiv 2026</span>
</div>
<p class="text-slate-400 mb-4 text-sm leading-relaxed">
A credits-native marketplace infrastructure for human-agent production networks, where humans and agents collaborate as peer participants.
</p>
<div class="flex gap-4">
<a href="https://arxiv.org/abs/2603.27304" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/EpochX" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
<a href="https://epochx.cc/" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fas fa-globe"></i> Product
</a>
</div>
</div>
</div>
<!-- Pub 1: Octopus -->
<div class="glass-card p-6 rounded-2xl flex flex-col md:flex-row gap-6 items-start w-[90vw] md:w-[700px] flex-shrink-0">
<div class="w-full md:w-2/5 flex-shrink-0">
<img src="images/Octupus.png" alt="Octopus" class="w-full h-auto rounded-lg shadow-lg border border-white/10 hover:scale-[1.02] transition-transform duration-300">
</div>
<div class="flex-1">
<h3 class="text-xl font-bold text-white mb-3 hover:text-brand-blue transition-colors">
<a href="#">🐙 Octopus: Agentic Multimodal Reasoning with Six-Capability Orchestration</a>
</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-white/5 rounded-full text-xs font-medium text-brand-blue border border-brand-blue/20">QuantaAlpha Team</span>
<span class="px-2 py-1 bg-yellow-500/10 rounded-full text-xs font-medium text-yellow-500 border border-yellow-500/20">arXiv Preprint</span>
</div>
<p class="text-slate-400 mb-4 text-sm leading-relaxed">
Comprehensive agentic framework orchestrating six distinct capabilities for advanced multimodal reasoning.
</p>
<div class="flex gap-4">
<a href="#" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="#" class="inline-flex items-center gap-2 text-sm font-semibold text-slate-500 cursor-not-allowed">
<i class="fab fa-github"></i> Code Coming Soon
</a>
</div>
</div>
</div>
<!-- Pub 2: SE-Agent -->
<div class="glass-card p-6 rounded-2xl flex flex-col md:flex-row gap-6 items-start w-[90vw] md:w-[700px] flex-shrink-0">
<div class="w-full md:w-2/5 flex-shrink-0">
<img src="images/SE-Agent.png" alt="SE-Agent" class="w-full h-auto rounded-lg shadow-lg border border-white/10 hover:scale-[1.02] transition-transform duration-300">
</div>
<div class="flex-1">
<h3 class="text-xl font-bold text-white mb-3 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/pdf/2508.02085">🧠 SE-Agent: Self-Evolution Trajectory Optimization</a>
</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-white/5 rounded-full text-xs font-medium text-brand-blue border border-brand-blue/20">QuantaAlpha Team</span>
<span class="px-2 py-1 bg-yellow-500/10 rounded-full text-xs font-medium text-yellow-500 border border-yellow-500/20">NeurIPS 2025 Poster</span>
</div>
<p class="text-slate-400 mb-4 text-sm leading-relaxed">
A novel framework for self-evolving agents that optimizes reasoning trajectories through continuous learning.
</p>
<div class="flex gap-4">
<a href="https://arxiv.org/pdf/2508.02085" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/JARVIS-Xs/SE-Agent" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
</div>
</div>
</div>
<!-- Pub 3: GitTaskBench -->
<div class="glass-card p-6 rounded-2xl flex flex-col md:flex-row gap-6 items-start w-[90vw] md:w-[700px] flex-shrink-0">
<div class="w-full md:w-2/5 flex-shrink-0">
<img src="images/GitTaskBench.png" alt="GitTaskBench" class="w-full h-auto rounded-lg shadow-lg border border-white/10 hover:scale-[1.02] transition-transform duration-300">
</div>
<div class="flex-1">
<h3 class="text-xl font-bold text-white mb-3 hover:text-brand-blue transition-colors">
<a href="#">🧩 GitTaskBench: A Benchmark for Code Agents</a>
</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-white/5 rounded-full text-xs font-medium text-brand-blue border border-brand-blue/20">QuantaAlpha Team</span>
<span class="px-2 py-1 bg-green-500/10 rounded-full text-xs font-medium text-green-400 border border-green-500/20">AAAI 2026 Oral</span>
</div>
<p class="text-slate-400 mb-4 text-sm leading-relaxed">
A benchmark evaluating code agents on their ability to solve complex, real-world tasks.
</p>
<div class="flex gap-4">
<a href="#" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/GitTaskBench" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
</div>
</div>
</div>
<!-- Pub 4: RepoMaster -->
<div class="glass-card p-6 rounded-2xl flex flex-col md:flex-row gap-6 items-start w-[90vw] md:w-[700px] flex-shrink-0">
<div class="w-full md:w-2/5 flex-shrink-0">
<img src="images/RepoMaster.png" alt="RepoMaster" class="w-full h-auto rounded-lg shadow-lg border border-white/10 hover:scale-[1.02] transition-transform duration-300">
</div>
<div class="flex-1">
<h3 class="text-xl font-bold text-white mb-3 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/pdf/2505.21577">🔍 RepoMaster: Autonomous Exploration of GitHub Repos</a>
</h3>
<div class="flex flex-wrap gap-2 mb-3">
<span class="px-2 py-1 bg-white/5 rounded-full text-xs font-medium text-brand-blue border border-brand-blue/20">QuantaAlpha Team</span>
<span class="px-2 py-1 bg-pink-500/10 rounded-full text-xs font-medium text-pink-400 border border-pink-500/20">NeurIPS 2025 Spotlight</span>
</div>
<p class="text-slate-400 mb-4 text-sm leading-relaxed">
Autonomous agents exploring and understanding large-scale codebases to solve complex tasks.
</p>
<div class="flex gap-4">
<a href="https://arxiv.org/pdf/2505.21577" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/RepoMaster" class="inline-flex items-center gap-2 text-sm font-semibold text-white hover:text-brand-blue transition-colors">
<i class="fab fa-github"></i> GitHub
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel Indicators -->
<div class="flex justify-center gap-2 mt-6">
<button class="carousel-dot w-2 h-2 rounded-full bg-white/30 hover:bg-white/50 transition-colors active" data-index="0"></button>
<button class="carousel-dot w-2 h-2 rounded-full bg-white/30 hover:bg-white/50 transition-colors" data-index="1"></button>
<button class="carousel-dot w-2 h-2 rounded-full bg-white/30 hover:bg-white/50 transition-colors" data-index="2"></button>
<button class="carousel-dot w-2 h-2 rounded-full bg-white/30 hover:bg-white/50 transition-colors" data-index="3"></button>
<button class="carousel-dot w-2 h-2 rounded-full bg-white/30 hover:bg-white/50 transition-colors" data-index="4"></button>
</div>
</div>
</div>
</section>
<!-- All Publications Section -->
<section id="all-publications" class="py-20 bg-slate-900/50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4">All Publications <span class="text-lg font-normal text-slate-500">(30+)</span></h2>
<p class="text-slate-400 text-sm">Complete publication list</p>
<div class="h-1 w-20 bg-brand-violet mx-auto rounded-full mt-4"></div>
</div>
<!-- Filter Tags -->
<div class="flex flex-wrap justify-center gap-2 mb-8" data-aos="fade-up">
<button class="pub-filter active px-4 py-2 rounded-full text-sm font-medium bg-brand-blue/20 text-brand-blue border border-brand-blue/30 hover:bg-brand-blue/30 transition-all" data-filter="all">All</button>
<button class="pub-filter px-4 py-2 rounded-full text-sm font-medium bg-white/5 text-slate-400 border border-white/10 hover:bg-white/10 transition-all" data-filter="2026">2026</button>
<button class="pub-filter px-4 py-2 rounded-full text-sm font-medium bg-white/5 text-slate-400 border border-white/10 hover:bg-white/10 transition-all" data-filter="2025">2025</button>
<button class="pub-filter px-4 py-2 rounded-full text-sm font-medium bg-white/5 text-slate-400 border border-white/10 hover:bg-white/10 transition-all" data-filter="codeagent">CodeAgent</button>
<button class="pub-filter px-4 py-2 rounded-full text-sm font-medium bg-white/5 text-slate-400 border border-white/10 hover:bg-white/10 transition-all" data-filter="memory">Memory</button>
<button class="pub-filter px-4 py-2 rounded-full text-sm font-medium bg-white/5 text-slate-400 border border-white/10 hover:bg-white/10 transition-all" data-filter="self-evolving">Self-Evolving</button>
<button class="pub-filter px-4 py-2 rounded-full text-sm font-medium bg-white/5 text-slate-400 border border-white/10 hover:bg-white/10 transition-all" data-filter="safety">Safety</button>
</div>
<div class="space-y-4" id="publications-list">
<!-- EpochX -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="self-evolving" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2603.27304" target="_blank">EpochX: Building the Infrastructure for an Emergent Agent Civilization</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-green-500/10 text-green-400 text-xs rounded">Agent Infrastructure</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Human-Agent Collaboration</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Skill Marketplace</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2603.27304" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/EpochX" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
<a href="https://epochx.cc/" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-globe"></i> Product
</a>
</div>
</div>
</div>
<!-- Idea2Paper -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="deepresearch" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://www.researchgate.net/profile/Biao-Wu-19/publication/400280248_Idea2Paper_What_Should_an_End-to-End_Research_Agent_Really_Do/links/697dbc01ca66ef6ab98eea54/Idea2Paper-What-Should-an-End-to-End-Research-Agent-Really-Do.pdf" target="_blank">Idea2Paper: What Should an End-to-End Research Agent Really Do?</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Research Agent</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">End-to-End</span>
<span class="px-2 py-0.5 bg-green-500/10 text-green-400 text-xs rounded">Scientific Writing</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://www.researchgate.net/profile/Biao-Wu-19/publication/400280248_Idea2Paper_What_Should_an_End-to-End_Research_Agent_Really_Do/links/697dbc01ca66ef6ab98eea54/Idea2Paper-What-Should-an-End-to-End-Research-Agent-Really-Do.pdf" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/AgentAlphaAGI/Idea2Paper" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
<a href="https://paperbuild.cn/" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-globe"></i> Product
</a>
</div>
</div>
</div>
<!-- Idea2Story -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="deepresearch" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/pdf/2601.20833" target="_blank">Idea2Story: An Automated Pipeline for Transforming Research Concepts into Complete Scientific Narratives</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Research Automation</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Knowledge Graph</span>
<span class="px-2 py-0.5 bg-orange-500/10 text-orange-400 text-xs rounded">Scientific Narrative</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/pdf/2601.20833" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/AgentAlphaAGI/Idea2Paper" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
<a href="https://paperbuild.cn/" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-globe"></i> Product
</a>
</div>
</div>
</div>
<!-- Story2Proposal -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="deepresearch" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2603.27065" target="_blank">Story2Proposal: A Scaffold for Structured Scientific Paper Writing</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Multi-Agent Framework</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Scientific Writing</span>
<span class="px-2 py-0.5 bg-green-500/10 text-green-400 text-xs rounded">Visual Contract</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2603.27065" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/AgentAlphaAGI/Idea2Paper" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
<a href="https://paperbuild.cn/" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-globe"></i> Product
</a>
</div>
</div>
</div>
<!-- ChildBench -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="reasoning" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-green-500/10 text-green-400 text-xs font-bold rounded-full border border-green-500/20">AAAI 2026 Oral</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://ojs.aaai.org/index.php/AAAI/article/view/40479" target="_blank">Easy for Children, Hard for AI: The Limits of Multimodal LLMs in Early Childhood Learning</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Multimodal LLM</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Benchmark</span>
<span class="px-2 py-0.5 bg-green-500/10 text-green-400 text-xs rounded">Oral</span>
</div>
</div>
<div class="flex-shrink-0">
<a href="https://ojs.aaai.org/index.php/AAAI/article/view/40479" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
</div>
</div>
</div>
<!-- PsyPARSE -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="reasoning" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-green-500/10 text-green-400 text-xs font-bold rounded-full border border-green-500/20">AAAI 2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://ojs.aaai.org/index.php/AAAI/article/view/37089" target="_blank">PsyPARSE: Retrieval-Augmented Slow Thinking for Personalized Empathetic Counseling</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-pink-500/10 text-pink-400 text-xs rounded">Empathetic Counseling</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">RAG</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Slow Thinking</span>
</div>
</div>
<div class="flex-shrink-0">
<a href="https://ojs.aaai.org/index.php/AAAI/article/view/37089" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
</div>
</div>
</div>
<!-- 2026 Papers -->
<!-- chain of mindset -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2602.10063" target="_blank">Chain of Mindset: Reasoning with Adaptive Cognitive Modes</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-red-500/10 text-red-400 text-xs rounded">LLM Reasoning</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Adaptive Cognitive Modes</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Chain of Mindset</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2602.10063" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/chain-of-mindset" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- QuantaAlpha -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="codeagent,self-evolving" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2602.07085" target="_blank">QuantaAlpha: An Evolutionary Framework for LLM-Driven Alpha Mining</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-red-500/10 text-red-400 text-xs rounded">AI4Investment</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">self-evolving</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Alpha Mining</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2602.07085" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/QuantaAlpha" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- Spider-Sense -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="safety" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2602.05386" target="_blank">Spider-Sense: Intrinsic Risk Sensing for Efficient Agent Defense with Hierarchical Adaptive Screening</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-red-500/10 text-red-400 text-xs rounded">Agent Safety</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Intrinsic Risk Sensing</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Hierarchical Defense</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/pdf/2602.05386" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/aifinlab/Spider-Sense" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- Controlled Self-Evolution -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="codeagent,self-evolving" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.07348" target="_blank">Controlled Self-Evolution for Algorithmic Code Optimization</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-green-500/10 text-green-400 text-xs rounded">Self-Evolution</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">CodeAgent</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Genetic Algorithm</span>
<span class="px-2 py-0.5 bg-yellow-500/10 text-yellow-400 text-xs rounded">EffiBench</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2601.07348" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/EvoControl" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- MemGovern -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="codeagent,memory" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.06789" target="_blank">MemGovern: Enhancing Code Agents through Learning from Governed Human Experiences</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">CodeAgent</span>
<span class="px-2 py-0.5 bg-pink-500/10 text-pink-400 text-xs rounded">Memory</span>
<span class="px-2 py-0.5 bg-orange-500/10 text-orange-400 text-xs rounded">Bug Fixing</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">SWE-bench</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2601.06789" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/MemGovern" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- VideoDR -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="deepresearch" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.06943" target="_blank">Watching, Reasoning, and Searching: A Video Deep Research Benchmark on Open Web for Agentic Video Reasoning</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-red-500/10 text-red-400 text-xs rounded">Video Reasoning</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">DeepResearch</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Web Retrieval</span>
<span class="px-2 py-0.5 bg-green-500/10 text-green-400 text-xs rounded">VideoDR</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2601.06943" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/VideoDR-Benchmark" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- KnowMe-Bench -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="memory" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.04745" target="_blank">KnowMe-Bench: Benchmarking Person Understanding for Lifelong Digital Companions</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-pink-500/10 text-pink-400 text-xs rounded">Agent Memory</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Person Understanding</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Digital Companion</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2601.04745" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/QuantaAlpha/KnowMeBench" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- EvoFSM -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="self-evolving,deepresearch" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.09465" target="_blank">EvoFSM: Controllable Self-Evolution for Deep Research with Finite State Machines</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-green-500/10 text-green-400 text-xs rounded">Self-Evolution</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">DeepResearch</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Finite State Machine</span>
<span class="px-2 py-0.5 bg-yellow-500/10 text-yellow-400 text-xs rounded">Multi-hop QA</span>
</div>
</div>
<div class="flex-shrink-0">
<a href="https://arxiv.org/abs/2601.09465" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-external-link-alt"></i> arXiv
</a>
</div>
</div>
</div>
<!-- FinVault -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="safety" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.07853" target="_blank">FinVault: Benchmarking Financial Agent Safety in Execution-Grounded Environments</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-red-500/10 text-red-400 text-xs rounded">Agent Safety</span>
<span class="px-2 py-0.5 bg-orange-500/10 text-orange-400 text-xs rounded">Financial Security</span>
<span class="px-2 py-0.5 bg-yellow-500/10 text-yellow-400 text-xs rounded">Regulatory Compliance</span>
</div>
</div>
<div class="flex-shrink-0">
<a href="https://arxiv.org/abs/2601.07853" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-external-link-alt"></i> arXiv
</a>
<a href="https://github.com/aifinlab/FinVault" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- Does Memory Need Graphs? -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="memory" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.01280" target="_blank">Does Memory Need Graphs? A Unified Framework and Empirical Analysis for Long-Term Dialog Memory</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-pink-500/10 text-pink-400 text-xs rounded">Agent Memory</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Graph Structure</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Dialog Memory</span>
</div>
</div>
<div class="flex-shrink-0">
<a href="https://arxiv.org/abs/2601.01280" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-external-link-alt"></i> arXiv
</a>
</div>
</div>
</div>
<!-- CloneMem -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="memory" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.07023" target="_blank">CloneMem: Benchmarking Long-Term Memory for AI Clones</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-pink-500/10 text-pink-400 text-xs rounded">Agent Memory</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">AI Clone</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Temporal Reasoning</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2601.07023" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/AvatarMemory/CloneMemBench" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- RealMem -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="memory" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.06966" target="_blank">RealMem: Benchmarking LLMs in Real-World Memory-Driven Interaction</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-pink-500/10 text-pink-400 text-xs rounded">Agent Memory</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Cross-session Dialog</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Real-world Interaction</span>
</div>
</div>
<div class="flex-shrink-0 flex gap-2">
<a href="https://arxiv.org/abs/2601.06966" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-file-alt"></i> Paper
</a>
<a href="https://github.com/AvatarMemory/RealMemBench" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fab fa-github"></i> Code
</a>
</div>
</div>
</div>
<!-- DR-LoRA -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2026" data-tags="training" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-cyan-500/10 text-cyan-400 text-xs font-bold rounded-full border border-cyan-500/20">2026</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="https://arxiv.org/abs/2601.04823" target="_blank">DR-LoRA: Dynamic Rank LoRA for Mixture-of-Experts Adaptation</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-orange-500/10 text-orange-400 text-xs rounded">LoRA</span>
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">MoE</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Dynamic Rank</span>
<span class="px-2 py-0.5 bg-green-500/10 text-green-400 text-xs rounded">PEFT</span>
</div>
</div>
<div class="flex-shrink-0">
<a href="https://arxiv.org/abs/2601.04823" target="_blank" class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 hover:bg-white/10 rounded-lg text-sm text-white transition-colors">
<i class="fas fa-external-link-alt"></i> arXiv
</a>
</div>
</div>
</div>
<!-- 2025 Papers -->
<!-- Octopus -->
<div class="pub-item glass-card p-5 rounded-xl hover:bg-white/5 transition-all" data-year="2025" data-tags="reasoning" data-aos="fade-up">
<div class="flex flex-col md:flex-row md:items-center gap-4">
<div class="flex-shrink-0">
<span class="inline-block px-3 py-1 bg-yellow-500/10 text-yellow-400 text-xs font-bold rounded-full border border-yellow-500/20">2025</span>
</div>
<div class="flex-1">
<h4 class="text-lg font-semibold text-white mb-2 hover:text-brand-blue transition-colors">
<a href="#" target="_blank">🐙 Octopus: Agentic Multimodal Reasoning with Six-Capability Orchestration</a>
</h4>
<div class="flex flex-wrap gap-1 mb-2">
<span class="px-2 py-0.5 bg-purple-500/10 text-purple-400 text-xs rounded">Multimodal Reasoning</span>
<span class="px-2 py-0.5 bg-blue-500/10 text-blue-400 text-xs rounded">Agentic Framework</span>
<span class="px-2 py-0.5 bg-yellow-500/10 text-yellow-400 text-xs rounded">arXiv Preprint</span>
</div>