-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
617 lines (565 loc) · 18.6 KB
/
Copy pathindex.html
File metadata and controls
617 lines (565 loc) · 18.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Hot Source — Open source tools for AI-assisted development</title>
<meta name="description" content="Open source AI tools: LLM router, session hooks, KPI library, security skills, and more. All MIT licensed.">
<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@400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
/* ── Reset & Custom Properties ── */
:root {
--brand-hue: 25;
--bg: oklch(0.10 0.01 25);
--surface: oklch(0.14 0.015 25);
--border: oklch(0.22 0.02 25);
--text: oklch(0.93 0.01 25);
--muted: oklch(0.60 0.02 25);
--accent: oklch(0.72 0.18 25);
--accent-glow: oklch(0.65 0.20 25);
--cyan: oklch(0.75 0.14 190);
--green: oklch(0.68 0.16 145);
--radius: 12px;
--max-w: 1200px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
a {
color: var(--accent);
text-decoration: none;
transition: color 0.2s ease;
}
a:hover { color: var(--cyan); }
a:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 3px;
border-radius: 2px;
}
/* ── Typography ── */
h1 {
font-size: clamp(3rem, 1rem + 6vw, 7rem);
font-weight: 900;
letter-spacing: -0.03em;
line-height: 1.05;
}
h2 {
font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
font-weight: 700;
letter-spacing: -0.02em;
color: var(--text);
margin-bottom: 1rem;
}
h2::after {
content: '';
display: block;
width: 48px;
height: 3px;
background: var(--accent);
border-radius: 2px;
margin-top: 0.5rem;
}
h3 {
font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
font-weight: 700;
letter-spacing: -0.01em;
}
/* ── Layout ── */
.container {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 clamp(1rem, 3vw, 2.5rem);
}
main {
position: relative;
}
section {
padding: clamp(3rem, 6vw, 6rem) 0;
}
.section-label {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--accent);
margin-bottom: 0.5rem;
}
/* ── Hero ── */
.hero {
position: relative;
min-height: 100vh;
min-height: 100dvh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
border-bottom: 1px solid var(--border);
}
.hero-bg {
position: absolute;
inset: 0;
background: url('logo.jpg') center center / cover no-repeat;
opacity: 0.12;
filter: blur(12px) brightness(0.7) saturate(1.3);
z-index: 0;
transform: scale(1.15);
}
/* Mist layers */
.hero-mist {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
}
.hero-mist-a,
.hero-mist-b,
.hero-mist-c {
position: absolute;
width: 250%;
height: 100%;
top: 0;
left: -75%;
}
.hero-mist-a {
background:
radial-gradient(ellipse 80% 50% at 25% 85%, oklch(0.10 0.01 25 / 0.95) 0%, transparent 70%),
radial-gradient(ellipse 60% 40% at 70% 30%, oklch(0.10 0.01 25 / 0.7) 0%, transparent 50%);
animation: mist-drift-1 18s ease-in-out infinite alternate;
}
.hero-mist-b {
background:
radial-gradient(ellipse 70% 60% at 55% 90%, oklch(0.10 0.01 25 / 0.85) 0%, transparent 60%),
radial-gradient(ellipse 50% 30% at 15% 50%, oklch(0.72 0.18 25 / 0.04) 0%, transparent 45%);
animation: mist-drift-2 24s ease-in-out infinite alternate-reverse;
}
.hero-mist-c {
background:
radial-gradient(ellipse 90% 40% at 40% 70%, oklch(0.10 0.01 25 / 0.6) 0%, transparent 55%),
radial-gradient(ellipse 40% 50% at 80% 40%, oklch(0.75 0.14 190 / 0.02) 0%, transparent 40%);
animation: mist-drift-3 30s ease-in-out infinite alternate;
}
@keyframes mist-drift-1 {
0% { transform: translateX(-4%) translateY(1%); opacity: 0.8; }
50% { transform: translateX(3%) translateY(-2%); opacity: 1; }
100% { transform: translateX(-2%) translateY(0%); opacity: 0.9; }
}
@keyframes mist-drift-2 {
0% { transform: translateX(3%) translateY(-1%); opacity: 0.7; }
50% { transform: translateX(-5%) translateY(2%); opacity: 0.95;}
100% { transform: translateX(2%) translateY(-1%); opacity: 0.85;}
}
@keyframes mist-drift-3 {
0% { transform: translateX(-2%) translateY(2%); opacity: 0.6; }
50% { transform: translateX(4%) translateY(-1%); opacity: 0.8; }
100% { transform: translateX(-3%) translateY(1%); opacity: 0.7; }
}
/* Bottom gradient fade */
.hero::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 200px;
background: linear-gradient(to bottom, transparent, var(--bg));
z-index: 2;
pointer-events: none;
}
.hero-content {
position: relative;
z-index: 3;
text-align: center;
padding: 2rem clamp(1rem, 3vw, 2.5rem);
max-width: 900px;
}
.hero-title {
background: linear-gradient(135deg, var(--accent), oklch(0.80 0.16 30), var(--accent-glow));
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: gradient-shift 6s ease-in-out infinite alternate;
}
@keyframes gradient-shift {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
.hero-subtitle {
font-size: clamp(1rem, 0.8rem + 0.8vw, 1.35rem);
color: var(--muted);
max-width: 640px;
margin: 1.5rem auto 0;
line-height: 1.7;
font-weight: 400;
}
/* ── Grid ── */
.grid {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 640px) {
.grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
.grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
.grid-2 { grid-template-columns: repeat(2, 1fr); }
}
/* ── Cards ── */
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: clamp(1.25rem, 2vw, 1.75rem);
transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
display: flex;
flex-direction: column;
}
.card:hover {
transform: translateY(-4px);
border-color: var(--accent);
box-shadow:
0 8px 32px oklch(0.72 0.18 25 / 0.08),
0 0 0 1px oklch(0.72 0.18 25 / 0.12);
}
.card:focus-within {
border-color: var(--accent);
box-shadow: 0 0 0 2px oklch(0.72 0.18 25 / 0.25);
}
.card h3 { margin-bottom: 0.5rem; }
.card h3 a {
color: var(--text);
transition: color 0.2s ease;
}
.card h3 a:hover { color: var(--accent); }
.card h3 a:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
border-radius: 2px;
}
.card p {
color: var(--muted);
font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
line-height: 1.65;
flex: 1;
}
.card-tags {
margin-top: 1rem;
display: flex;
flex-wrap: wrap;
gap: 6px;
}
/* ── Tags ── */
.tag {
display: inline-block;
background: oklch(0.10 0.01 25);
border: 1px solid var(--border);
border-radius: 100px;
padding: 3px 12px;
font-size: 0.72rem;
font-weight: 500;
color: var(--muted);
letter-spacing: 0.02em;
}
.tag.hot {
border-color: oklch(0.72 0.18 25 / 0.4);
color: var(--accent);
background: oklch(0.72 0.18 25 / 0.06);
}
/* ── Live Badge ── */
.live-badge {
display: inline-flex;
align-items: center;
gap: 5px;
background: oklch(0.68 0.16 145 / 0.12);
color: var(--green);
font-size: 0.65rem;
font-weight: 700;
padding: 3px 10px;
border-radius: 100px;
border: 1px solid oklch(0.68 0.16 145 / 0.25);
margin-left: 8px;
vertical-align: middle;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.live-badge::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--green);
animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
/* ── Token Routing (Tiers) ── */
.tiers {
display: flex;
flex-direction: column;
gap: 12px;
}
.tier {
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 2vw, 1.5rem);
font-family: 'Courier New', 'Consolas', monospace;
font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.95rem);
line-height: 1.6;
transition: border-color 0.2s ease;
}
.tier:hover {
border-color: oklch(0.72 0.18 25 / 0.3);
}
.tier strong {
color: var(--accent);
}
.tier-note {
color: var(--muted);
margin-top: 1.25rem;
font-size: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
line-height: 1.6;
}
/* ── Divider between sections ── */
.section-divider {
border: 0;
border-top: 1px solid var(--border);
margin: 0;
}
/* ── Footer ── */
footer {
border-top: 1px solid var(--border);
padding: clamp(2rem, 4vw, 3rem) 0;
text-align: center;
}
footer p {
color: var(--muted);
font-size: 0.9rem;
}
footer p + p {
margin-top: 0.5rem;
font-size: 0.8rem;
color: oklch(0.45 0.02 25);
}
/* ── Scroll-driven fade-in animations ── */
@supports (animation-timeline: view()) {
.reveal {
opacity: 0;
transform: translateY(24px);
animation: reveal-in linear both;
animation-timeline: view();
animation-range: entry 0% entry 30%;
}
.reveal-card {
opacity: 0;
transform: translateY(20px);
animation: reveal-in linear both;
animation-timeline: view();
animation-range: entry 0% entry 25%;
}
/* Stagger cards */
.reveal-card:nth-child(1) { animation-delay: 0ms; }
.reveal-card:nth-child(2) { animation-delay: 60ms; }
.reveal-card:nth-child(3) { animation-delay: 120ms; }
.reveal-card:nth-child(4) { animation-delay: 180ms; }
.reveal-card:nth-child(5) { animation-delay: 240ms; }
.reveal-card:nth-child(6) { animation-delay: 300ms; }
@keyframes reveal-in {
to {
opacity: 1;
transform: translateY(0);
}
}
}
/* Fallback: if scroll-driven animations not supported, just show everything */
@supports not (animation-timeline: view()) {
.reveal,
.reveal-card {
opacity: 1;
transform: none;
}
}
/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.reveal, .reveal-card {
opacity: 1;
transform: none;
}
}
</style>
</head>
<body>
<!-- ═══════ HERO ═══════ -->
<header class="hero">
<div class="hero-bg" aria-hidden="true"></div>
<div class="hero-mist" aria-hidden="true">
<div class="hero-mist-a"></div>
<div class="hero-mist-b"></div>
<div class="hero-mist-c"></div>
</div>
<div class="hero-content">
<h1 class="hero-title">AI Hot Source</h1>
<p class="hero-subtitle">Open source tools that solve real friction in AI-assisted development. No frameworks for frameworks' sake — just the source code that makes everything better.</p>
</div>
</header>
<!-- ═══════ MAIN ═══════ -->
<main>
<div class="container">
<!-- ── Tools ── -->
<section>
<div class="reveal">
<p class="section-label">Open Source</p>
<h2>Tools</h2>
</div>
<div class="grid">
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/hot-source">Hot Source</a></h3>
<p>Multi-model LLM router with scoring-based routing, circuit breakers, quality gates, and SQLite persistence. Supports OpenAI, Anthropic, Google, Ollama.</p>
<div class="card-tags">
<span class="tag hot">engine</span><span class="tag">python</span><span class="tag">MIT</span>
</div>
</div>
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/context-manager">Context Manager</a></h3>
<p>Session summarization, archival, and context injection hooks for Claude Code. Tiered LLM fallback: Gemini CLI, Ollama, structured fallback.</p>
<div class="card-tags">
<span class="tag hot">claude-code</span><span class="tag">hooks</span><span class="tag">MIT</span>
</div>
</div>
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/kpi-library">KPI Library</a></h3>
<p>52 KPI definitions across 9 business domains. Formula evaluation via safe AST parsing. CLI + Pydantic models + benchmarks.</p>
<div class="card-tags">
<span class="tag">analytics</span><span class="tag">CLI</span><span class="tag">MIT</span>
</div>
</div>
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/guiding-sprite">Guiding Sprite</a></h3>
<p>AI-powered screen overlay that guides your cursor to UI elements using natural language. Supports Claude, GPT-4 Vision, and Gemini.</p>
<div class="card-tags">
<span class="tag">vision</span><span class="tag">PyQt5</span><span class="tag">MIT</span>
</div>
</div>
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/cyberwoods">Cyberwoods</a></h3>
<p>Security workflow skill for safely reviewing and adopting untrusted external code, skills, packages, and MCP integrations.</p>
<div class="card-tags">
<span class="tag hot">security</span><span class="tag">skill</span><span class="tag">MIT</span>
</div>
</div>
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/sent-before-i-read-that">sent-before-i-read-that</a></h3>
<p>Tells Claude when your message was typed before you saw its response. Two bash hooks, zero dependencies.</p>
<div class="card-tags">
<span class="tag hot">claude-code</span><span class="tag">UX</span><span class="tag">MIT</span>
</div>
</div>
</div>
</section>
<hr class="section-divider">
<!-- ── Live Projects ── -->
<section>
<div class="reveal">
<p class="section-label">In Production</p>
<h2>Live Projects</h2>
</div>
<div class="grid grid-2">
<div class="card reveal-card">
<h3><a href="https://dreamstoreality.app">Dreams to Reality</a> <span class="live-badge">LIVE</span></h3>
<p>Proprietary camera-orbit-to-3D-model pipeline. Upload a video, get a printable 3D model back.</p>
<div class="card-tags">
<span class="tag">3D</span><span class="tag">SaaS</span>
</div>
</div>
<div class="card reveal-card">
<h3><a href="https://www.poseidonplumbing.co.nz">Poseidon Plumbing</a> <span class="live-badge">LIVE</span></h3>
<p>Commercial plumbing website. Modern design, SEO optimized, built for a real client.</p>
<div class="card-tags">
<span class="tag">web</span><span class="tag">client work</span>
</div>
</div>
</div>
</section>
<hr class="section-divider">
<!-- ── More Repos ── -->
<section>
<div class="reveal">
<p class="section-label">Also Shipping</p>
<h2>More Repos</h2>
</div>
<div class="grid">
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/claude-skills">Claude Skills</a></h3>
<p>Open-source skills for Claude Code — MIT licensed.</p>
<div class="card-tags">
<span class="tag">skills</span>
</div>
</div>
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/ai-tech-tree">AI Tech Tree</a></h3>
<p>Civilization-style interactive tech tree for AI stack building.</p>
<div class="card-tags">
<span class="tag">visualization</span>
</div>
</div>
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/webgpu-claude-skill">WebGPU Skill</a></h3>
<p>Claude skill for developing WebGPU applications with Three.js.</p>
<div class="card-tags">
<span class="tag">WebGPU</span><span class="tag">Three.js</span>
</div>
</div>
<div class="card reveal-card">
<h3><a href="https://github.com/Jonohobs/sf-parking-heatmap">SF Parking Heatmap</a></h3>
<p>Temporal heatmap from 206M+ meter transactions with bike share and isochrone overlays.</p>
<div class="card-tags">
<span class="tag">data viz</span>
</div>
</div>
</div>
</section>
<hr class="section-divider">
<!-- ── Token Routing ── -->
<section>
<div class="reveal">
<p class="section-label">Infrastructure</p>
<h2>Token Routing</h2>
</div>
<div class="tiers">
<div class="tier reveal-card"><strong>TIER 0 (local):</strong> Ollama — $0, your GPU</div>
<div class="tier reveal-card"><strong>TIER 1 (free API):</strong> SambaNova 20M/day → Mistral 1B/mo → Cerebras 1M/day → Groq 14K/day → Gemini 250K TPM</div>
<div class="tier reveal-card"><strong>TIER 2 (cheap):</strong> GLM-5.1 via OpenRouter, Grok $175/mo credits</div>
<div class="tier reveal-card"><strong>TIER 3 (supervised):</strong> Claude Code — human approval only</div>
</div>
<p class="tier-note">50M+ free tokens/day across all providers. Hot Source routes automatically based on task type, cost, latency, and reliability.</p>
</section>
</div>
</main>
<!-- ═══════ FOOTER ═══════ -->
<footer>
<div class="container">
<p>Built by <a href="https://github.com/Jonohobs">Jonathan Hobman</a> — MIT Licensed</p>
<p>Ship tools that solve real friction. No frameworks for frameworks' sake.</p>
</div>
</footer>
</body>
</html>