@agent-link/server 0.1.3 → 0.1.5
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/favicon.svg +4 -0
- package/web/index.html +1 -0
- package/web/landing.html +4 -71
package/package.json
CHANGED
package/web/favicon.svg
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
|
2
|
+
<rect width="32" height="32" rx="6" fill="#6c63ff"/>
|
|
3
|
+
<text x="16" y="23" text-anchor="middle" font-family="-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif" font-size="22" font-weight="800" fill="#fff">A</text>
|
|
4
|
+
</svg>
|
package/web/index.html
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>AgentLink</title>
|
|
7
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
7
8
|
<link rel="stylesheet" href="/style.css">
|
|
8
9
|
<link id="hljs-theme" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark.min.css">
|
|
9
10
|
<script>
|
package/web/landing.html
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>AgentLink — Claude Code in Your Browser</title>
|
|
7
|
+
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
7
8
|
<style>
|
|
8
9
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
9
10
|
|
|
@@ -84,14 +85,6 @@
|
|
|
84
85
|
margin: 0 auto 1.5rem;
|
|
85
86
|
}
|
|
86
87
|
|
|
87
|
-
.hero-trust {
|
|
88
|
-
font-size: 0.95rem !important;
|
|
89
|
-
color: var(--green) !important;
|
|
90
|
-
font-weight: 500;
|
|
91
|
-
margin-bottom: 3rem !important;
|
|
92
|
-
letter-spacing: 0.01em;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
88
|
/* ── Install box ── */
|
|
96
89
|
.install {
|
|
97
90
|
background: var(--surface);
|
|
@@ -218,43 +211,6 @@
|
|
|
218
211
|
margin-bottom: 2rem;
|
|
219
212
|
}
|
|
220
213
|
|
|
221
|
-
.diagram {
|
|
222
|
-
display: flex;
|
|
223
|
-
align-items: center;
|
|
224
|
-
justify-content: center;
|
|
225
|
-
gap: 0;
|
|
226
|
-
flex-wrap: wrap;
|
|
227
|
-
margin-bottom: 1.5rem;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
.diagram-node {
|
|
231
|
-
background: var(--surface);
|
|
232
|
-
border: 1px solid var(--border);
|
|
233
|
-
border-radius: 10px;
|
|
234
|
-
padding: 1rem 1.5rem;
|
|
235
|
-
text-align: center;
|
|
236
|
-
min-width: 140px;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.diagram-node .node-label {
|
|
240
|
-
font-size: 0.75rem;
|
|
241
|
-
color: var(--text-dim);
|
|
242
|
-
text-transform: uppercase;
|
|
243
|
-
letter-spacing: 0.05em;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
.diagram-node .node-name {
|
|
247
|
-
font-weight: 700;
|
|
248
|
-
font-size: 1rem;
|
|
249
|
-
margin-top: 0.25rem;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.diagram-arrow {
|
|
253
|
-
color: var(--accent);
|
|
254
|
-
font-size: 1.5rem;
|
|
255
|
-
padding: 0 0.5rem;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
214
|
.how p {
|
|
259
215
|
color: var(--text-dim);
|
|
260
216
|
font-size: 0.95rem;
|
|
@@ -275,8 +231,6 @@
|
|
|
275
231
|
@media (max-width: 640px) {
|
|
276
232
|
.hero { padding: 4rem 1.5rem 3rem; }
|
|
277
233
|
.install { padding: 1.5rem; margin: 0 1rem 3rem; }
|
|
278
|
-
.diagram { flex-direction: column; }
|
|
279
|
-
.diagram-arrow { transform: rotate(90deg); padding: 0.25rem 0; }
|
|
280
234
|
}
|
|
281
235
|
</style>
|
|
282
236
|
</head>
|
|
@@ -291,8 +245,7 @@
|
|
|
291
245
|
|
|
292
246
|
<section class="hero">
|
|
293
247
|
<h1>Claude Code,<br><em>in your browser</em></h1>
|
|
294
|
-
<p>Run Claude Code on your machine, use it from any browser
|
|
295
|
-
<p class="hero-trust">End-to-end encrypted. The server is a relay — it never sees, stores, or logs your data.</p>
|
|
248
|
+
<p>Run Claude Code on your machine, use it from any browser.</p>
|
|
296
249
|
</section>
|
|
297
250
|
|
|
298
251
|
<section class="install">
|
|
@@ -307,11 +260,12 @@
|
|
|
307
260
|
<div class="install-step">
|
|
308
261
|
<div class="step-num">2</div>
|
|
309
262
|
<div class="install-cmd" onclick="copyCmd(this)">
|
|
310
|
-
agentlink-client start
|
|
263
|
+
agentlink-client start -D
|
|
311
264
|
<span class="copy-hint">click to copy</span>
|
|
312
265
|
</div>
|
|
313
266
|
</div>
|
|
314
267
|
<div class="install-note">Open the URL it prints. That's it.</div>
|
|
268
|
+
<div class="install-note" style="margin-top:0.25rem">Optional: <code style="color:var(--green);font-size:0.8rem">agentlink-client service install</code> to auto-start on boot.</div>
|
|
315
269
|
</section>
|
|
316
270
|
|
|
317
271
|
<section class="features">
|
|
@@ -349,27 +303,6 @@
|
|
|
349
303
|
|
|
350
304
|
<section class="how">
|
|
351
305
|
<h2>How it works</h2>
|
|
352
|
-
<div class="diagram">
|
|
353
|
-
<div class="diagram-node">
|
|
354
|
-
<div class="node-label">Your browser</div>
|
|
355
|
-
<div class="node-name">Web UI</div>
|
|
356
|
-
</div>
|
|
357
|
-
<div class="diagram-arrow">↔</div>
|
|
358
|
-
<div class="diagram-node">
|
|
359
|
-
<div class="node-label">Encrypted relay</div>
|
|
360
|
-
<div class="node-name">Server</div>
|
|
361
|
-
</div>
|
|
362
|
-
<div class="diagram-arrow">↔</div>
|
|
363
|
-
<div class="diagram-node">
|
|
364
|
-
<div class="node-label">Your machine</div>
|
|
365
|
-
<div class="node-name">Agent</div>
|
|
366
|
-
</div>
|
|
367
|
-
<div class="diagram-arrow">↔</div>
|
|
368
|
-
<div class="diagram-node">
|
|
369
|
-
<div class="node-label">Local CLI</div>
|
|
370
|
-
<div class="node-name">Claude Code</div>
|
|
371
|
-
</div>
|
|
372
|
-
</div>
|
|
373
306
|
<p>The agent on your machine spawns Claude Code, streams output through the relay server to your browser, and sends your messages back. All tool execution happens locally. <strong>All traffic is end-to-end encrypted — the server is a stateless relay that never decrypts, stores, or logs your data.</strong></p>
|
|
374
307
|
</section>
|
|
375
308
|
|