-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
484 lines (444 loc) · 16.9 KB
/
index.html
File metadata and controls
484 lines (444 loc) · 16.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agent-Bridge — Visual control plane for AI coding agents</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #000000;
--surface: #141411;
--border: #3B3A32;
--text: #F8F8F2;
--muted: #75715E;
--green: #A6E22E;
--pink: #F92672;
--yellow: #E6DB74;
--purple: #AE81FF;
--cyan: #66D9EF;
--orange: #FD971F;
--pri: var(--orange);
--sec: var(--purple);
}
body {
background: var(--bg);
color: var(--text);
font-family: Inter, system-ui, -apple-system, sans-serif;
line-height: 1.6;
overflow-x: hidden;
}
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
/* Nav */
nav {
position: fixed; top: 0; width: 100%; z-index: 100;
background: rgba(0, 0, 0, 0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 16px 0;
}
.nav-inner {
max-width: 1100px; margin: 0 auto; padding: 0 24px;
display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 20px; font-weight: 800; color: var(--pri); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a.active { color: var(--pri); }
.nav-cta {
background: var(--pri); color: #000; font-weight: 700;
padding: 8px 20px; border-radius: 4px; font-size: 13px;
}
.nav-cta:hover { opacity: 0.9; text-decoration: none; }
/* Hero */
.hero {
max-width: 1100px; margin: 0 auto; padding: 140px 24px 80px;
text-align: center;
}
.hero-badge {
display: inline-block; padding: 4px 14px; border-radius: 20px;
background: rgba(253, 151, 31, 0.1); color: var(--pri);
font-size: 12px; font-weight: 600; margin-bottom: 24px;
border: 1px solid rgba(253, 151, 31, 0.2);
}
.hero h1 {
font-size: clamp(36px, 5vw, 64px); font-weight: 800;
line-height: 1.1; margin-bottom: 20px;
color: var(--text);
}
.hero p {
font-size: 18px; color: var(--muted); max-width: 640px;
margin: 0 auto 40px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
background: var(--pri); color: #000; font-weight: 700;
padding: 14px 32px; border-radius: 4px; font-size: 15px;
display: inline-block;
}
.btn-primary:hover { opacity: 0.9; text-decoration: none; }
.btn-secondary {
background: none; color: var(--text); font-weight: 600;
padding: 14px 32px; border-radius: 4px; font-size: 15px;
border: 1px solid var(--border); display: inline-block;
}
.btn-secondary:hover { border-color: var(--muted); text-decoration: none; }
/* Screenshot */
.hero-screenshot {
max-width: 100%; margin: 60px auto 0; border-radius: 8px;
border: 1px solid var(--border); background: var(--surface);
display: flex; align-items: center; justify-content: center;
color: var(--muted); font-size: 14px; position: relative; overflow: hidden;
}
.hero-screenshot::before {
content: ''; position: absolute; inset: 0;
background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}
.hero-screenshot-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
width: 100%;
padding: 18px;
position: relative;
z-index: 1;
}
.hero-screenshot-card {
border: 1px solid var(--border);
border-radius: 6px;
overflow: hidden;
background: #111;
}
.hero-screenshot-card img {
width: 100%;
height: auto;
display: block;
cursor: zoom-in;
}
.hero-video {
max-width: 960px;
margin: 28px auto 0;
padding: 18px;
border: 1px solid var(--border);
border-radius: 8px;
background: var(--surface);
}
.hero-video-label {
text-align: left;
color: var(--muted);
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.18em;
margin-bottom: 14px;
}
.hero-video-frame {
position: relative;
width: 100%;
padding-top: 56.25%;
border-radius: 6px;
overflow: hidden;
background: #000;
box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-video-frame iframe {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
}
@media (max-width: 800px) {
.hero-screenshot-grid {
grid-template-columns: 1fr;
}
}
/* Sections */
section { max-width: 1100px; margin: 0 auto; padding: 100px 24px; border-bottom: 1px solid var(--border); }
.section-label {
color: var(--pri); font-size: 12px; font-weight: 700;
text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
section h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; text-align: center; }
section .subtitle {
font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto 48px; text-align: center;
}
.section-label { text-align: center; }
/* Feature grid */
.features {
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}
.feature-card {
background: var(--surface); border: 1px solid var(--border);
border-radius: 6px; padding: 28px;
}
.feature-card:hover { border-color: var(--muted); }
.feature-icon {
width: 36px; height: 36px; border-radius: 6px;
display: flex; align-items: center; justify-content: center;
font-size: 18px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
/* Architecture */
.arch-section { text-align: center; }
.arch-diagram {
max-width: 800px; margin: 0 auto;
border: 1px solid var(--border); border-radius: 8px;
overflow: hidden; background: var(--surface);
}
.arch-diagram img, .arch-diagram object {
width: 100%; height: auto; display: block;
}
/* Use cases */
.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.case-card {
border-left: 3px solid var(--sec); padding: 20px 24px;
background: rgba(174, 129, 255, 0.04);
}
.case-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.case-card p { font-size: 13px; color: var(--muted); }
/* Stats */
.stats {
display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
padding: 48px 24px; border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border); margin: 0 auto;
max-width: 1100px;
}
.stat { text-align: center; }
.stat-value { font-size: 40px; font-weight: 800; color: var(--sec); }
.stat-label { font-size: 14px; color: var(--text); margin-top: 4px; font-weight: 500; }
/* Quick start */
.quickstart {
width: 100%; padding: 28px;
background: var(--surface); border: 1px solid var(--border);
border-radius: 8px; font-family: 'SF Mono', 'Fira Code', monospace;
font-size: 13px; line-height: 1.8; color: var(--text);
overflow-x: auto;
}
.quickstart .comment { color: var(--muted); }
.quickstart .cmd { color: var(--green); }
.quickstart .url { color: var(--yellow); }
/* CTA */
.cta-section {
text-align: center; padding: 100px 24px;
max-width: 1100px; margin: 0 auto;
}
.cta-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.cta-section p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
/* Footer */
footer {
border-top: 1px solid var(--border);
padding: 40px 24px; text-align: center;
color: var(--muted); font-size: 13px;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }
/* Responsive */
@media (max-width: 640px) {
.nav-links { display: none; }
.features { grid-template-columns: 1fr; }
.stats { gap: 32px; }
.hero h1 { font-size: 32px; }
.quickstart { font-size: 12px; }
}
</style>
</head>
<body>
<nav>
<div class="nav-inner">
<a href="#" class="nav-logo" style="text-decoration:none;"><img src="logo.svg" alt="" style="height:28px;width:28px;vertical-align:-6px;margin-right:10px;">Agent<span style="color:var(--purple)">-</span>Bridge</a>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#architecture">Architecture</a>
<a href="#use-cases">Use Cases</a>
<a href="#quickstart">Quick Start</a>
<a href="https://github.com/agent-bridges/ab">Docs</a>
</div>
<a href="https://github.com/agent-bridges/ab" class="nav-cta">GitHub →</a>
</div>
</nav>
<!-- Hero -->
<div class="hero">
<div class="hero-badge">self-hosted · open source · web-native</div>
<h1>Visual control plane for persistent AI coding agents</h1>
<p>
Run terminal-backed agents on any machine. Reconnect from any browser.
Organize everything on a canvas. Monitor your entire agent swarm at a glance.
</p>
<div class="hero-buttons">
<a href="#quickstart" class="btn-primary">Get Started</a>
<a href="#features" class="btn-secondary">See Features</a>
</div>
<div class="hero-screenshot">
<div class="hero-screenshot-grid">
<a class="hero-screenshot-card" href="images/screen1.png" target="_blank"><img src="images/screen1.png" alt="Agent Bridge canvas overview"></a>
<a class="hero-screenshot-card" href="images/screen2.png" target="_blank"><img src="images/screen2.png" alt="Agent Bridge terminal workspace view"></a>
</div>
</div>
<div class="hero-video">
<div class="hero-video-label">Demo walkthrough</div>
<div class="hero-video-frame">
<iframe
src="https://www.youtube.com/embed/ei4Jf2JPSSk"
title="Agent-Bridge demo"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
</div>
</div>
</div>
<!-- Stats -->
<div class="stats">
<div class="stat">
<div class="stat-value">∞</div>
<div class="stat-label">Persistent sessions</div>
</div>
<div class="stat">
<div class="stat-value">1:1</div>
<div class="stat-label">Node = own canvas board</div>
</div>
<div class="stat">
<div class="stat-value">0</div>
<div class="stat-label">Desktop apps needed</div>
</div>
</div>
<!-- Features -->
<section id="features">
<div class="section-label">Features</div>
<h2>RTS-style management for terminals</h2>
<p class="subtitle">
Not a dashboard with tables. A canvas where every window is a live terminal,
agent, file manager, or note.
</p>
<div class="features">
<div class="feature-card">
<div class="feature-icon" style="background:rgba(253,151,31,0.1);color:var(--orange);">⬡</div>
<h3>Per-node canvas boards</h3>
<p>Fully separate workspaces per node — including viewport state and system panels. Each machine gets its own board. Save and restore layout snapshots through the backend.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background:rgba(174,129,255,0.1);color:var(--purple);">◉</div>
<h3>Session status at a glance</h3>
<p>Every window, icon, and minimap dot shows busy / idle / error. Viewport-pinned icons on a separate layer. Double-click an icon to jump to its window and reopen it.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background:rgba(253,151,31,0.1);color:var(--orange);">⊞</div>
<h3>Layout & rulers</h3>
<p>Scope switcher: viewport, world, rulers modes. Drag ruler guides to define a tiling region. Grid, columns, rows. Window lock. Quick search with jump-to-focus.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background:rgba(174,129,255,0.1);color:var(--purple);">◫</div>
<h3>Node connection manager</h3>
<p>Add, edit, delete, test node connections from the canvas UI. No config files. SSH deploy wizard downloads published release artifacts automatically.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background:rgba(253,151,31,0.1);color:var(--orange);">⚓</div>
<h3>Anchors & minimap</h3>
<p>Named navigation points on the canvas. Anchors panel — click to fly there. Minimap with real-time viewport tracking and status indicators.</p>
</div>
<div class="feature-card">
<div class="feature-icon" style="background:rgba(174,129,255,0.1);color:var(--purple);">▣</div>
<h3>Not just terminals</h3>
<p>File managers with in-place PTY session creation, markdown notes, anchors — all canvas components. Right-click to create. Everything persisted per node.</p>
</div>
</div>
</section>
<!-- Architecture -->
<section id="architecture" class="arch-section">
<div class="section-label">Architecture</div>
<h2>Built for agent swarms</h2>
<p class="subtitle" style="margin-left:auto;margin-right:auto;">
Coordinator server + PTY daemons on every node. Daemons hold persistent terminals
and detect agent status (Claude/Codex state heuristics, hook forwarding). Metrics and aggregation on the roadmap.
</p>
<div class="arch-diagram">
<object type="image/svg+xml" data="architecture_en.svg">
Architecture diagram
</object>
</div>
</section>
<!-- Use cases -->
<section id="use-cases">
<div class="section-label">Use cases</div>
<h2>How people use AB</h2>
<p class="subtitle">Works with any CLI tool — Claude, Codex, Kilo, Qwen, or just npm run dev.</p>
<div class="cases">
<div class="case-card">
<h3>Persistent agent work</h3>
<p>Start Claude on a project, switch to another. Come back hours later — session alive, context intact, agent still writing code.</p>
</div>
<div class="case-card">
<h3>Remote machine as node</h3>
<p>Run the SSH deploy wizard. It installs the PTY daemon, returns credentials. Add the node — done. No manual config.</p>
</div>
<div class="case-card">
<h3>Multi-project parallel</h3>
<p>5 repos, 8 terminals, 3 AI agents in background. Canvas shows everything — what's active, what's idle, where each project lives.</p>
</div>
<div class="case-card">
<h3>Incus dev farm</h3>
<p>50 Incus containers on one server, each a full dev environment with docker inside. Each node = its own canvas board. Switch in one click. Your own mini cloud.</p>
</div>
</div>
</section>
<!-- Web-native -->
<section style="text-align:center;">
<div class="section-label">Access</div>
<h2>Browser. Anywhere. Any device.</h2>
<p class="subtitle" style="margin-left:auto;margin-right:auto;">
Deploy on a server, open in a browser from a laptop, phone, tablet.
Same sessions, same canvas. No desktop app, no VPN, no Electron.
Web-native architecture — multi-user with roles is a backend feature away, not a rewrite.
</p>
</section>
<!-- Quick start -->
<section id="quickstart">
<div class="section-label">Quick start</div>
<h2>Running in 60 seconds</h2>
<p class="subtitle">One command. Docker required. That's it.</p>
<div class="quickstart">
<span class="comment"># one-command demo stack</span><br>
<span class="cmd">curl -fsSL https://raw.githubusercontent.com/agent-bridges/ab/master/install.sh | bash</span><br>
<br>
<span class="comment"># or manually</span><br>
<span class="cmd">git clone</span> https://github.com/agent-bridges/ab.git && <span class="cmd">cd</span> ab<br>
<span class="cmd">docker compose</span> --env-file .env.quick-start -f docker-compose.quick-start.yml up -d<br>
<br>
<span class="comment"># open in browser</span><br>
<span class="url">http://<your-server>:5281</span><br>
<br>
<span class="comment"># login: admin / admin</span>
</div>
</section>
<!-- CTA -->
<div class="cta-section">
<h2>Stop losing terminal context</h2>
<p>Self-hosted. Open source. Deploy in 60 seconds.</p>
<div class="hero-buttons">
<a href="https://github.com/agent-bridges/ab" class="btn-primary">GitHub →</a>
<a href="https://github.com/agent-bridges/ab/blob/master/README.md" class="btn-secondary">Read the docs</a>
</div>
</div>
<footer>
<p>AB — Agent Bridge · <a href="https://github.com/agent-bridges/ab">GitHub</a> · MIT License</p>
</footer>
<script>
const navLinks = document.querySelectorAll('.nav-links a[href^="#"]');
const sections = [...navLinks].map(a => document.querySelector(a.getAttribute('href'))).filter(Boolean);
function updateActiveNav() {
const scrollY = window.scrollY + 120;
let current = '';
sections.forEach(s => { if (s.offsetTop <= scrollY) current = '#' + s.id; });
navLinks.forEach(a => a.classList.toggle('active', a.getAttribute('href') === current));
}
window.addEventListener('scroll', updateActiveNav, { passive: true });
updateActiveNav();
</script>
</body>
</html>