@agent-link/server 0.1.123 → 0.1.125
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/web/landing.html +46 -39
package/package.json
CHANGED
package/web/landing.html
CHANGED
|
@@ -499,7 +499,6 @@
|
|
|
499
499
|
|
|
500
500
|
.device {
|
|
501
501
|
position: relative;
|
|
502
|
-
overflow: hidden;
|
|
503
502
|
transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
504
503
|
}
|
|
505
504
|
|
|
@@ -511,13 +510,7 @@
|
|
|
511
510
|
|
|
512
511
|
.device-ipad {
|
|
513
512
|
width: 100%;
|
|
514
|
-
border-radius: 20px;
|
|
515
513
|
z-index: 1;
|
|
516
|
-
box-shadow:
|
|
517
|
-
0 0 0 1px rgba(255,255,255,0.08),
|
|
518
|
-
0 40px 100px rgba(0,0,0,0.5),
|
|
519
|
-
0 15px 50px rgba(0,0,0,0.3),
|
|
520
|
-
0 0 80px rgba(59,130,246,0.08);
|
|
521
514
|
transform: rotate(-1deg);
|
|
522
515
|
}
|
|
523
516
|
|
|
@@ -525,17 +518,19 @@
|
|
|
525
518
|
transform: rotate(-1deg) translateY(-8px);
|
|
526
519
|
}
|
|
527
520
|
|
|
521
|
+
.device-ipad img {
|
|
522
|
+
border-radius: 4.2%;
|
|
523
|
+
box-shadow:
|
|
524
|
+
0 40px 100px rgba(0,0,0,0.5),
|
|
525
|
+
0 15px 50px rgba(0,0,0,0.3),
|
|
526
|
+
0 0 80px rgba(59,130,246,0.08);
|
|
527
|
+
}
|
|
528
|
+
|
|
528
529
|
.device-iphone {
|
|
529
530
|
width: 90%;
|
|
530
|
-
border-radius: 28px;
|
|
531
531
|
z-index: 2;
|
|
532
532
|
justify-self: center;
|
|
533
533
|
align-self: center;
|
|
534
|
-
box-shadow:
|
|
535
|
-
0 0 0 1px rgba(255,255,255,0.1),
|
|
536
|
-
0 45px 100px rgba(0,0,0,0.55),
|
|
537
|
-
0 15px 50px rgba(0,0,0,0.35),
|
|
538
|
-
0 0 80px rgba(245,158,11,0.08);
|
|
539
534
|
transform: rotate(2deg);
|
|
540
535
|
}
|
|
541
536
|
|
|
@@ -543,6 +538,14 @@
|
|
|
543
538
|
transform: rotate(2deg) translateY(-8px);
|
|
544
539
|
}
|
|
545
540
|
|
|
541
|
+
.device-iphone img {
|
|
542
|
+
border-radius: 12%;
|
|
543
|
+
box-shadow:
|
|
544
|
+
0 45px 100px rgba(0,0,0,0.55),
|
|
545
|
+
0 15px 50px rgba(0,0,0,0.35),
|
|
546
|
+
0 0 80px rgba(245,158,11,0.08);
|
|
547
|
+
}
|
|
548
|
+
|
|
546
549
|
/* ── Divider ── */
|
|
547
550
|
.section-divider {
|
|
548
551
|
max-width: 200px;
|
|
@@ -770,7 +773,7 @@
|
|
|
770
773
|
top: 48px;
|
|
771
774
|
bottom: 48px;
|
|
772
775
|
width: 1px;
|
|
773
|
-
background: linear-gradient(180deg, var(--accent), var(--
|
|
776
|
+
background: linear-gradient(180deg, var(--accent), var(--cyan), var(--green));
|
|
774
777
|
opacity: 0.3;
|
|
775
778
|
}
|
|
776
779
|
|
|
@@ -797,9 +800,8 @@
|
|
|
797
800
|
}
|
|
798
801
|
|
|
799
802
|
.workflow-step:nth-child(1) .step-marker { border-color: rgba(59,130,246,0.3); }
|
|
800
|
-
.workflow-step:nth-child(2) .step-marker { border-color: rgba(
|
|
801
|
-
.workflow-step:nth-child(3) .step-marker { border-color: rgba(
|
|
802
|
-
.workflow-step:nth-child(4) .step-marker { border-color: rgba(52,211,153,0.3); }
|
|
803
|
+
.workflow-step:nth-child(2) .step-marker { border-color: rgba(34,211,238,0.3); }
|
|
804
|
+
.workflow-step:nth-child(3) .step-marker { border-color: rgba(52,211,153,0.3); }
|
|
803
805
|
|
|
804
806
|
.step-content h3 {
|
|
805
807
|
font-size: 1rem;
|
|
@@ -874,7 +876,12 @@
|
|
|
874
876
|
.cta-group { flex-direction: column; }
|
|
875
877
|
.nav-links { gap: 1rem; }
|
|
876
878
|
.nav-links a:not(.nav-gh) { display: none; }
|
|
877
|
-
.encrypt-visual { flex-wrap: wrap; justify-content: center; }
|
|
879
|
+
.encrypt-visual { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
|
|
880
|
+
.encrypt-visual .encrypt-arrow { display: none; }
|
|
881
|
+
.encrypt-block { font-size: 0.65rem; }
|
|
882
|
+
.device-flow { flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
|
|
883
|
+
.device-flow .flow-line { display: none; }
|
|
884
|
+
.device-pill { font-size: 0.7rem; }
|
|
878
885
|
}
|
|
879
886
|
|
|
880
887
|
@media (max-width: 640px) {
|
|
@@ -902,10 +909,17 @@
|
|
|
902
909
|
align-self: auto;
|
|
903
910
|
}
|
|
904
911
|
.device-iphone:hover { transform: translateY(-3%); }
|
|
905
|
-
.terminal { margin: 0 1rem; }
|
|
912
|
+
.terminal { margin: 0 1rem; max-width: calc(100vw - 2rem); }
|
|
913
|
+
.terminal-body { padding: 1rem; font-size: 0.75rem; overflow-x: auto; }
|
|
914
|
+
.terminal-line { gap: 0.4rem; white-space: nowrap; }
|
|
915
|
+
.terminal-output { font-size: 0.7rem; padding-left: 0.9rem; }
|
|
906
916
|
.section-divider { margin: 4rem auto; }
|
|
907
917
|
.bento { padding: 0 1rem; margin: 4rem auto; }
|
|
908
|
-
.bento-card { padding: 1.5rem; border-radius: 16px; }
|
|
918
|
+
.bento-card { padding: 1.5rem; border-radius: 16px; overflow: visible; }
|
|
919
|
+
.encrypt-visual { gap: 0.4rem; }
|
|
920
|
+
.encrypt-block { padding: 0.3rem 0.5rem; font-size: 0.6rem; }
|
|
921
|
+
.device-flow { gap: 0.5rem; }
|
|
922
|
+
.device-pill { padding: 0.4rem 0.6rem; font-size: 0.65rem; }
|
|
909
923
|
.workflow-step { gap: 1rem; }
|
|
910
924
|
.step-marker { width: 40px; height: 40px; border-radius: 12px; font-size: 1rem; }
|
|
911
925
|
.workflow-steps::before { left: 19px; }
|
|
@@ -973,13 +987,13 @@
|
|
|
973
987
|
Open Source · End-to-End Encrypted
|
|
974
988
|
</div>
|
|
975
989
|
<h1>
|
|
976
|
-
<span class="line">
|
|
977
|
-
<span class="line"><em>
|
|
990
|
+
<span class="line">Control Claude Code.</span>
|
|
991
|
+
<span class="line"><em>From anywhere.</em></span>
|
|
978
992
|
</h1>
|
|
979
993
|
<p class="hero-sub">
|
|
980
994
|
Start Claude Code on your machine. Walk away.
|
|
981
|
-
<strong>Pick it up from your phone,
|
|
982
|
-
|
|
995
|
+
<strong>Pick it up from your phone, tablet, or any browser</strong> —
|
|
996
|
+
end-to-end encrypted, zero configuration.
|
|
983
997
|
</p>
|
|
984
998
|
<div class="cta-group">
|
|
985
999
|
<button class="cta-primary" onclick="copyInstall()">
|
|
@@ -1041,7 +1055,7 @@
|
|
|
1041
1055
|
<p>
|
|
1042
1056
|
AgentLink turns Claude Code into a truly portable experience.
|
|
1043
1057
|
One command, one URL — your AI assistant is accessible from any device,
|
|
1044
|
-
with
|
|
1058
|
+
with real encryption and zero accounts required.
|
|
1045
1059
|
</p>
|
|
1046
1060
|
</section>
|
|
1047
1061
|
|
|
@@ -1125,7 +1139,7 @@
|
|
|
1125
1139
|
</div>
|
|
1126
1140
|
</div>
|
|
1127
1141
|
<h3>Self-Hostable</h3>
|
|
1128
|
-
<p>Run your own relay.
|
|
1142
|
+
<p>Run your own relay server. Your infrastructure, your rules, your data.</p>
|
|
1129
1143
|
</div>
|
|
1130
1144
|
|
|
1131
1145
|
<!-- Multi Session -->
|
|
@@ -1156,7 +1170,7 @@
|
|
|
1156
1170
|
<!-- How It Works -->
|
|
1157
1171
|
<section class="workflow reveal" id="how-it-works">
|
|
1158
1172
|
<div class="workflow-label">How It Works</div>
|
|
1159
|
-
<h2>
|
|
1173
|
+
<h2>Three steps. That's it.</h2>
|
|
1160
1174
|
<div class="workflow-steps">
|
|
1161
1175
|
<div class="workflow-step">
|
|
1162
1176
|
<div class="step-marker">01</div>
|
|
@@ -1168,22 +1182,15 @@
|
|
|
1168
1182
|
<div class="workflow-step">
|
|
1169
1183
|
<div class="step-marker">02</div>
|
|
1170
1184
|
<div class="step-content">
|
|
1171
|
-
<h3>
|
|
1172
|
-
<p>
|
|
1185
|
+
<h3>Open the URL, anywhere</h3>
|
|
1186
|
+
<p>Phone, tablet, a friend's laptop — any browser works. Traffic is end-to-end encrypted automatically; the relay never sees your data.</p>
|
|
1173
1187
|
</div>
|
|
1174
1188
|
</div>
|
|
1175
1189
|
<div class="workflow-step">
|
|
1176
1190
|
<div class="step-marker">03</div>
|
|
1177
1191
|
<div class="step-content">
|
|
1178
|
-
<h3>
|
|
1179
|
-
<p>
|
|
1180
|
-
</div>
|
|
1181
|
-
</div>
|
|
1182
|
-
<div class="workflow-step">
|
|
1183
|
-
<div class="step-marker">04</div>
|
|
1184
|
-
<div class="step-content">
|
|
1185
|
-
<h3>Resume any session</h3>
|
|
1186
|
-
<p>Full history from Claude Code's own logs. Resume conversations, switch projects, change working directories — all from the browser.</p>
|
|
1192
|
+
<h3>Run sessions in parallel, switch freely</h3>
|
|
1193
|
+
<p>Multiple conversations, multiple projects — all running at once. Jump between them from any device, with full history preserved.</p>
|
|
1187
1194
|
</div>
|
|
1188
1195
|
</div>
|
|
1189
1196
|
</div>
|
|
@@ -1196,7 +1203,7 @@
|
|
|
1196
1203
|
<span class="footer-brand">AgentLink</span>
|
|
1197
1204
|
<a href="https://github.com/yilee/agentlink" rel="noopener">GitHub</a>
|
|
1198
1205
|
</div>
|
|
1199
|
-
<p>Open source. Free forever.</p>
|
|
1206
|
+
<p>Open source. Free forever. Built for developers who ship from anywhere.</p>
|
|
1200
1207
|
</footer>
|
|
1201
1208
|
|
|
1202
1209
|
</div>
|