-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1262 lines (1169 loc) · 60.9 KB
/
Copy pathindex.html
File metadata and controls
1262 lines (1169 loc) · 60.9 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="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RemindAI — 开源桌面 AI 助手</title>
<meta name="description" content="RemindAI:开源桌面 AI 助手,为大模型提供完整工具外壳,文件操作、代码执行、向量记忆、MCP 协议一体化。" />
<link rel="icon" href="assets/logo_egg.png" type="image/png" />
<style>
:root {
--bg: #0a0a0f;
--surface: #13131a;
--card: #1a1a24;
--border: #2a2a3a;
--text: #e8e8ed;
--text-dim: #8888aa;
--accent: #7c5cfc;
--accent2: #00c8ff;
--glow: rgba(124, 92, 252, 0.3);
--glow2: rgba(0, 200, 255, 0.2);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}
/* === Header Nav === */
nav {
position: fixed;
top: 0;
width: 100%;
padding: 16px 40px;
display: flex;
align-items: center;
justify-content: space-between;
backdrop-filter: blur(20px);
background: rgba(10, 10, 15, 0.8);
border-bottom: 1px solid var(--border);
z-index: 100;
}
.nav-brand {
display: flex;
align-items: center;
gap: 10px;
font-size: 20px;
font-weight: 700;
}
.nav-brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-right {
display: flex;
align-items: center;
gap: 20px;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
color: var(--text-dim);
text-decoration: none;
font-size: 14px;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links .github-icon {
display: flex;
align-items: center;
color: var(--text-dim);
transition: color 0.2s;
}
.nav-links .github-icon:hover { color: var(--text); }
/* === Language Switcher === */
.lang-switcher {
position: relative;
}
.lang-toggle {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
border-radius: 8px;
border: 1px solid var(--border);
background: var(--card);
color: var(--text);
font-size: 13px;
cursor: pointer;
transition: all 0.2s;
font-family: inherit;
}
.lang-toggle:hover {
border-color: var(--accent);
background: var(--surface);
}
.lang-toggle .globe { font-size: 15px; }
.lang-dropdown {
position: absolute;
top: calc(100% + 8px);
right: 0;
background: var(--card);
border: 1px solid var(--border);
border-radius: 10px;
overflow: hidden;
opacity: 0;
visibility: hidden;
transform: translateY(-8px);
transition: all 0.2s;
min-width: 140px;
box-shadow: 0 12px 40px rgba(0,0,0,0.5);
z-index: 200;
}
.lang-dropdown.open {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.lang-option {
display: block;
width: 100%;
padding: 10px 16px;
border: none;
background: transparent;
color: var(--text);
font-size: 14px;
text-align: left;
cursor: pointer;
transition: background 0.15s;
font-family: inherit;
}
.lang-option:hover { background: rgba(124,92,252,0.15); }
.lang-option.active { color: var(--accent2); font-weight: 600; background: rgba(0,200,255,0.08); }
/* === Hero === */
.hero {
padding: 160px 40px 100px;
text-align: center;
position: relative;
}
.hero::before {
content: '';
position: absolute;
top: 0; left: 50%;
transform: translateX(-50%);
width: 800px; height: 800px;
background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
pointer-events: none;
}
.hero h1 {
font-size: clamp(36px, 6vw, 64px);
font-weight: 800;
margin-bottom: 20px;
background: linear-gradient(135deg, var(--accent), var(--accent2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero .subtitle {
font-size: clamp(16px, 2.5vw, 22px);
color: var(--text-dim);
max-width: 600px;
margin: 0 auto 40px;
}
.hero-buttons {
display: flex;
gap: 16px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 14px 32px;
border-radius: 12px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
cursor: pointer;
border: none;
}
.btn-primary {
background: linear-gradient(135deg, var(--accent), #5a3fd4);
color: #fff;
box-shadow: 0 8px 30px var(--glow);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 12px 40px var(--glow);
}
.btn-secondary {
background: var(--card);
color: var(--text);
border: 1px solid var(--border);
}
.btn-secondary:hover {
background: var(--border);
transform: translateY(-2px);
}
/* === Badge === */
.version-badge {
display: inline-block;
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
background: linear-gradient(135deg, var(--accent), var(--accent2));
color: #fff;
margin-bottom: 16px;
}
/* === Showcase Image === */
.showcase {
max-width: 1000px;
margin: 0 auto 80px;
padding: 0 40px;
}
.showcase img {
width: 100%;
border-radius: 16px;
border: 1px solid var(--border);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px var(--glow2);
}
/* === New Changelog Highlights === */
.changelog-section {
max-width: 1100px;
margin: 0 auto 80px;
padding: 0 40px;
}
.changelog-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 32px;
margin-bottom: 24px;
}
.changelog-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 20px;
}
.changelog-header h2 {
font-size: 24px;
font-weight: 700;
background: linear-gradient(135deg, var(--accent), var(--accent2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.changelog-list {
list-style: none;
}
.changelog-list li {
padding: 10px 0;
padding-left: 24px;
position: relative;
font-size: 14px;
color: var(--text-dim);
border-bottom: 1px solid rgba(42,42,58,0.5);
}
.changelog-list li:last-child { border-bottom: none; }
.changelog-list li::before {
content: '→';
position: absolute;
left: 0;
color: var(--accent);
}
.changelog-old {
opacity: 0.6;
font-size: 13px;
}
.changelog-old li::after {
content: '(旧版已合并)';
font-size: 11px;
color: var(--text-dim);
margin-left: 8px;
opacity: 0.6;
}
/* === Features Grid === */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.section-title {
font-size: 32px;
font-weight: 700;
text-align: center;
margin-bottom: 48px;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.feature-card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 16px;
padding: 28px;
transition: all 0.3s;
}
.feature-card:hover {
border-color: var(--accent);
box-shadow: 0 8px 30px var(--glow);
transform: translateY(-4px);
}
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-dim); }
/* === Completion Table === */
.table-wrap {
overflow-x: auto;
border-radius: 12px;
border: 1px solid var(--border);
}
table {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
th, td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid var(--border);
}
th {
background: var(--card);
font-weight: 600;
color: var(--text-dim);
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(124, 92, 252, 0.05); }
.status-done { color: #4caf50; }
.status-wip { color: #ff9800; }
/* === CLI Tools === */
.cli-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 16px;
}
.cli-item {
display: flex;
align-items: center;
gap: 14px;
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 18px 20px;
}
.cli-item code {
font-size: 16px;
font-weight: 700;
color: var(--accent2);
background: rgba(0, 200, 255, 0.1);
padding: 4px 10px;
border-radius: 6px;
}
.cli-item span { font-size: 14px; color: var(--text-dim); }
/* === Quick Start === */
.code-block {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px;
overflow-x: auto;
font-family: 'JetBrains Mono', 'Fira Code', monospace;
font-size: 14px;
line-height: 1.8;
color: var(--text-dim);
}
.code-block .comment { color: #555577; }
.code-block .cmd { color: var(--accent2); }
/* === Footer === */
footer {
text-align: center;
padding: 60px 40px;
border-top: 1px solid var(--border);
color: var(--text-dim);
font-size: 14px;
}
footer a { color: var(--accent); text-decoration: none; }
footer a:hover { text-decoration: underline; }
/* === Responsive === */
@media (max-width: 768px) {
nav { padding: 12px 20px; }
.hero { padding: 120px 20px 60px; }
.section { padding: 60px 20px; }
.showcase { padding: 0 20px; }
.nav-links { display: none; }
.nav-right { gap: 10px; }
.changelog-section { padding: 0 20px; }
}
</style>
</head>
<body>
<!-- Nav -->
<nav>
<div class="nav-brand">
<img src="assets/logo_egg.png" alt="Logo" />
<span>RemindAI</span>
</div>
<div class="nav-right">
<div class="nav-links">
<a href="#features" data-i18n="nav.features">特性</a>
<a href="#completion" data-i18n="nav.completion">完成度</a>
<a href="changelog.html" data-i18n="nav.changelog">版本历史</a>
<a href="configure.html" data-i18n="nav.guide">配置指南</a>
<a href="skill-dev.html" data-i18n="nav.skilldev">技能开发</a>
<a href="ARCHITECTURE.html" data-i18n="nav.architecture">工作原理</a>
<a href="agent-workflow.html" data-i18n="nav.agentworkflow">Agent 工作流</a>
<a href="https://github.com/PythonnotJava/RemindAI" target="_blank" class="github-icon" aria-label="GitHub">
<svg width="20" height="20" viewBox="0 0 98 96" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.362 19.412-6.518 33.405-24.934 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="currentColor"/>
</svg>
</a>
</div>
<!-- Language Switcher -->
<div class="lang-switcher">
<button class="lang-toggle" id="langToggle" aria-label="Switch language">
<span class="globe">🌐</span>
<span id="langLabel">中文</span>
<span style="font-size:10px;">▾</span>
</button>
<div class="lang-dropdown" id="langDropdown">
<button class="lang-option active" data-lang="zh-CN">🇨🇳 中文</button>
<button class="lang-option" data-lang="en">🇺🇸 English</button>
</div>
</div>
</div>
</nav>
<!-- Hero -->
<section class="hero">
<div class="version-badge">v1.0.5</div>
<h1 data-i18n="hero.title">把 AI 从聊天框里释放出来</h1>
<p class="subtitle" data-i18n="hero.subtitle">RemindAI — 开源桌面 AI 助手,为大模型提供完整的工具外壳,让 AI 直接操作文件、执行代码、管理记忆。</p>
<div class="hero-buttons">
<a class="btn btn-primary" href="https://github.com/PythonnotJava/RemindAI/releases" target="_blank" data-i18n="hero.download">📦 下载最新版</a>
<a class="btn btn-secondary" href="configure.html" data-i18n="hero.guide">📖 配置指南</a>
<a class="btn btn-secondary" href="https://github.com/PythonnotJava/RemindAI" target="_blank">⭐ GitHub</a>
</div>
</section>
<!-- Showcase -->
<div class="showcase">
<img src="https://raw.githubusercontent.com/PythonnotJava/RemindAI/main/snapshots/results_promotion.png" data-i18n-alt="showcase.alt" alt="RemindAI 效果展示" />
</div>
<!-- V1.0.5 Changelog Highlights -->
<section class="changelog-section" id="changelog">
<div class="changelog-card">
<div class="changelog-header">
<h2 data-i18n="changelog.title">🆕 v1.0.5 更新</h2>
</div>
<ul class="changelog-list">
<li data-i18n="changelog.f1">优化流式 UI 中断处理,用户打断不渲染但内容仍保留在上下文</li>
<li data-i18n="changelog.f2">修复超长对话 / 单轮大量 UI 生成时的渲染卡顿</li>
<li data-i18n="changelog.f3">优化对话流式 UI 呈现效果</li>
<li data-i18n="changelog.f4">模型卡片支持配置上下文窗口与最大输出 Token(默认 128K / 12.8K)</li>
<li data-i18n="changelog.f5">增强 Anthropic 协议支持</li>
<li data-i18n="changelog.f6">新增 Linux / macOS WebView H5 渲染(尚未完整验证)</li>
<li data-i18n="changelog.f7">其他若干卡顿修复与 UI 打磨</li>
</ul>
</div>
</section>
<!-- Features -->
<section class="section" id="features">
<h2 class="section-title" data-i18n="features.title">✨ 核心特性</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🐚</div>
<h3 data-i18n="features.toolshell.title">ToolShell</h3>
<p data-i18n="features.toolshell.desc">文件沙盒 + Python/Shell/JS 执行器 + RTK 压缩 60-90% token 消耗 + 不完整 JSON 自修复 + DSML 兼容层。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔌</div>
<h3 data-i18n="features.mcp.title">MCP 协议</h3>
<p data-i18n="features.mcp.desc">stdio / SSE / Streamable HTTP 三传输全覆盖,工具自动发现、动态注入 Agent。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🧠</div>
<h3 data-i18n="features.memory.title">向量记忆</h3>
<p data-i18n="features.memory.desc">Qdrant 语义搜索 + SQLite 持久备份,双写架构自动容灾 + 软失效过滤,跨会话记住重要信息。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🤝</div>
<h3 data-i18n="features.agents.title">多 Agent 协作</h3>
<p data-i18n="features.agents.desc">指挥部 / 工作者 / 审查员角色体系 + 权限隔离,产出自动路由注入上下文,支持大量文档并行理解。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🎨</div>
<h3 data-i18n="features.models.title">多模型原生适配</h3>
<p data-i18n="features.models.desc">OpenAI / Anthropic / Gemini 三协议独立实现,流式推理链 + 多模态图文混合。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🧩</div>
<h3 data-i18n="features.capability.title">可插拔 Capability</h3>
<p data-i18n="features.capability.desc">Custom → MCP → ToolShell 三级中间件路由,新增能力只需实现接口 + 注册一行。</p>
</div>
<div class="feature-card">
<div class="feature-icon">📦</div>
<h3 data-i18n="features.skills.title">四层技能系统</h3>
<p data-i18n="features.skills.desc">L1 元技能 + L2 全局 + L3 项目临时 + L4 自生成规划中,SKILL.md + tools.json 格式,ZIP 一键导入,支持批量导入。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔍</div>
<h3 data-i18n="features.search.title">Web 搜索</h3>
<p data-i18n="features.search.desc">Tavily / Brave / 百度智能搜索,会话级一键开关。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🌐</div>
<h3 data-i18n="features.api.title">对外 API 服务</h3>
<p data-i18n="features.api.desc">内置 HTTP 服务器,三种端点:OpenAI 聚合、Claude Agent、Claude 代理透传。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🌍</div>
<h3 data-i18n="features.online.title">在线访问 Agent</h3>
<p data-i18n="features.online.desc">通过浏览器远程访问 RemindAI Agent,支持在线会话管理。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🗜️</div>
<h3 data-i18n="features.compress.title">智能上下文管理</h3>
<p data-i18n="features.compress.desc">Cache-Aligned 压缩 95%+ 缓存命中 + Token 预算驱动裁剪 + 输出预留 + 工具结果智能压缩 + 频繁压缩检测。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔄</div>
<h3 data-i18n="features.agentloop.title">可控 AgentLoop</h3>
<p data-i18n="features.agentloop.desc">思考 → 编写 → 测试 → 验证 循环流水线 + Tool Call 三层防御 + 中断恢复 + 长对话防卡顿。</p>
</div>
<div class="feature-card">
<div class="feature-icon">📚</div>
<h3 data-i18n="features.kb.title">知识库</h3>
<p data-i18n="features.kb.desc">独立知识库管理、文档批量索引、向量召回,并可在会话中按需接入多个知识库。</p>
</div>
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3 data-i18n="features.parallel.title">并行工具执行</h3>
<p data-i18n="features.parallel.desc">支持并行读取、并行写入不同文件、并行删除不同文件、并行执行不同命令,智能冲突检测保障安全。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🌿</div>
<h3 data-i18n="features.worktree.title">Git Worktree 隔离</h3>
<p data-i18n="features.worktree.desc">高风险改动可在独立工作树实验,支持差异审查、检查点、回退、合并与安全丢弃。</p>
</div>
<div class="feature-card">
<div class="feature-icon">🐱</div>
<h3 data-i18n="features.pet.title">全局宠物 Agent</h3>
<p data-i18n="features.pet.desc">像素猫桌面陪伴 + 右键 AI 问答 + TTS 语音 + 商店背包投喂 + 成就系统。</p>
</div>
<div class="feature-card">
<div class="feature-icon">📤</div>
<h3 data-i18n="features.more.title">更多</h3>
<p data-i18n="features.more.desc">Schedule 计划管理 / 领域专家 / Gemini 文生图 / OCR / 对话导出 / 中英双语 / Material 3 主题</p>
</div>
</div>
</section>
<!-- Comparison -->
<section class="section">
<h2 class="section-title" data-i18n="compare.title">🆚 与普通 AI 客户端的区别</h2>
<div class="table-wrap">
<table>
<thead>
<tr>
<th></th>
<th data-i18n="compare.col1">🔵 普通 AI 客户端</th>
<th data-i18n="compare.col2">🟣 RemindAI</th>
</tr>
</thead>
<tbody>
<tr>
<td data-i18n="compare.row1.label">📁 文件操作</td>
<td data-i18n="compare.row1.regular">❌ 不支持</td>
<td data-i18n="compare.row1.remindai">✅ 内置沙盒文件系统</td>
</tr>
<tr>
<td data-i18n="compare.row2.label">💻 代码执行</td>
<td data-i18n="compare.row2.regular">❌ 不支持</td>
<td data-i18n="compare.row2.remindai">✅ Python/Shell/JS 执行器</td>
</tr>
<tr>
<td data-i18n="compare.row3.label">🧠 记忆</td>
<td data-i18n="compare.row3.regular">❌ 无或仅上下文</td>
<td data-i18n="compare.row3.remindai">✅ 向量语义记忆 + SQLite + 软失效过滤</td>
</tr>
<tr>
<td data-i18n="compare.row4.label">🔌 工具扩展</td>
<td data-i18n="compare.row4.regular">⚠️ 有限</td>
<td data-i18n="compare.row4.remindai">✅ MCP + 技能 + Capability</td>
</tr>
<tr>
<td data-i18n="compare.row5.label">🤝 多 Agent</td>
<td data-i18n="compare.row5.regular">⚠️ 多窗口并排</td>
<td data-i18n="compare.row5.remindai">✅ 真协作 + 自动路由 + 并行文档理解</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- Completion -->
<section class="section" id="completion">
<h2 class="section-title" data-i18n="completion.title">📊 功能完成度</h2>
<div class="table-wrap">
<table>
<thead>
<tr>
<th data-i18n="completion.col1">模块</th>
<th data-i18n="completion.col2">状态</th>
<th data-i18n="completion.col3">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td data-i18n="completion.r1.label">AI 对话核心</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r1.desc">AgentLoop 流式循环 + 事件驱动 UI</td>
</tr>
<tr>
<td data-i18n="completion.r2.label">三端 LLM 适配</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r2.desc">OpenAI / Anthropic / Gemini 独立客户端</td>
</tr>
<tr>
<td data-i18n="completion.r3.label">ToolShell 元技能</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r3.desc">读/写/删/搜索/exec/python/js + rg/fd/rtk</td>
</tr>
<tr>
<td data-i18n="completion.r4.label">Schedule 元技能</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r4.desc">7 工具 CRUD + 审查 + 归档</td>
</tr>
<tr>
<td data-i18n="completion.r5.label">System 元技能</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r5.desc">环境探测 + 环境变量脱敏</td>
</tr>
<tr>
<td data-i18n="completion.r6.label">MCP 多传输</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r6.desc">stdio / SSE / Streamable HTTP</td>
</tr>
<tr>
<td data-i18n="completion.r7.label">向量记忆系统</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r7.desc">Qdrant + SQLite 双写 + 自动容灾 + 软失效过滤</td>
</tr>
<tr>
<td data-i18n="completion.r8.label">可插拔 Capability</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r8.desc">搜索能力已落地,框架可扩展</td>
</tr>
<tr>
<td data-i18n="completion.r9.label">四层技能系统</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r9.desc">L1 默认元技能 + L2 用户全局 + L3 工作目录临时 + L4 规划中,支持批量导入</td>
</tr>
<tr>
<td data-i18n="completion.r10.label">模型 Card 管理</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r10.desc">增删改 + Logo + 拖拽排序</td>
</tr>
<tr>
<td data-i18n="completion.r11.label">多 Agent 协作</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r11.desc">框架搭建完成 + 并行文档理解编排 + 可控 AgentLoop 流水线</td>
</tr>
<tr>
<td data-i18n="completion.r12.label">领域专家系统</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r12.desc">预设/自定义角色 + 绑定技能</td>
</tr>
<tr>
<td data-i18n="completion.r13.label">对话导出</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r13.desc">MD / PDF / Word / HTML</td>
</tr>
<tr>
<td data-i18n="completion.r14.label">桌面体验</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r14.desc">托盘 / 通知 / 闪屏 / 主题动画</td>
</tr>
<tr>
<td data-i18n="completion.r15.label">全局宠物 Agent</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r15.desc">像素猫 + TTS 语音 + 商店经济 + 成就系统</td>
</tr>
<tr>
<td data-i18n="completion.r16.label">对外 API 服务</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r16.desc">内置 HTTP 服务器,三种端点:OpenAI 聚合 / Claude Agent / Claude 代理</td>
</tr>
<tr>
<td data-i18n="completion.r17.label">在线访问 Agent</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r17.desc">通过浏览器远程访问 RemindAI Agent</td>
</tr>
<tr>
<td data-i18n="completion.r18.label">智能上下文管理</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r18.desc">Cache-Aligned 压缩 + Token 预算驱动 + 输出预留 + RTK 60-90% + 工具结果压缩 + 频繁压缩检测</td>
</tr>
<tr>
<td data-i18n="completion.r19.label">知识库</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r19.desc">多知识库管理 + 文档索引 + 会话级向量召回</td>
</tr>
<tr>
<td data-i18n="completion.r20.label">并行工具执行</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r20.desc">/sub-readers 并行理解 + 并行写入/删除不同文件 + 智能冲突检测</td>
</tr>
<tr>
<td data-i18n="completion.r21.label">Worktree 版本工作流</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r21.desc">隔离实验 + 检查点 + 回退 + 差异审查 + 合并/丢弃</td>
</tr>
<tr>
<td data-i18n="completion.r22.label">并行工具调用</td>
<td class="status-done">✅</td>
<td data-i18n="completion.r22.desc">读取/写入/删除/执行均支持并行(操作不同目标时),智能资源冲突检测</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- Bundled CLI -->
<section class="section">
<h2 class="section-title" data-i18n="cli.title">📦 内置 CLI 工具</h2>
<div class="cli-list">
<div class="cli-item">
<code>rg</code>
<span data-i18n="cli.rg">ripgrep — 极速正则搜索</span>
</div>
<div class="cli-item">
<code>fd</code>
<span data-i18n="cli.fd">fd — 现代化文件查找</span>
</div>
<div class="cli-item">
<code>rtk</code>
<span data-i18n="cli.rtk">RTK — Token 压缩器,减少 60-90% 输出</span>
</div>
</div>
</section>
<!-- Quick Start -->
<section class="section" id="start">
<h2 class="section-title" data-i18n="start.title">🚀 快速开始</h2>
<div class="code-block">
<span class="comment" data-i18n="start.comment1"># 环境要求: Flutter SDK >= 3.12.1</span><br/>
<span class="cmd">git clone</span> https://github.com/PythonnotJava/RemindAI.git<br/>
<span class="cmd">cd</span> RemindAI<br/><br/>
<span class="comment" data-i18n="start.comment2"># Windows</span><br/>
<span class="cmd">flutter build windows</span> --release --tree-shake-icons<br/><br/>
<span class="comment" data-i18n="start.comment3"># Linux / macOS</span><br/>
<span class="cmd">flutter build linux</span> --release --tree-shake-icons<br/>
<span class="cmd">flutter build macos</span> --release --tree-shake-icons
</div>
<div style="text-align: center; margin-top: 16px; color: var(--text-dim); font-size: 14px;" data-i18n="start.note">
Windows 正式支持 · Linux / macOS 自行编译
</div>
</section>
<!-- Footer -->
<footer>
<p data-i18n="footer.license">MIT License · Copyright © 2026 <a href="https://github.com/PythonnotJava" target="_blank">PythonnotJava</a></p>
<p style="margin-top: 8px;">
<a href="configure.html" data-i18n="footer.guide">📖 配置指南</a> ·
<a href="skill-dev.html" data-i18n="footer.skilldev">🧩 技能开发</a> ·
<a href="ARCHITECTURE.html" data-i18n="footer.architecture">🏗️ 软件架构</a> ·
<a href="agent-workflow.html" data-i18n="footer.agentworkflow">🧠 Agent 工作流</a> ·
<a href="changelog.html" data-i18n="footer.changelog">📋 版本历史</a> ·
<a href="https://github.com/PythonnotJava/RemindAI/releases" target="_blank" data-i18n="footer.download">📦 下载</a>
</p>
<p style="margin-top: 6px;"><span data-i18n="footer.built">用 Flutter 和热情构建 ❤️</span> · <span data-i18n="footer.remindai">网页由 RemindAI 构建</span></p>
</footer>
<!-- ============ i18n Engine ============ -->
<script>
(function() {
// ── Translations ──────────────────────────────
const T = {
'zh-CN': {
'nav.features': '特性',
'nav.completion': '完成度',
'nav.quickstart': '快速开始',
'nav.guide': '配置指南',
'nav.changelog': '版本历史',
'nav.skilldev': '技能开发',
'nav.architecture': '工作原理',
'nav.architecture': '工作原理',
'nav.agentworkflow': 'Agent 工作流',
'hero.title': '把 AI 从聊天框里释放出来',
'hero.subtitle': 'RemindAI — 开源桌面 AI 助手,为大模型提供完整的工具外壳,让 AI 直接操作文件、执行代码、管理记忆。',
'hero.download': '📦 下载最新版',
'hero.guide': '📖 配置指南',
'showcase.alt': 'RemindAI 效果展示',
'changelog.title': '🆕 v1.0.5 更新',
'changelog.f1': '优化流式 UI 中断处理,用户打断不渲染但内容仍保留在上下文',
'changelog.f2': '修复超长对话 / 单轮大量 UI 生成时的渲染卡顿',
'changelog.f3': '优化对话流式 UI 呈现效果',
'changelog.f4': '模型卡片支持配置上下文窗口与最大输出 Token(默认 128K / 12.8K)',
'changelog.f5': '增强 Anthropic 协议支持',
'changelog.f6': '新增 Linux / macOS WebView H5 渲染(尚未完整验证)',
'changelog.f7': '其他若干卡顿修复与 UI 打磨',
'features.title': '✨ 核心特性',
'features.toolshell.title': 'ToolShell',
'features.toolshell.desc': '文件沙盒 + Python/Shell/JS 执行器 + RTK 压缩 60-90% token 消耗 + 不完整 JSON 自修复 + DSML 兼容层。',
'features.mcp.title': 'MCP 协议',
'features.mcp.desc': 'stdio / SSE / Streamable HTTP 三传输全覆盖,工具自动发现、动态注入 Agent。',
'features.memory.title': '向量记忆',
'features.memory.desc': 'Qdrant 语义搜索 + SQLite 持久备份,双写架构自动容灾 + 软失效过滤,跨会话记住重要信息。',
'features.agents.title': '多 Agent 协作',
'features.agents.desc': '指挥部 / 工作者 / 审查员角色体系 + 权限隔离,产出自动路由注入上下文,支持大量文档并行理解。',
'features.models.title': '多模型原生适配',
'features.models.desc': 'OpenAI / Anthropic / Gemini 三协议独立实现,流式推理链 + 多模态图文混合。',
'features.capability.title': '可插拔 Capability',
'features.capability.desc': 'Custom → MCP → ToolShell 三级中间件路由,新增能力只需实现接口 + 注册一行。',
'features.skills.title': '四层技能系统',
'features.skills.desc': 'L1 元技能 + L2 全局 + L3 项目临时 + L4 自生成规划中,SKILL.md + tools.json 格式,ZIP 一键导入,支持批量导入。',
'features.search.title': 'Web 搜索',
'features.search.desc': 'Tavily / Brave / 百度智能搜索,会话级一键开关。',
'features.more.title': '更多',
'features.api.title': '对外 API 服务',
'features.api.desc': '内置 HTTP 服务器,三种端点:OpenAI 聚合、Claude Agent、Claude 代理透传。',
'features.online.title': '在线访问 Agent',
'features.online.desc': '通过浏览器远程访问 RemindAI Agent,支持在线会话管理。',
'features.compress.title': '智能上下文管理',
'features.compress.desc': 'Cache-Aligned 压缩 95%+ 缓存命中 + Token 预算驱动裁剪 + 输出预留 + 工具结果智能压缩 + 频繁压缩检测。',
'features.agentloop.title': '可控 AgentLoop',
'features.agentloop.desc': '思考 → 编写 → 测试 → 验证 循环流水线 + Tool Call 三层防御 + 中断恢复 + 长对话防卡顿。',
'features.kb.title': '知识库',
'features.kb.desc': '独立知识库管理、文档批量索引、向量召回,并可在会话中按需接入多个知识库。',
'features.parallel.title': '并行工具执行',
'features.parallel.desc': '支持并行读取、并行写入不同文件、并行删除不同文件、并行执行不同命令,智能冲突检测保障安全。',
'features.worktree.title': 'Git Worktree 隔离',
'features.worktree.desc': '高风险改动可在独立工作树实验,支持差异审查、检查点、回退、合并与安全丢弃。',
'features.pet.title': '全局宠物 Agent',
'features.pet.desc': '像素猫桌面陪伴 + 右键 AI 问答 + TTS 语音 + 商店背包投喂 + 成就系统。',
'features.more.desc': 'Schedule 计划管理 / 领域专家 / Gemini 文生图 / OCR / 对话导出 / 中英双语 / Material 3 主题',
'compare.title': '🆚 与普通 AI 客户端的区别',
'compare.col1': '🔵 普通 AI 客户端',
'compare.col2': '🟣 RemindAI',
'compare.row1.label': '📁 文件操作',
'compare.row1.regular': '❌ 不支持',
'compare.row1.remindai': '✅ 内置沙盒文件系统',
'compare.row2.label': '💻 代码执行',
'compare.row2.regular': '❌ 不支持',
'compare.row2.remindai': '✅ Python/Shell/JS 执行器',
'compare.row3.label': '🧠 记忆',
'compare.row3.regular': '❌ 无或仅上下文',
'compare.row3.remindai': '✅ 向量语义记忆 + SQLite + 软失效过滤',
'compare.row4.label': '🔌 工具扩展',
'compare.row4.regular': '⚠️ 有限',
'compare.row4.remindai': '✅ MCP + 技能 + Capability',
'compare.row5.label': '🤝 多 Agent',
'compare.row5.regular': '⚠️ 多窗口并排',
'compare.row5.remindai': '✅ 真协作 + 自动路由 + 并行文档理解',
'completion.title': '📊 功能完成度',
'completion.col1': '模块',
'completion.col2': '状态',
'completion.col3': '说明',
'completion.r1.label': 'AI 对话核心',
'completion.r1.desc': 'AgentLoop 流式循环 + 事件驱动 UI',
'completion.r2.label': '三端 LLM 适配',
'completion.r2.desc': 'OpenAI / Anthropic / Gemini 独立客户端',
'completion.r3.label': 'ToolShell 元技能',
'completion.r3.desc': '读/写/删/搜索/exec/python/js + rg/fd/rtk',
'completion.r4.label': 'Schedule 元技能',
'completion.r4.desc': '7 工具 CRUD + 审查 + 归档',
'completion.r5.label': 'System 元技能',
'completion.r5.desc': '环境探测 + 环境变量脱敏',
'completion.r6.label': 'MCP 多传输',
'completion.r6.desc': 'stdio / SSE / Streamable HTTP',
'completion.r7.label': '向量记忆系统',
'completion.r7.desc': 'Qdrant + SQLite 双写 + 自动容灾 + 软失效过滤',
'completion.r8.label': '可插拔 Capability',
'completion.r8.desc': '搜索能力已落地,框架可扩展',
'completion.r9.label': '四层技能系统',
'completion.r9.desc': 'L1 默认元技能 + L2 用户全局 + L3 工作目录临时 + L4 规划中,支持批量导入',
'completion.r10.label': '模型 Card 管理',
'completion.r10.desc': '增删改 + Logo + 拖拽排序',
'completion.r11.label': '多 Agent 协作',
'completion.r11.desc': '框架搭建完成 + 并行文档理解编排 + 可控 AgentLoop 流水线',
'completion.r12.label': '领域专家系统',
'completion.r12.desc': '预设/自定义角色 + 绑定技能',
'completion.r13.label': '对话导出',
'completion.r13.desc': 'MD / PDF / Word / HTML',
'completion.r14.label': '桌面体验',
'completion.r14.desc': '托盘 / 通知 / 闪屏 / 主题动画',
'completion.r15.label': '全局宠物 Agent',
'completion.r15.desc': '像素猫 + TTS 语音 + 商店经济 + 成就系统',
'completion.r16.label': '对外 API 服务',
'completion.r16.desc': '内置 HTTP 服务器,三种端点:OpenAI 聚合 / Claude Agent / Claude 代理',
'completion.r17.label': '在线访问 Agent',
'completion.r17.desc': '通过浏览器远程访问 RemindAI Agent',
'completion.r18.label': '智能上下文管理',
'completion.r18.desc': 'Cache-Aligned 压缩 + Token 预算驱动 + 输出预留 + RTK 60-90% + 工具结果压缩 + 频繁压缩检测',
'completion.r19.label': '知识库',
'completion.r19.desc': '多知识库管理 + 文档索引 + 会话级向量召回',
'completion.r20.label': '并行工具执行',
'completion.r20.desc': '/sub-readers 并行理解 + 并行写入/删除不同文件 + 智能冲突检测',
'completion.r21.label': 'Worktree 版本工作流',
'completion.r21.desc': '隔离实验 + 检查点 + 回退 + 差异审查 + 合并/丢弃',
'completion.r22.label': '并行工具调用',
'completion.r22.desc': '读取/写入/删除/执行均支持并行(操作不同目标时),智能资源冲突检测',
'cli.title': '📦 内置 CLI 工具',
'cli.rg': 'ripgrep — 极速正则搜索',
'cli.fd': 'fd — 现代化文件查找',
'cli.rtk': 'RTK — Token 压缩器,减少 60-90% 输出',
'start.title': '🚀 快速开始',
'start.comment1': '# 环境要求: Flutter SDK >= 3.12.1',
'start.comment2': '# Windows',
'start.comment3': '# Linux / macOS',
'start.download': '📥 下载预编译包',
'start.note': 'Windows 正式支持 · Linux / macOS 自行编译',
'footer.license': 'MIT License · Copyright © 2026 <a href="https://github.com/PythonnotJava" target="_blank">PythonnotJava</a>',
'footer.guide': '📖 配置指南',
'footer.skilldev': '🧩 技能开发',
'footer.architecture': '🏗️ 软件架构',
'footer.architecture': '🏗️ 软件架构',
'footer.agentworkflow': '🧠 Agent 工作流',
'footer.changelog': '📋 版本历史',
'footer.download': '📦 下载',
'footer.built': '用 Flutter 和热情构建 ❤️',
'footer.remindai': '网页由 RemindAI 构建'
},
'en': {
'nav.features': 'Features',
'nav.completion': 'Completion',
'nav.quickstart': 'Quick Start',
'nav.guide': 'Configuration Guide',
'nav.changelog': 'Changelog',
'nav.skilldev': 'Skill Dev',
'nav.architecture': 'How it Works',
'nav.architecture': 'How it Works',
'nav.agentworkflow': 'Agent Workflow',
'hero.title': 'Free AI from the Chat Box',
'hero.subtitle': 'RemindAI — Open-source desktop AI assistant that gives LLMs a complete tool shell: file operations, code execution, and memory management — all in one place.',
'hero.download': '📦 Download Latest',
'hero.guide': '📖 Configuration Guide',
'showcase.alt': 'RemindAI Showcase',