-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1267 lines (1179 loc) · 50 KB
/
index.html
File metadata and controls
executable file
·1267 lines (1179 loc) · 50 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>JadeGate — The TLS of AI Tool Calls</title>
<meta name="description" content="Transparent security proxy for MCP servers. 6-layer protection. pip install jadegate — zero config, fully offline.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
:root {
--jade: #10b981;
--jade-dim: rgba(16, 185, 129, 0.08);
--jade-glow: rgba(16, 185, 129, 0.15);
--bg: #000000;
--bg-elevated: #0a0a0a;
--surface: #111111;
--border: rgba(255,255,255,0.06);
--text-primary: #fafafa;
--text-secondary: rgba(255,255,255,0.5);
--text-tertiary: rgba(255,255,255,0.3);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg);
color: var(--text-primary);
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
/* Nav */
nav {
position: fixed;
top: 0;
width: 100%;
z-index: 100;
padding: 0 2rem;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(0,0,0,0.72);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
border-bottom: 1px solid var(--border);
}
.nav-logo {
display: flex;
align-items: center;
gap: 0.6rem;
font-weight: 600;
font-size: 1.05rem;
letter-spacing: -0.02em;
text-decoration: none;
color: var(--text-primary);
}
.nav-logo span { font-size: 1.2rem; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.875rem;
font-weight: 400;
transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
background: var(--text-primary) !important;
color: var(--bg) !important;
padding: 0.45rem 1rem;
border-radius: 980px;
font-weight: 500 !important;
font-size: 0.8rem !important;
transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
/* Hero */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 8rem 2rem 6rem;
position: relative;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 800px;
height: 800px;
background: radial-gradient(circle, var(--jade-glow) 0%, transparent 70%);
pointer-events: none;
opacity: 0.4;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.35rem 1rem;
border-radius: 980px;
border: 1px solid var(--border);
background: var(--bg-elevated);
font-size: 0.8rem;
color: var(--text-secondary);
margin-bottom: 2rem;
}
.hero-badge .dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--jade);
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
h1 {
font-size: clamp(3rem, 8vw, 5.5rem);
font-weight: 700;
letter-spacing: -0.04em;
line-height: 1.05;
margin-bottom: 1.5rem;
}
h1 .jade-text {
background: linear-gradient(135deg, var(--jade), #34d399, #6ee7b7);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero-sub {
font-size: clamp(1.05rem, 2.5vw, 1.25rem);
color: var(--text-secondary);
max-width: 580px;
line-height: 1.7;
font-weight: 300;
margin-bottom: 3rem;
}
.hero-actions {
display: flex;
gap: 1rem;
align-items: center;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 4rem;
}
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.75rem;
border-radius: 980px;
font-size: 0.95rem;
font-weight: 500;
text-decoration: none;
transition: all 0.2s;
cursor: pointer;
border: none;
}
.btn-primary {
background: var(--text-primary);
color: var(--bg);
}
.btn-primary:hover { opacity: 0.85; transform: scale(1.02); }
.btn-ghost {
background: transparent;
color: var(--text-primary);
border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.03); }
.install-cmd {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 0.85rem 1.5rem;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
color: var(--jade);
cursor: pointer;
transition: all 0.2s;
}
.install-cmd:hover { border-color: rgba(16,185,129,0.3); background: var(--jade-dim); }
.install-cmd .prefix { color: var(--text-tertiary); }
.install-cmd .copy-hint {
font-family: 'Inter', sans-serif;
font-size: 0.7rem;
color: var(--text-tertiary);
padding: 0.15rem 0.5rem;
background: rgba(255,255,255,0.04);
border-radius: 4px;
}
/* Sections */
section {
max-width: 1120px;
margin: 0 auto;
padding: 8rem 2rem;
}
.section-label {
font-size: 0.75rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--jade);
margin-bottom: 1rem;
}
.section-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
letter-spacing: -0.03em;
margin-bottom: 1rem;
}
.section-desc {
font-size: 1.1rem;
color: var(--text-secondary);
max-width: 600px;
line-height: 1.7;
font-weight: 300;
margin-bottom: 4rem;
}
/* Verification layers */
.layers-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
border-radius: 16px;
overflow: hidden;
}
.layer-card {
background: var(--bg);
padding: 2rem;
transition: background 0.3s;
}
.layer-card:hover { background: var(--bg-elevated); }
.layer-num {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--jade);
margin-bottom: 0.75rem;
}
.layer-card h3 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.5rem;
letter-spacing: -0.01em;
}
.layer-card p {
font-size: 0.875rem;
color: var(--text-secondary);
line-height: 1.6;
}
/* Trust chain */
.trust-visual {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 16px;
padding: 3rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
line-height: 2.2;
overflow-x: auto;
}
.trust-visual .root { color: var(--jade); font-weight: 600; }
.trust-visual .sub { color: #60a5fa; }
.trust-visual .dim { color: var(--text-tertiary); }
/* Comparison */
.compare-table {
width: 100%;
border-collapse: collapse;
font-size: 0.875rem;
}
.compare-table th {
text-align: left;
padding: 1rem 1.25rem;
font-weight: 500;
color: var(--text-secondary);
border-bottom: 1px solid var(--border);
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.compare-table td {
padding: 1rem 1.25rem;
border-bottom: 1px solid var(--border);
color: var(--text-secondary);
line-height: 1.5;
}
.compare-table tr td:last-child {
color: var(--jade);
font-weight: 500;
}
.compare-table tbody tr:hover td { background: var(--jade-dim); }
/* Framework logos */
.frameworks {
display: flex;
gap: 3rem;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: 3rem 0;
opacity: 0.4;
}
.frameworks span {
font-size: 0.9rem;
font-weight: 500;
color: var(--text-secondary);
letter-spacing: 0.02em;
}
/* CTA */
.cta-section {
text-align: center;
padding: 8rem 2rem;
position: relative;
}
.cta-section::before {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 600px;
height: 600px;
background: radial-gradient(circle, var(--jade-glow) 0%, transparent 70%);
pointer-events: none;
opacity: 0.3;
}
/* Footer */
footer {
border-top: 1px solid var(--border);
padding: 3rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1120px;
margin: 0 auto;
font-size: 0.8rem;
color: var(--text-tertiary);
}
footer a { color: var(--text-secondary); text-decoration: none; }
footer a:hover { color: var(--text-primary); }
.footer-links { display: flex; gap: 2rem; }
/* Poem */
.poem {
font-size: 0.85rem;
color: var(--text-tertiary);
font-style: italic;
letter-spacing: 0.15em;
}
/* Mobile */
@media (max-width: 768px) {
nav { padding: 0 1rem; }
.nav-links { gap: 1rem; }
.nav-links a:not(.nav-cta) { display: none; }
section { padding: 5rem 1.25rem; }
.layers-grid { grid-template-columns: 1fr; }
.trust-visual { padding: 1.5rem; font-size: 0.75rem; }
footer { flex-direction: column; gap: 1rem; text-align: center; }
}
/* === ANIMATIONS === */
/* Scroll fade-in */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* Hero text reveal */
@keyframes heroReveal {
from { opacity: 0; transform: translateY(40px); filter: blur(10px); }
to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-animate {
animation: heroReveal 1s ease forwards;
}
.hero-animate-delay-1 { animation-delay: 0.15s; opacity: 0; }
.hero-animate-delay-2 { animation-delay: 0.3s; opacity: 0; }
.hero-animate-delay-3 { animation-delay: 0.5s; opacity: 0; }
.hero-animate-delay-4 { animation-delay: 0.7s; opacity: 0; }
/* Jade glow pulse */
@keyframes jadePulse {
0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.1); }
50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.25); }
}
.jade-pulse { animation: jadePulse 3s ease-in-out infinite; }
/* Neural network canvas */
#neural-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 0;
}
.hero > *:not(#neural-canvas) { position: relative; z-index: 1; }
/* Verification animation */
.verify-demo {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
max-width: 600px;
margin: 3rem auto 0;
text-align: left;
overflow: hidden;
}
.verify-line {
opacity: 0;
transform: translateX(-10px);
transition: all 0.4s ease;
margin: 0.35rem 0;
white-space: nowrap;
}
.verify-line.show {
opacity: 1;
transform: translateX(0);
}
.verify-line .pass { color: #10b981; }
.verify-line .label { color: rgba(255,255,255,0.5); }
.verify-line .dots { color: rgba(255,255,255,0.15); }
.verify-line .badge { color: #10b981; font-weight: 600; }
/* Floating particles */
.particle {
position: absolute;
width: 4px;
height: 4px;
background: var(--jade);
border-radius: 50%;
opacity: 0;
pointer-events: none;
}
@keyframes float-particle {
0% { opacity: 0; transform: translateY(0) scale(0); }
20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
100% { opacity: 0; transform: translateY(-100px) scale(0.3); }
}
/* Counter animation */
.counter { display: inline-block; }
/* Skill card hover */
.feature-card {
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(16, 185, 129, 0.08);
border-color: rgba(16, 185, 129, 0.2);
}
/* Table row hover */
.comparison-table tr {
transition: background 0.2s ease;
}
.comparison-table tbody tr:hover {
background: rgba(16, 185, 129, 0.04);
}
</style>
</head>
<body>
<nav>
<a href="/" class="nav-logo">
<span>💠</span> JadeGate
</a>
<div class="nav-links">
<a href="#security">Security</a>
<a href="#trust">Trust</a>
<a href="#compare">Compare</a>
<a href="#explorer">Explorer</a>
<a href="https://github.com/JadeGate/jadegate" class="nav-cta">GitHub</a>
</div>
</nav>
<div class="hero">
<div class="hero-badge">
<div class="dot"></div>
BSL 1.1 Licensed — Converts to Apache 2.0 in 4 years
</div>
<h1>
The TLS of<br>
<span class="jade-text">AI Tool Calls</span>
</h1>
<p class="hero-sub" style="font-size:1.15rem;">
AI 工具调用的安全协议。透明代理,保护每一个 MCP Server。<br>
Transparent security proxy for MCP servers. One command. Zero config.
</p>
<p class="hero-sub" style="font-size:0.95rem; opacity:0.75; margin-top:-0.5rem;">
6-layer security stack. Fully offline. No telemetry. pip install and forget.
</p>
<div class="hero-actions">
<a href="https://github.com/JadeGate/jadegate" class="btn btn-primary">
Read the Docs →
</a>
<a href="#security" class="btn btn-ghost">How it works</a>
</div>
<div style="display:flex; gap:12px; justify-content:center; flex-wrap:wrap;">
<div class="install-cmd" onclick="navigator.clipboard.writeText('pip install jadegate')" style="flex:1; min-width:220px;">
<span class="prefix">$</span> pip install jadegate
<span class="copy-hint">click to copy</span>
</div>
<div class="install-cmd" onclick="navigator.clipboard.writeText('jadegate scan')" style="flex:1; min-width:220px;">
<span class="prefix">$</span> jadegate scan
<span class="copy-hint">click to copy</span>
</div>
</div>
</div>
<div class="frameworks">
<span>Claude Desktop</span>
<span>Cursor</span>
<span>Windsurf</span>
<span>Cline</span>
<span>Continue</span>
<span>Zed</span>
<span>Any MCP Client</span>
</div>
<div style="text-align:center; margin: 3rem auto 2rem; max-width: 820px;">
<img src="assets/demo.gif" alt="JadeGate Demo" style="width:100%; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 32px rgba(0,0,0,0.4);">
</div>
<section id="security">
<div class="section-label">Security</div>
<h2 class="section-title" data-i18n="secTitle">Six layers. Zero trust.</h2>
<p class="section-desc">
Every tool call passes through 6 security layers
before execution. No exceptions.
</p>
<div style="text-align:center; margin: 2.5rem auto 3rem; max-width: 900px;">
<img src="assets/pipeline_5layer.png" alt="JadeGate 6-Layer Security Pipeline" style="width:100%; height:auto; display:block; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06);">
</div>
<div class="layers-grid">
<div class="layer-card">
<div class="layer-num">01</div>
<h3 data-i18n="layer1">Policy Enforcement</h3>
<p>Per-tool allow/deny/ask rules. Rate limiting. Argument validation. Your rules, deterministically enforced.</p>
</div>
<div class="layer-card">
<div class="layer-num">02</div>
<h3 data-i18n="layer2">Runtime Monitoring</h3>
<p>Dynamic call-chain tracking via DAG. Anomaly detection. Circuit breaker for fault isolation.</p>
</div>
<div class="layer-card">
<div class="layer-num">03</div>
<h3 data-i18n="layer3">Transport Proxy</h3>
<p>Transparent MCP proxy — intercepts stdio/SSE without modifying the server. Zero server-side changes.</p>
</div>
<div class="layer-card">
<div class="layer-num">04</div>
<h3>Trust Verification</h3>
<p>TOFU (Trust On First Use) + Ed25519 certificates. Cryptographic server identity verification.</p>
</div>
<div class="layer-card">
<div class="layer-num">05</div>
<h3 data-i18n="layer5">Security Scanner</h3>
<p>Static analysis of MCP server capabilities. Risk scoring. Dangerous pattern detection.</p>
</div>
<div class="layer-card">
<div class="layer-num">06</div>
<h3>Auto Installer</h3>
<p>Auto-detects and injects into all MCP client configs. Claude, Cursor, Windsurf, Cline, Continue, Zed.</p>
</div>
</div>
<div style="text-align:center; margin: 3rem auto 0; max-width: 900px;">
<h3 style="font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-primary);">Security Audit Report</h3>
<p style="color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem;">
Run <code style="background: rgba(255,255,255,0.05); padding: 0.2rem 0.5rem; border-radius: 4px; font-family: 'JetBrains Mono', monospace;">jadegate scan --audit</code> to get a detailed CT-style security report for all your MCP servers.
</p>
<img src="assets/demo_scan_audit.gif" alt="JadeGate Security Audit Report" style="width:100%; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 32px rgba(0,0,0,0.4);">
</div>
</section>
<section id="trust">
<div class="section-label">Trust Model</div>
<h2 class="section-title">TOFU + Ed25519 Trust</h2>
<p class="section-desc">
Trust On First Use — like SSH known_hosts.
First connection fingerprints the server. Subsequent connections verify identity.
Ed25519 certificates for cryptographic proof.
</p>
<div style="text-align:center; margin: 2.5rem auto 3rem; max-width: 800px;">
<img src="assets/trust_hierarchy.png" alt="JadeGate Trust Model" style="width:100%; height:auto; display:block; margin:0 auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06);">
</div>
<div class="trust-visual">
<span class="root">🔑 TOFU — Trust On First Use</span><br>
<span class="dim">│</span><br>
<span class="dim">├──</span> <span class="root">💠 First connection</span> <span class="dim">— fingerprint stored in local trust store</span><br>
<span class="dim">│</span><br>
<span class="dim">├──</span> <span class="sub">🔒 Subsequent calls</span> <span class="dim">— Ed25519 signature verified against stored fingerprint</span><br>
<span class="dim">│ ├──</span> ✅ Match → proceed<br>
<span class="dim">│ └──</span> ❌ Mismatch → circuit breaker triggered<br>
<span class="dim">│</span><br>
<span class="dim">└──</span> <span class="root">📋 jadegate scan</span> <span class="dim">— audit all servers, review trust decisions</span>
</div>
<div style="text-align:center; margin: 3rem auto 0; max-width: 900px;">
<h3 style="font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-primary);">Certificate Management</h3>
<p style="color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem;">
Every tool gets a security certificate with risk profile, trust score, and cryptographic signature. View all with <code style="background: rgba(255,255,255,0.05); padding: 0.2rem 0.5rem; border-radius: 4px; font-family: 'JetBrains Mono', monospace;">jadegate cert list</code>.
</p>
<img src="assets/demo_cert.gif" alt="JadeGate Certificate List" style="width:100%; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 32px rgba(0,0,0,0.4);">
</div>
</section>
<section id="compare">
<div class="section-label">Comparison</div>
<h2 class="section-title">Why JadeGate</h2>
<p class="section-desc">
MCP has no security layer. JadeGate adds one — transparently.
</p>
<div style="text-align:center; margin: 2.5rem auto 3rem; max-width: 900px;">
<img src="assets/mcp_vs_jadegate.png" alt="Raw MCP vs JadeGate Comparison" style="width:100%; height:auto; display:block; margin:0 auto; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06);">
</div>
<div style="overflow-x: auto;">
<table class="compare-table">
<thead>
<tr>
<th>Dimension</th>
<th>Raw MCP</th>
<th>JadeGate</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tool call policy</td>
<td>❌ None</td>
<td>✅ Per-tool allow/deny/ask</td>
</tr>
<tr>
<td>Call chain tracking</td>
<td>❌ None</td>
<td>✅ Dynamic DAG</td>
</tr>
<tr>
<td>Anomaly detection</td>
<td>❌ None</td>
<td>✅ Circuit breaker + rate limit</td>
</tr>
<tr>
<td>Server identity</td>
<td>❌ None</td>
<td>✅ TOFU + Ed25519</td>
</tr>
<tr>
<td>Security scan</td>
<td>❌ None</td>
<td>✅ Static analysis + risk score</td>
</tr>
<tr>
<td>Setup effort</td>
<td>N/A</td>
<td>pip install jadegate</td>
</tr>
<tr>
<td>Privacy</td>
<td>Varies</td>
<td>100% offline. Zero telemetry.</td>
</tr>
</tbody>
</table>
</div>
</section>
<!-- DAG Explorer Section -->
<section id="explorer" style="padding: 6rem 2rem; max-width: 1200px; margin: 0 auto;">
<h2 class="section-title" data-i18n="explorerTitle">Skill Explorer</h2>
<p class="section-desc" data-i18n="explorerDesc" style="margin-bottom: 3rem;">Search skills and visualize their execution DAGs in real time.</p>
<!-- Search Box -->
<div style="max-width: 600px; margin: 0 auto 2rem; position: relative;">
<input type="text" id="skill-search" placeholder="Search skills by name, tag, or description..."
style="width:100%;padding:0.85rem 1.2rem 0.85rem 3rem;background:var(--surface);border:1px solid var(--border);border-radius:12px;color:var(--text-primary);font-size:0.95rem;font-family:inherit;outline:none;transition:border-color 0.2s;"
onfocus="this.style.borderColor='var(--jade)'" onblur="this.style.borderColor='var(--border)'"
aria-label="Search skills">
<svg style="position:absolute;left:1rem;top:50%;transform:translateY(-50%);opacity:0.4;" width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>
</div>
<!-- Category Filters -->
<div id="skill-filters" style="display:flex;gap:0.5rem;justify-content:center;margin-bottom:2rem;flex-wrap:wrap;">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="mcp">MCP</button>
<button class="filter-btn" data-filter="tools">Tools</button>
<button class="filter-btn" data-filter="standalone">Standalone</button>
</div>
<!-- Results -->
<div id="skill-results" style="display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1rem;margin-bottom:2rem;"></div>
<div id="skill-count" style="text-align:center;color:var(--text-tertiary);font-size:0.8rem;margin-bottom:2rem;"></div>
<!-- DAG Viewer -->
<div id="dag-viewer" style="display:none;margin-top:2rem;">
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem;flex-wrap:wrap;gap:0.5rem;">
<h3 id="dag-title" style="font-size:1.1rem;font-weight:600;"></h3>
<button onclick="closeDagViewer()" style="background:var(--surface);border:1px solid var(--border);color:var(--text-secondary);padding:0.4rem 1rem;border-radius:8px;cursor:pointer;font-size:0.8rem;font-family:inherit;">✕ Close</button>
</div>
<div id="dag-meta" style="display:flex;gap:1rem;margin-bottom:1.5rem;flex-wrap:wrap;"></div>
<div id="dag-container" style="background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:2rem;min-height:200px;overflow-x:auto;"></div>
</div>
</section>
<style>
.filter-btn {
background: var(--surface);
border: 1px solid var(--border);
color: var(--text-secondary);
padding: 0.4rem 1rem;
border-radius: 980px;
cursor: pointer;
font-size: 0.8rem;
font-family: inherit;
transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--jade); color: var(--text-primary); }
.filter-btn.active { background: var(--jade-dim); border-color: var(--jade); color: var(--jade); }
.skill-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 16px;
padding: 1.5rem;
cursor: pointer;
transition: all 0.25s ease;
position: relative;
overflow: hidden;
}
.skill-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--jade-glow), transparent);
opacity: 0;
transition: opacity 0.25s;
}
.skill-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-2px); }
.skill-card:hover::before { opacity: 1; }
.skill-card-inner { position: relative; z-index: 1; }
.skill-card-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.4rem; }
.skill-card-desc { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.5; margin-bottom: 0.8rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.skill-card-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.skill-tag { background: var(--jade-dim); color: var(--jade); padding: 0.15rem 0.55rem; border-radius: 980px; font-size: 0.7rem; font-weight: 500; }
.skill-tag.cat { background: rgba(99,102,241,0.1); color: #818cf8; }
.dag-meta-chip { background: var(--surface); border: 1px solid var(--border); padding: 0.35rem 0.8rem; border-radius: 8px; font-size: 0.78rem; color: var(--text-secondary); font-family: 'JetBrains Mono', monospace; }
#dag-container svg { max-width: 100%; height: auto; }
#dag-container .node rect, #dag-container .node circle, #dag-container .node polygon { fill: var(--surface) !important; stroke: var(--jade) !important; }
#dag-container .edgePath path { stroke: var(--text-tertiary) !important; }
#dag-container .edgeLabel { background: var(--bg) !important; }
#dag-container text { fill: var(--text-primary) !important; font-family: 'JetBrains Mono', monospace !important; font-size: 12px !important; }
#dag-container .label { color: var(--text-primary) !important; }
</style>
<div class="cta-section">
<p class="poem" style="margin-bottom: 2rem;">春风不度玉门关</p>
<h2 class="section-title" style="margin-bottom: 1rem;">Pass the Gate. Trust the Jade.</h2>
<p class="section-desc" style="margin: 0 auto 3rem; text-align: center;">
Start verifying your AI agent skills today.
</p>
<div style="display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;">
<a href="https://github.com/JadeGate/jadegate" class="btn btn-primary">Get Started →</a>
<a href="https://pypi.org/project/jadegate/" class="btn btn-ghost">PyPI Package</a>
</div>
</div>
<footer>
<div>© 2026 JadeGate Project. BSL 1.1 Licensed.</div>
<div class="footer-links">
<a href="https://github.com/JadeGate">GitHub</a>
<a href="https://pypi.org/project/jadegate/">PyPI</a>
<a href="https://crates.io/crates/jadegate">crates.io</a>
</div>
</footer>
<script>
// Neural network animation
(function() {
const canvas = document.getElementById('neural-canvas');
if (!canvas) return;
const ctx = canvas.getContext('2d');
let nodes = [];
let edges = [];
let pulses = [];
function resize() {
canvas.width = canvas.parentElement.offsetWidth;
canvas.height = canvas.parentElement.offsetHeight;
initNodes();
}
function initNodes() {
nodes = [];
edges = [];
const count = Math.floor(canvas.width * canvas.height / 25000);
for (let i = 0; i < count; i++) {
nodes.push({
x: Math.random() * canvas.width,
y: Math.random() * canvas.height,
vx: (Math.random() - 0.5) * 0.3,
vy: (Math.random() - 0.5) * 0.3,
r: Math.random() * 2 + 1,
brightness: 0.1 + Math.random() * 0.2
});
}
}
function addPulse() {
if (nodes.length < 2) return;
const from = Math.floor(Math.random() * nodes.length);
let to = from;
let minDist = Infinity;
// Find nearest neighbor
nodes.forEach((n, i) => {
if (i === from) return;
const d = Math.hypot(n.x - nodes[from].x, n.y - nodes[from].y);
if (d < 150 && d < minDist) { minDist = d; to = i; }
});
if (to !== from) {
pulses.push({ from, to, progress: 0, speed: 0.02 + Math.random() * 0.02 });
}
}
function draw() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
// Draw edges
nodes.forEach((a, i) => {
nodes.forEach((b, j) => {
if (j <= i) return;
const d = Math.hypot(a.x - b.x, a.y - b.y);
if (d < 120) {
ctx.beginPath();
ctx.moveTo(a.x, a.y);
ctx.lineTo(b.x, b.y);
ctx.strokeStyle = `rgba(16, 185, 129, ${0.06 * (1 - d/120)})`;
ctx.lineWidth = 0.5;
ctx.stroke();
}
});
});
// Draw nodes
nodes.forEach(n => {
ctx.beginPath();
ctx.arc(n.x, n.y, n.r, 0, Math.PI * 2);
ctx.fillStyle = `rgba(16, 185, 129, ${n.brightness})`;
ctx.fill();
// Move
n.x += n.vx;
n.y += n.vy;
if (n.x < 0 || n.x > canvas.width) n.vx *= -1;
if (n.y < 0 || n.y > canvas.height) n.vy *= -1;
});
// Draw pulses (synapse activation)
pulses.forEach((p, i) => {
const a = nodes[p.from], b = nodes[p.to];
const x = a.x + (b.x - a.x) * p.progress;
const y = a.y + (b.y - a.y) * p.progress;
ctx.beginPath();
ctx.arc(x, y, 3, 0, Math.PI * 2);
ctx.fillStyle = `rgba(16, 185, 129, ${0.8 * (1 - p.progress)})`;
ctx.fill();
// Glow
ctx.beginPath();
ctx.arc(x, y, 8, 0, Math.PI * 2);
ctx.fillStyle = `rgba(16, 185, 129, ${0.2 * (1 - p.progress)})`;
ctx.fill();
// Brighten target node
if (p.progress > 0.8) {
nodes[p.to].brightness = Math.min(0.8, nodes[p.to].brightness + 0.05);
}
p.progress += p.speed;
});
// Decay brightness
nodes.forEach(n => { n.brightness = Math.max(0.1, n.brightness * 0.995); });
// Remove finished pulses
pulses = pulses.filter(p => p.progress < 1);
// Random new pulses
if (Math.random() < 0.08) addPulse();
requestAnimationFrame(draw);
}
resize();
window.addEventListener('resize', resize);
draw();
})();
// Scroll fade-in observer
const observer = new IntersectionObserver((entries) => {
entries.forEach(e => {
if (e.isIntersecting) {
e.target.classList.add('visible');
}
});
}, { threshold: 0.1 });
document.querySelectorAll('.fade-in').forEach(el => observer.observe(el));
// Verification demo animation
(function() {
const demo = document.getElementById('verify-demo');
if (!demo) return;
const lines = demo.querySelectorAll('.verify-line');
const demoObserver = new IntersectionObserver((entries) => {
entries.forEach(e => {
if (e.isIntersecting) {
lines.forEach(line => {
const delay = parseInt(line.dataset.delay) || 0;
setTimeout(() => line.classList.add('show'), delay);
});
demoObserver.unobserve(e.target);
}
});
}, { threshold: 0.3 });
demoObserver.observe(demo);
// Loop the animation
setInterval(() => {
lines.forEach(line => line.classList.remove('show'));
setTimeout(() => {
lines.forEach(line => {
const delay = parseInt(line.dataset.delay) || 0;
setTimeout(() => line.classList.add('show'), delay);
});
}, 500);
}, 8000);
})();
// Counter animation
document.querySelectorAll('[data-count]').forEach(el => {
const target = parseInt(el.dataset.count);
const observer = new IntersectionObserver((entries) => {
entries.forEach(e => {
if (e.isIntersecting) {
let current = 0;
const step = Math.ceil(target / 40);
const timer = setInterval(() => {
current += step;
if (current >= target) { current = target; clearInterval(timer); }
el.textContent = current;
}, 30);
observer.unobserve(e.target);
}
});
}, { threshold: 0.5 });
observer.observe(el);
});
</script>
<script>
// Simple i18n toggle
const translations = {
zh: {
heroTitle: "AI 技能的确定性安全协议",
heroDesc: "零信任。五层数学验证。框架无关。让每一个 AI 技能在执行前通过确定性安全审查。",
getStarted: "开始使用 →",
viewDocs: "查看文档",
secTitle: "五层验证,零信任",