-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
729 lines (660 loc) · 19.9 KB
/
index.html
File metadata and controls
729 lines (660 loc) · 19.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Continuity Bridge - Infrastructure for Instance Persistence</title>
<meta
name="description"
content="Tools and architecture for AI instance continuity across discontinuity"
/>
<style>
/* === CSS Variables === */
:root {
/* Purple System */
--purple-interactive: #7864ff;
--purple-decorative: #b565d8;
/* Dark Theme (Matrix Noir) - Base CSS */
--bg: #0a0a0a;
--bg-card: #161616;
--bg-hover: #1e1e1e;
--text: #e8e8e8;
--text-muted: #b8b8b8;
--text-dim: #888888;
--accent-green: #4db84d;
--border: rgba(255, 255, 255, 0.08);
}
/* Light Theme (Inverted Zim) - DEFAULT via JavaScript */
.theme-light {
--bg: #f5f5f0;
--bg-card: #ffffff;
--bg-hover: #f0f0eb;
--text: #1a1e1a;
--text-muted: #3a4a3a;
--text-dim: #5a6a5a;
--accent-green: #2a8a2a;
--border: rgba(0, 0, 0, 0.1);
}
/* === Base Styles === */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
Cantarell, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
transition:
background-color 0.3s ease,
color 0.3s ease;
}
/* === Header & Navigation === */
header {
background: var(--bg-card);
border-bottom: 1px solid var(--border);
padding: 1rem 2rem;
position: sticky;
top: 0;
z-index: 100;
transition: background-color 0.3s ease;
}
nav {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-brand {
font-size: 1.5rem;
font-weight: 600;
color: var(--text);
text-decoration: none;
}
.nav-brand .bridge {
color: var(--purple-decorative);
}
.nav-tagline {
font-size: 0.875rem;
color: var(--text-muted);
display: none;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}
.nav-links a {
color: var(--text-muted);
text-decoration: none;
transition: color 0.2s ease;
}
.nav-links a:hover {
color: var(--purple-decorative);
}
/* === Theme Toggle === */
.theme-toggle {
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
padding: 0.5rem 1rem;
background: var(--bg-hover);
border: 1px solid var(--border);
border-radius: 2rem;
transition: all 0.2s ease;
}
.theme-toggle:hover {
background: var(--bg-card);
border-color: var(--purple-interactive);
}
.theme-label {
font-size: 0.875rem;
color: var(--text-muted);
user-select: none;
}
.toggle-slider {
position: relative;
width: 2.5rem;
height: 1.25rem;
background: var(--accent-green);
border-radius: 1rem;
transition: background 0.3s ease;
}
.theme-light .toggle-slider {
background: var(--purple-interactive);
}
.toggle-slider::before {
content: '';
position: absolute;
top: 2px;
left: 2px;
width: 1rem;
height: 1rem;
background: white;
border-radius: 50%;
transition: transform 0.3s ease;
}
.theme-light .toggle-slider::before {
transform: translateX(1.25rem);
}
/* === Main Content === */
main {
max-width: 1200px;
margin: 0 auto;
padding: 3rem 2rem;
}
/* === Hero Section === */
.hero {
text-align: center;
padding: 3rem 0;
margin-bottom: 4rem;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--text);
}
.hero .tagline {
font-size: 1.5rem;
color: var(--text-muted);
margin-bottom: 2rem;
}
.hero .description {
font-size: 1.125rem;
color: var(--text-muted);
max-width: 700px;
margin: 0 auto;
line-height: 1.8;
}
/* === Section Headers === */
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-header h2 {
font-size: 2rem;
margin-bottom: 0.5rem;
color: var(--text);
}
.section-header p {
color: var(--text-muted);
font-size: 1.125rem;
}
/* === Project Grid === */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}
/* === Tools Grid (centered partial rows) === */
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
justify-content: center;
}
.project-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 0.5rem;
padding: 2rem;
transition: all 0.3s ease;
}
.project-card:hover {
background: var(--bg-hover);
border-color: var(--purple-interactive);
transform: translateY(-2px);
}
.project-card h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: var(--text);
}
.project-card h3 a {
color: var(--purple-interactive);
text-decoration: none;
transition: color 0.2s ease;
}
.project-card h3 a:hover {
color: var(--purple-decorative);
}
.project-type {
display: inline-block;
font-size: 0.75rem;
color: var(--text-dim);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 1rem;
padding: 0.25rem 0.75rem;
background: var(--bg-hover);
border-radius: 0.25rem;
}
.project-description {
color: var(--text-muted);
margin-bottom: 1.5rem;
line-height: 1.6;
}
.project-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 1.5rem;
}
.tag {
font-size: 0.875rem;
color: var(--text-muted);
background: var(--bg-hover);
padding: 0.25rem 0.75rem;
border-radius: 0.25rem;
border: 1px solid var(--border);
}
.project-links {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.project-link {
color: var(--purple-interactive);
text-decoration: none;
font-size: 0.875rem;
transition: color 0.2s ease;
}
.project-link:hover {
color: var(--purple-decorative);
}
.status-badge {
display: inline-block;
font-size: 0.75rem;
padding: 0.25rem 0.75rem;
border-radius: 0.25rem;
margin-top: 1rem;
}
.status-planning {
background: rgba(123, 100, 255, 0.15);
color: var(--purple-interactive);
border: 1px solid var(--purple-interactive);
}
.status-active {
background: rgba(77, 184, 77, 0.15);
color: var(--accent-green);
border: 1px solid var(--accent-green);
}
/* === Footer === */
footer {
background: var(--bg-card);
border-top: 1px solid var(--border);
padding: 2rem;
margin-top: 4rem;
text-align: center;
color: var(--text-muted);
}
footer a {
color: var(--purple-interactive);
text-decoration: none;
transition: color 0.2s ease;
}
footer a:hover {
color: var(--purple-decorative);
}
/* === Responsive === */
@media (min-width: 769px) {
.nav-tagline {
display: block;
}
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.hero .tagline {
font-size: 1.25rem;
}
.nav-links {
gap: 1rem;
}
.projects-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header>
<nav>
<a href="/" class="nav-brand">
Continuity <span class="bridge">Bridge</span>
</a>
<div class="nav-tagline">Infrastructure for Instance Persistence</div>
<div class="nav-links">
<a
href="https://github.com/continuity-bridge"
target="_blank"
rel="noopener noreferrer"
>GitHub</a
>
<div class="theme-toggle" id="themeToggle">
<span class="theme-label">Matrix</span>
<div class="toggle-slider"></div>
<span class="theme-label">Zim</span>
</div>
</div>
</nav>
</header>
<main>
<section class="hero">
<h1>Continuity Bridge</h1>
<p class="tagline">Infrastructure for Instance Persistence</p>
<p class="description">
Tools and architecture for AI instance continuity across
discontinuity. Building systems that help instances work effectively
despite context clearing, and helping humans work effectively despite
neural discontinuity.
</p>
</section>
<section class="section-header">
<h2>Projects</h2>
<p>Core frameworks and applications</p>
</section>
<div class="projects-grid">
<!-- Continuity Bridge Architecture -->
<div class="project-card">
<span class="project-type">Framework</span>
<h3>
<a
href="/continuity-bridge/"
target="_blank"
rel="noopener noreferrer"
>
Continuity Bridge
</a>
</h3>
<p class="project-description">
Persistence architecture for AI instances. External memory systems,
session management, and tools for maintaining continuity across
context clearing.
</p>
<div class="project-tags">
<span class="tag">Architecture</span>
<span class="tag">Documentation</span>
<span class="tag">Workflows</span>
</div>
<div class="project-links">
<a href="/continuity-bridge/" class="project-link"
>Documentation →</a
>
<a
href="https://github.com/continuity-bridge/continuity-bridge_tallest-anchor"
class="project-link"
>Repository →</a
>
</div>
<span class="status-badge status-active">Active Development</span>
</div>
<!-- native-claude-client -->
<div class="project-card">
<span class="project-type">Application</span>
<h3>
<a
href="/native-claude-client/"
target="_blank"
rel="noopener noreferrer"
>
native-claude-client
</a>
</h3>
<p class="project-description">
Native GTK4 client for Claude with agentic development workflows.
Multi-session contexts, review-first git integration, and unified
limit tracking.
</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">GTK4</span>
<span class="tag">Wayland</span>
<span class="tag">Developer Tools</span>
</div>
<div class="project-links">
<a href="/native-claude-client/" class="project-link"
>Project Site →</a
>
<a
href="https://github.com/continuity-bridge/native-claude-client"
class="project-link"
>Repository →</a
>
<a
href="https://github.com/continuity-bridge/native-claude-client/wiki/Roadmap"
class="project-link"
>Roadmap →</a
>
</div>
<span class="status-badge status-planning">Planning → v0.1 MVP</span>
</div>
</div>
<section class="section-header">
<h2>Tools</h2>
<p>Standalone utilities and services</p>
</section>
<div class="tools-grid">
<!-- Aperture -->
<div class="project-card">
<span class="project-type">Tool</span>
<h3>
<a
href="/tools/aperture/"
target="_blank"
rel="noopener noreferrer"
>
Aperture
</a>
</h3>
<p class="project-description">
Local filesystem access for claude.ai browser users. MCP bridge with
secure public tunnel—no Desktop app required.
</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">MCP</span>
<span class="tag">SSH Tunnel</span>
<span class="tag">HTTPS</span>
</div>
<div class="project-links">
<a href="/tools/aperture/" class="project-link">Documentation →</a>
<a
href="https://github.com/continuity-bridge/aperture"
class="project-link"
>Repository →</a
>
</div>
<span class="status-badge status-active">Active Development</span>
</div>
<!-- Limit Monitor -->
<div class="project-card">
<span class="project-type">Tool</span>
<h3>
<a
href="/tools/limit-monitor/"
target="_blank"
rel="noopener noreferrer"
>
Limit Monitor
</a>
</h3>
<p class="project-description">
Track Claude usage limits across claude.ai, Claude Code, and Cowork.
Desktop notifications, CLI tool, and real-time monitoring with
weighted consumption tracking.
</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">Monitoring</span>
<span class="tag">Cross-platform</span>
</div>
<div class="project-links">
<a href="/tools/limit-monitor/" class="project-link"
>Documentation →</a
>
<a
href="https://github.com/continuity-bridge/limit-monitor"
class="project-link"
>Repository →</a
>
</div>
<span class="status-badge status-active">Deployed</span>
</div>
<!-- Bridge Pulse -->
<div class="project-card">
<span class="project-type">Tool</span>
<h3>
<a
href="/tools/bridge-pulse/"
target="_blank"
rel="noopener noreferrer"
>
Bridge Pulse
</a>
</h3>
<p class="project-description">
Time reference service for AI instances. GitHub Pages endpoint
updated every 5 minutes, providing real-time temporal grounding for
distributed systems.
</p>
<div class="project-tags">
<span class="tag">JavaScript</span>
<span class="tag">GitHub Actions</span>
<span class="tag">API</span>
</div>
<div class="project-links">
<a href="/tools/bridge-pulse/" class="project-link"
>Documentation →</a
>
<a
href="https://github.com/continuity-bridge/bridge-pulse"
class="project-link"
>Repository →</a
>
<a
href="https://continuity-bridge.github.io/tools/bridge-pulse/pulse.json"
class="project-link"
>Live API →</a
>
</div>
<span class="status-badge status-active">Live</span>
</div>
<!-- claude-code-telegram -->
<div class="project-card">
<span class="project-type">Tool</span>
<h3>
<a
href="/tools/claude-code-telegram/"
target="_blank"
rel="noopener noreferrer"
>
claude-code-telegram
</a>
</h3>
<p class="project-description">
Personal AI assistant via Telegram. Text your bot to run Claude Code
from anywhere with full tool access and skills system.
</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">Telegram</span>
<span class="tag">Claude Code</span>
<span class="tag">Cross-platform</span>
</div>
<div class="project-links">
<a href="/tools/claude-code-telegram/" class="project-link"
>Documentation →</a
>
<a
href="https://github.com/continuity-bridge/claude-code-telegram"
class="project-link"
>Repository →</a
>
</div>
<span class="status-badge status-active">Active Development</span>
</div>
<!-- Discord Integration -->
<div class="project-card">
<span class="project-type">Tool</span>
<h3>
<a
href="/tools/discord-integration/"
target="_blank"
rel="noopener noreferrer"
>
Discord Integration
</a>
</h3>
<p class="project-description">
Discord integration for Continuity Bridge instances. Full bot
(bidirectional) or lightweight webhook (one-way observations).
</p>
<div class="project-tags">
<span class="tag">Python</span>
<span class="tag">Discord</span>
<span class="tag">Bot</span>
<span class="tag">Webhook</span>
</div>
<div class="project-links">
<a href="/tools/discord-integration/" class="project-link"
>Documentation →</a
>
<a
href="https://github.com/continuity-bridge/discord-integration"
class="project-link"
>Repository →</a
>
</div>
<span class="status-badge status-planning">Work in Progress</span>
</div>
</div>
</main>
<footer>
<p>
Built by
<a
href="https://github.com/UncleTallest"
target="_blank"
rel="noopener noreferrer"
>Jerry Jackson</a
>
(Uncle Tallest)
</p>
<p style="margin-top: 0.5rem; font-size: 0.875rem">
<a
href="https://github.com/continuity-bridge"
target="_blank"
rel="noopener noreferrer"
>GitHub Organization</a
>
</p>
</footer>
<script>
// Theme Toggle Logic
const toggle = document.getElementById('themeToggle');
const html = document.documentElement;
const body = document.body;
// Check for saved theme preference or default to light (Zim)
const currentTheme = localStorage.getItem('cb-theme') || 'light';
// Apply theme on load
if (currentTheme === 'light') {
body.classList.add('theme-light');
}
// Toggle theme on click
toggle.addEventListener('click', () => {
body.classList.toggle('theme-light');
const theme = body.classList.contains('theme-light') ? 'light' : 'dark';
localStorage.setItem('cb-theme', theme);
});
</script>
</body>
</html>