-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
582 lines (541 loc) · 27.1 KB
/
index.html
File metadata and controls
582 lines (541 loc) · 27.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>A.S.K. — Agent Skills Kernel | Stop Re-Teaching Your AI Agents</title>
<meta name="description" content="A.S.K. is a versioned skill library for AI agents. Define a capability once, invoke it forever. Open source framework + $47 Quick-Start Bundle." />
<meta property="og:title" content="A.S.K. — Agent Skills Kernel" />
<meta property="og:description" content="Stop re-teaching your AI agents. A versioned skill library that makes agent capabilities permanent." />
<meta property="og:type" content="website" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0C1222;
--surface: #111B2E;
--surface2: #162032;
--primary: #38BDF8;
--primary-deep: #0EA5E9;
--secondary: #FDBA74;
--secondary-deep: #FB923C;
--white: #F8FAFC;
--muted: #94A3B8;
--border: #1E293B;
}
body {
background: var(--bg);
color: var(--white);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
line-height: 1.7;
overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--secondary); }
/* NAV */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
max-width: 1200px;
margin: 0 auto;
}
.logo {
font-size: 1.4rem;
font-weight: 800;
letter-spacing: -0.5px;
}
.logo .ask { color: var(--primary); }
.logo .sub { color: var(--muted); font-weight: 400; font-size: 0.85rem; margin-left: 8px; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.9rem; }
.nav-links a:hover { color: var(--white); }
.nav-badge {
background: rgba(56,189,248,0.1);
border: 1px solid rgba(56,189,248,0.3);
color: var(--primary);
padding: 4px 14px;
border-radius: 100px;
font-size: 0.8rem;
font-weight: 600;
}
/* HERO */
.hero {
text-align: center;
padding: 80px 40px 60px;
max-width: 820px;
margin: 0 auto;
}
.hero-badge {
display: inline-block;
background: rgba(253,186,116,0.1);
border: 1px solid rgba(253,186,116,0.3);
color: var(--secondary);
padding: 6px 16px;
border-radius: 100px;
font-size: 0.8rem;
font-weight: 600;
margin-bottom: 24px;
}
.hero h1 {
font-size: clamp(2.2rem, 5vw, 3.4rem);
font-weight: 800;
line-height: 1.15;
margin-bottom: 20px;
letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--primary); }
.hero p {
font-size: 1.15rem;
color: var(--muted);
max-width: 600px;
margin: 0 auto 36px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 28px;
border-radius: 10px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
border: none;
transition: all 0.2s;
}
.btn-primary {
background: linear-gradient(135deg, var(--primary-deep), var(--primary));
color: #0C1222;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(56,189,248,0.3); color: #0C1222; }
.btn-secondary {
background: var(--surface);
color: var(--white);
border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-2px); color: var(--white); }
/* STATS */
.stats {
display: flex;
justify-content: center;
gap: 48px;
padding: 40px;
max-width: 700px;
margin: 0 auto;
}
.stat { text-align: center; }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat .label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
/* PROBLEM */
.section {
max-width: 1000px;
margin: 0 auto;
padding: 60px 40px;
}
.section-label {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--secondary);
margin-bottom: 12px;
}
.section h2 {
font-size: clamp(1.6rem, 3vw, 2.2rem);
font-weight: 700;
margin-bottom: 20px;
letter-spacing: -0.5px;
}
.section p { color: var(--muted); max-width: 700px; margin-bottom: 16px; }
/* TIERS */
.tiers {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 40px;
}
.tier {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 28px;
transition: border-color 0.2s;
}
.tier:hover { border-color: var(--primary); }
.tier-icon {
width: 44px;
height: 44px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
margin-bottom: 16px;
}
.tier h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.tier p { font-size: 0.9rem; color: var(--muted); margin-bottom: 12px; }
.tier-example {
background: var(--bg);
border-radius: 8px;
padding: 12px 16px;
font-family: 'SF Mono', 'Fira Code', monospace;
font-size: 0.8rem;
color: var(--primary);
}
/* CODE BLOCK */
.code-demo {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 28px;
margin-top: 40px;
overflow-x: auto;
}
.code-demo pre {
font-family: 'SF Mono', 'Fira Code', monospace;
font-size: 0.85rem;
line-height: 1.8;
color: var(--muted);
}
.code-demo .keyword { color: var(--secondary); }
.code-demo .string { color: #4ade80; }
.code-demo .comment { color: #475569; }
.code-demo .func { color: var(--primary); }
/* RESULTS */
.results-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 40px;
}
.result-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 24px;
text-align: center;
}
.result-card .before { font-size: 1.4rem; color: #ef4444; font-weight: 700; }
.result-card .arrow { color: var(--muted); margin: 4px 0; }
.result-card .after { font-size: 1.8rem; color: #4ade80; font-weight: 800; }
.result-card .desc { font-size: 0.85rem; color: var(--muted); margin-top: 8px; }
/* BUNDLE */
.bundle {
background: linear-gradient(135deg, var(--surface), var(--surface2));
border: 2px solid var(--primary);
border-radius: 16px;
padding: 48px;
text-align: center;
margin-top: 60px;
position: relative;
}
.bundle-price {
display: inline-block;
background: var(--primary);
color: var(--bg);
font-size: 2rem;
font-weight: 800;
padding: 8px 32px;
border-radius: 100px;
margin-bottom: 20px;
}
.bundle h2 { font-size: 1.8rem; margin-bottom: 12px; }
.bundle p { color: var(--muted); max-width: 540px; margin: 0 auto 24px; }
.bundle-items {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
margin-bottom: 32px;
}
.bundle-item {
background: rgba(56,189,248,0.08);
border: 1px solid rgba(56,189,248,0.2);
border-radius: 8px;
padding: 10px 18px;
font-size: 0.9rem;
color: var(--white);
}
.bundle-item .check { color: #4ade80; margin-right: 6px; }
/* OPEN SOURCE */
.oss-section {
background: var(--surface);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 60px 40px;
text-align: center;
margin-top: 60px;
}
.oss-section h2 { font-size: 1.8rem; margin-bottom: 12px; }
.oss-section p { color: var(--muted); max-width: 540px; margin: 0 auto 28px; }
/* TESTIMONIAL */
.quote-block {
background: var(--surface);
border-left: 3px solid var(--secondary);
border-radius: 0 12px 12px 0;
padding: 24px 28px;
margin-top: 40px;
max-width: 700px;
}
.quote-block p { color: var(--white); font-style: italic; margin-bottom: 8px; }
.quote-block .attr { color: var(--muted); font-size: 0.85rem; font-style: normal; }
/* FOOTER */
footer {
text-align: center;
padding: 40px;
color: var(--muted);
font-size: 0.85rem;
border-top: 1px solid var(--border);
margin-top: 60px;
}
footer a { color: var(--primary); }
/* RESPONSIVE */
@media (max-width: 640px) {
nav { padding: 16px 20px; }
.hero { padding: 48px 20px 40px; }
.section { padding: 40px 20px; }
.stats { gap: 24px; }
.bundle { padding: 32px 20px; }
.hero-ctas { flex-direction: column; align-items: center; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<div class="logo">
<span class="ask">A.S.K.</span>
<span class="sub">Agent Skills Kernel</span>
</div>
<div class="nav-links">
<a href="https://github.com/srmbsrg/ask-kernel">GitHub</a>
<a href="#bundle" class="nav-badge">Quick-Start $47</a>
</div>
</nav>
<!-- HERO -->
<div class="hero">
<div class="hero-badge">MIT Licensed · Open Source</div>
<h1>Stop <span class="highlight">Re-Teaching</span> Your AI Agents</h1>
<p>A.S.K. is a versioned skill library for AI agents. Define a capability once. Invoke it forever. Skills compound. Knowledge stops evaporating.</p>
<div class="hero-ctas">
<a href="https://buy.stripe.com/3cI6oH7vPaLDevyc5BaMU00" class="btn btn-primary">Get the Quick-Start Bundle — $47</a>
<a href="https://github.com/srmbsrg/ask-kernel" class="btn btn-secondary">View on GitHub</a>
</div>
</div>
<!-- STATS -->
<div class="stats">
<div class="stat">
<div class="num">~40%</div>
<div class="label">Agent success rate before</div>
</div>
<div class="stat">
<div class="num">→</div>
<div class="label"> </div>
</div>
<div class="stat">
<div class="num">>90%</div>
<div class="label">Agent success rate after</div>
</div>
</div>
<!-- PROBLEM -->
<div class="section">
<div class="section-label">The Problem</div>
<h2>Every agent session starts from zero</h2>
<p>Your deploy agent re-discovers your CI config. Your notification agent re-figures-out Telegram. Your purchasing agent re-learns your spending limits. Every. Single. Session.</p>
<p>You've built the same capabilities ten times. They work. Then the session ends and everything evaporates. The next agent starts from scratch.</p>
<div class="quote-block">
<p>"We spent more time re-teaching agents what they already knew than building anything new."</p>
<div class="attr">— Built from running 9 specialized agents in production at Foundry Familiars</div>
</div>
</div>
<!-- SOLUTION: TIERS -->
<div class="section">
<div class="section-label">The Architecture</div>
<h2>Three tiers of reusable agent skills</h2>
<p>Each skill is a versioned Markdown file with trigger conditions, input schema, methodology with reasoning, and output contract. Agents invoke skills by name. Skills compose into workflows.</p>
<div class="tiers">
<div class="tier">
<div class="tier-icon" style="background: rgba(56,189,248,0.1); color: var(--primary);">⚙</div>
<h3>Foundation</h3>
<p>Portable primitives that work anywhere. Push to GitHub, send a Telegram message, fetch a URL.</p>
<div class="tier-example">ASK: foundation/github-push</div>
</div>
<div class="tier">
<div class="tier-icon" style="background: rgba(253,186,116,0.1); color: var(--secondary);">⚖</div>
<h3>Domain</h3>
<p>Business-specific compositions. Full deploy cycles, purchase workflows, compliance checks.</p>
<div class="tier-example">ASK: gfs/tes-deploy</div>
</div>
<div class="tier">
<div class="tier-icon" style="background: rgba(74,222,128,0.1); color: #4ade80;">★</div>
<h3>Orchestration</h3>
<p>Multi-skill workflows with error propagation, retry logic, and fallback chains.</p>
<div class="tier-example">ASK: orchestration/release-train</div>
</div>
</div>
</div>
<!-- HOW IT WORKS -->
<div class="section">
<div class="section-label">How It Works</div>
<h2>Skills are contracts, not functions</h2>
<p>The SKILL.md file documents the <em>why</em>, not just the <em>what</em>. Future agents understand and adapt the methodology, not just execute it blindly.</p>
<div class="code-demo">
<pre><span class="comment"># foundation/github-push/SKILL.md</span>
<span class="keyword">description:</span> <span class="string">"Push changes to a GitHub repository"</span>
<span class="keyword">trigger:</span> <span class="string">"When code changes need to be committed and pushed"</span>
<span class="keyword">inputs:</span>
<span class="func">repo</span>: string <span class="comment"># Target repository</span>
<span class="func">branch</span>: string <span class="comment"># Target branch</span>
<span class="func">message</span>: string <span class="comment"># Commit message</span>
<span class="keyword">methodology:</span>
<span class="comment"># 1. Stage changes (why: prevents committing unintended files)</span>
<span class="comment"># 2. Validate diff (why: catches accidental secret exposure)</span>
<span class="comment"># 3. Commit with conventional message format</span>
<span class="comment"># 4. Push with force-with-lease (why: prevents overwriting remote changes)</span>
<span class="keyword">outputs:</span>
<span class="func">commit_sha</span>: string
<span class="func">push_status</span>: success | conflict | error</pre>
</div>
</div>
<!-- RESULTS -->
<div class="section">
<div class="section-label">Production Results</div>
<h2>From running 9 agents in production</h2>
<div class="results-grid">
<div class="result-card">
<div class="before">~40%</div>
<div class="arrow">↓</div>
<div class="after">>90%</div>
<div class="desc">First-attempt success rate on complex tasks</div>
</div>
<div class="result-card">
<div class="before">Every session</div>
<div class="arrow">↓</div>
<div class="after">Once</div>
<div class="desc">Times a capability needs to be defined</div>
</div>
<div class="result-card">
<div class="before">Hours</div>
<div class="arrow">↓</div>
<div class="after">Minutes</div>
<div class="desc">Time to add a new agent capability</div>
</div>
</div>
</div>
<!-- BUNDLE -->
<div class="section" id="bundle">
<div class="bundle">
<div class="bundle-price">$47</div>
<h2>Quick-Start Bundle</h2>
<p>Everything you need to implement A.S.K. in your agent system this week. Built from a year of running agents in production.</p>
<div class="bundle-items">
<div class="bundle-item"><span class="check">✓</span> 27-page implementation guide</div>
<div class="bundle-item"><span class="check">✓</span> Python executor runtime</div>
<div class="bundle-item"><span class="check">✓</span> 5 production-ready skills</div>
<div class="bundle-item"><span class="check">✓</span> Composition patterns</div>
<div class="bundle-item"><span class="check">✓</span> Error handling templates</div>
</div>
<a href="https://buy.stripe.com/3cI6oH7vPaLDevyc5BaMU00" class="btn btn-primary" style="font-size: 1.1rem; padding: 16px 40px;">Buy the Quick-Start Bundle</a>
<p style="margin-top: 16px; font-size: 0.8rem; color: var(--muted);">Instant delivery · Stripe-secured payment</p>
</div>
</div>
<!-- OPEN SOURCE -->
<div class="oss-section">
<h2>The framework is free. Forever.</h2>
<p>A.S.K. is MIT licensed. The Quick-Start Bundle is for teams who want the structured walkthrough, production patterns, and Python runtime instead of building from the spec.</p>
<a href="https://github.com/srmbsrg/ask-kernel" class="btn btn-secondary" style="font-size: 1rem;">Star on GitHub →</a>
</div>
<!-- FOOTER -->
<footer>
<p>Built by <a href="https://spookysoftwaresyndicate.com/srm">Foundry Familiars</a> · MIT License · <a href="mailto:ghostfoundrysyndicate@outlook.com">Contact</a></p>
</footer>
<!-- ASK Podcast Series -->
<section style="padding: 80px 20px; background: var(--surface);">
<div style="max-width: 900px; margin: 0 auto;">
<div style="text-align: center; margin-bottom: 48px;">
<span style="font-size: 12px; letter-spacing: 3px; color: var(--secondary); text-transform: uppercase; font-weight: 600;">🎙️ VIDEO SERIES</span>
<h2 style="font-size: 2rem; font-weight: 700; margin-top: 12px;">The ASK Podcast</h2>
<p style="color: var(--muted); margin-top: 12px; max-width: 500px; margin-left: auto; margin-right: auto;">5 episodes deep-diving the Agent Skills Kernel architecture. Watch the full series free, then grab the bundle.</p>
</div>
<div style="display: grid; gap: 24px;">
<div style="background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; align-items: stretch; gap: 0;">
<div style="flex-shrink: 0; width: 220px; position: relative; background: #000;">
<video
src="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/9711348cb38d4cdeaa9f92116dcaa0a2.mp4?Expires=1775511466&Signature=JT8Z5aqnPTaoacQgwNgDV2txsHbwEeIGr4H4y6kiIDmA8Yk574a5vsjj-dEWhz65WspMf0M70HAUzex4g95cab0lkCW2hJV4FE3sHmYT40w~AJVL5cEFH5LwCP505NRYhDO0bHofkDH19xTuMg~pFdnM0vmEw~vSHAaiRvMEMMlK-I8S2FiISZd1RTlTErp1FHduFRsQymWCBGlFrTbsPhfLtrZLG07BBBSPjeS5q26uYkeo9eH715QiqDxQSFjoMduyk8Q4Z14sNDNsqYnxpGOU84c9EDuXltFQZ5b7CLCu-SlWRE1eFJ79TL5tOcaCHMdTYkhat8xesm1CL-oapw__&Key-Pair-Id=K38HBHX5LX3X2H"
poster="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/9711348cb38d4cdeaa9f92116dcaa0a2.jpeg?Expires=1775775896&Signature=ACr8vH9vBO6Jbje0Qj-AIUo-wca5ch~rLisULudF3bMxwSf8cXOKHcujNFAJU4m48nj21J6LxZOLZeXgPvb7p-9Hmtc2VWIqgA6JGUOkDrLdz8tA9kx64yCCpkJJFqj0pp6~l-WaliWA0hnJYEcnExoY0qLLNjtVURtVNOCsSYCDdnqx7y2BIzpsbj1UxqT~25jvLuTL6R0z2ItOjwRD5L3rI0EZGj3lnqfMjs-YsSZklj4eE3-BeoJkvL4qU8cdOpIQ3ylnkT-LYTbtdRecibl~fWpKQ~v7duhXzG98EL0SRirGOL-FQCZfRWeTV6xHRCHZ8V1UrGAikvMK2PMcNQ__&Key-Pair-Id=K38HBHX5LX3X2H"
style="width: 100%; height: 140px; object-fit: cover; display: block;"
controls
preload="none"
></video>
</div>
<div style="padding: 20px 24px; display: flex; flex-direction: column; justify-content: center;">
<span style="font-size: 11px; letter-spacing: 2px; color: var(--secondary); text-transform: uppercase; font-weight: 600; margin-bottom: 6px;">Episode 1</span>
<h3 style="font-size: 1.1rem; font-weight: 600; color: var(--white);">Intro & The Problem</h3>
</div>
</div>
<div style="background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; align-items: stretch; gap: 0;">
<div style="flex-shrink: 0; width: 220px; position: relative; background: #000;">
<video
src="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/8ce810d61187466683c3cf9270d7ca3b.mp4?Expires=1775511966&Signature=qphILvX8aZP7wEWjDkz-7sclMinX6jZg8ro1i-JGSGox2FfXkzPamVYLtkpF3az1jLHdRJc5s3DXHkgEyHZu6TWYpev1mabiQIAAQyibGzxuum5E4tsSySPsEuUVs8xe78ZB3PKKnLqbvd8rNhYWPNeFK-H-lAns1zWF~sSqTcniimc5W43l54NXAvphlcwXxCdEDdu9Pwog6q1KJsVfBtI1h3dbRg~ZYtUUc5agbRKOk6OSj9muhxhLcLFQ-bWyjPhNGRCT1UrfhIrHyIZVB1BiM49IGEDW2tqt~GKYbnb~ka00LLbX9GLcFu6MVl2lij6l-FWyJZwz1d2L5vhPow__&Key-Pair-Id=K38HBHX5LX3X2H"
poster="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/8ce810d61187466683c3cf9270d7ca3b.jpeg?Expires=1775775896&Signature=AITyXvxlqLirVyOgx0eoLjwmVMO9-owqIalvoUYWeV7hxq4pfE3i7QgOqpIAgG9VLEtiQq0x6lkqBCJ8-SGdKry5PSyJm7ThmnTs-XO2~bfuV-KLYSM0wh5W0yRAwuY8U24TI4CSgmERCVC0ONuWhPeZGd9J8xWekI68KNHQO9UIi2aF0MO4AsS9NzB0QykitYffL5sQWGVI2OgjfVaggAIeXlj9SvUo-Og9vK-J0BeUdeqajMJ~3yoka9A~zRW1DsPRbh35qrW~rxGMY7XbxFjPcrAti3eqI~NcR9bVi9AiPPgSabbLzppnf58glpq1nd0c4NPoOXSNaa1ji1ShQg__&Key-Pair-Id=K38HBHX5LX3X2H"
style="width: 100%; height: 140px; object-fit: cover; display: block;"
controls
preload="none"
></video>
</div>
<div style="padding: 20px 24px; display: flex; flex-direction: column; justify-content: center;">
<span style="font-size: 11px; letter-spacing: 2px; color: var(--secondary); text-transform: uppercase; font-weight: 600; margin-bottom: 6px;">Episode 2</span>
<h3 style="font-size: 1.1rem; font-weight: 600; color: var(--white);">What A.S.K Is</h3>
</div>
</div>
<div style="background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; align-items: stretch; gap: 0;">
<div style="flex-shrink: 0; width: 220px; position: relative; background: #000;">
<video
src="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/432ce3aa2b964a30b4db0daabec6e4c7.mp4?Expires=1775511417&Signature=R0M5elL6~aVoGjvAHB97-CxPHS1P5G6mEY4kQwaVLwJrHQ-F-0QYD~3saoJjp46vwetyXFYIY5eu29C3r~hsk9SoiURfJLApxz4ie-tNVXQ3xIgoLEsj4ZlMbeO8WOgaOCYyASZCv1AVNgadk5~ZiVzcpkO73g41JcVktQH7I4Petk4L7xZ-W2lTVB7IYmYjudIUHnj67gmgAL2d-krLWdeGVAJ5vVLOEUaK9uoDmZoRgy~bHxiWi3zIA4yntHQuYT5JY2E0NRSTpZqQTSi6-iUcjciO1t9rqMDJ1NYk7S2QDx4co~Ordvd6lgmVLHvv0Q8BwFFza5VY1B5M5ddetA__&Key-Pair-Id=K38HBHX5LX3X2H"
poster="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/432ce3aa2b964a30b4db0daabec6e4c7.jpeg?Expires=1775775897&Signature=XEp98XxircMQxb~ajMFIF4M1wflM5Zua5xxV6j66jYEdnVlSSpPnd1VAqshVPyoyRuCNECwvtH9wqYv890hzZJMwQh3VNMdt3hZ~G1m7oC3IWBXNcc1PQQnCgicQZSHSgyN8lcvn2ATD-8pNuPJLCSM2T7fSsG7~~IakyqyMWiA7PPCt-mdtssv9lmzRgXMYkT8zU9GtPCqdoeO~-XWY9kW5bfftd9eKjq2kN4N3hwRFcNKeRugioxFnCrc~fc3G8kK6IRxAFUpYckgiuzidBNm87pQX0ckP~13eGnfRJKMszSNGJ2nb5~lyFpn3umFuNK-ltwRYdUREHLagFNcYRA__&Key-Pair-Id=K38HBHX5LX3X2H"
style="width: 100%; height: 140px; object-fit: cover; display: block;"
controls
preload="none"
></video>
</div>
<div style="padding: 20px 24px; display: flex; flex-direction: column; justify-content: center;">
<span style="font-size: 11px; letter-spacing: 2px; color: var(--secondary); text-transform: uppercase; font-weight: 600; margin-bottom: 6px;">Episode 3</span>
<h3 style="font-size: 1.1rem; font-weight: 600; color: var(--white);">Three-Tier Architecture</h3>
</div>
</div>
<div style="background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; align-items: stretch; gap: 0;">
<div style="flex-shrink: 0; width: 220px; position: relative; background: #000;">
<video
src="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/6188a4c147d24028971a85369a8d33de.mp4?Expires=1775509623&Signature=nGieKAkeWhQ0YTEYniC1QX1VEyIF8Yf6K2nd5v9jnQr1MCuaW0OPLLqOqAr7cvi1DGvj5v8nxX~G~zaRow27QEtKJxynX-tQM8~~S~Gnv4NzYRpHaYMWYoi9D8JcgHKF~d063Kv5KUAkHV4hF3KfPhttfMqPMuGFAMDsyeXXjDnsZd3SUchSuDiuXm6C82oMVaguSFtK8sCJrNfrOLgau7drwBM4iqzBJkhD1CPJQxQBxxTwMDpxxo2QAvtss9ONkIJahtqlhOwe1Tfj5UcP5x7JydcxI9x4bTKofoLW3ZXSwynE80mlVwxFIZZbChFrmK0iV27Pg3p1lZFHfmQGiw__&Key-Pair-Id=K38HBHX5LX3X2H"
poster="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/6188a4c147d24028971a85369a8d33de.jpeg?Expires=1775775897&Signature=IPBSvZ2uRlqks456UPyYiqxKbAkMhoqTout-lJTDBaeqGnHcDrGOiH02NN0k64bzf9wzMT4uaEeFCXQ8V~xJVK9Rz7UaebQC~EFyMZV~mAKWhLRu24WvyojJa20LvKuPhzMUtyD-CfUlHcxlhI8dTr1ESZ1NcFnTsHwdl~duZo1j0lz4RpmnazpUUR5G1LPJZfRxrbIiJqkq0PIMKVltvWYh7iPA3Q8leIF8MqKB~l5bsoIE9OpamV-QN4-pPwpTdf1phvedqP-fOF5encQ6DW7cfXQUHe7-YqO8QMqgqaiof1e3fAmaUrWA-xwLeDs-z1jSjGPYwHpZc7qV6U1~oA__&Key-Pair-Id=K38HBHX5LX3X2H"
style="width: 100%; height: 140px; object-fit: cover; display: block;"
controls
preload="none"
></video>
</div>
<div style="padding: 20px 24px; display: flex; flex-direction: column; justify-content: center;">
<span style="font-size: 11px; letter-spacing: 2px; color: var(--secondary); text-transform: uppercase; font-weight: 600; margin-bottom: 6px;">Episode 4</span>
<h3 style="font-size: 1.1rem; font-weight: 600; color: var(--white);">No Vibe Coding & Dark Factory</h3>
</div>
</div>
<div style="background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; align-items: stretch; gap: 0;">
<div style="flex-shrink: 0; width: 220px; position: relative; background: #000;">
<video
src="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/a3d20973f7ce413e98b300fcdc87d792.mp4?Expires=1775509039&Signature=gSySKmFJahPGNg8Hj302t3ZNXVlX016gYJv7vcn1hWMR09wR9OfriVtL0cnL5W8X7sGwlDppCYATQWDlw0I9x9uqo1NPveaUFybz3LqLfkEJJwWh85hTHsXQfAah16EZY-oiQvJLjGJTfl5vxTrc0rLlDCcLxLguGwxvYnDKqpyF6~0-d8z~bTVZ~-GkcCVcS3l4DD6SDFvgt0JsCIOtYzzzKgkNpSPSIIIC5TJRL1K1ygRl~hISe3UR81MlLzx5O6U7Qs9Bf1Sop6QYDbZQ6UBidUm0KV9BiQHAe6wBRmw9GMIFJCYE-M2r6Ax1LtFOj9QeHpvdRFh3vgL4uma2bw__&Key-Pair-Id=K38HBHX5LX3X2H"
poster="https://files2.heygen.ai/aws_pacific/avatar_tmp/e884123caa4d4c8aa28a339d0c9d97a2/a3d20973f7ce413e98b300fcdc87d792.jpeg?Expires=1775775897&Signature=hjfg3G0F~xcKvGlNbbHiD1S7MhLIy~Gw-6ap8Ov0h7xC3jJjla-pReMAu8ky3UyN0l7WM7rGy6FzSuEV3ivC55otZ5uvCz9T~kejVjOuAMtVTVE6ohAOYG9OSuL05WVd7WHd2dN8tMvxWZZsAPD2Fd-uoGJv9ckikivrFkujnr3G2M6AJz42w-RpUW8rqcEys8O5xtMLeMRJUmWuaNFPHvDCR2w9EuuqnmeHiW5P4GETxXvKgwyXuqGr58lza1d9tajfD6iNhS87o~uXL6xghikgjVK120JGRl3UOH1MLOBLxTGD5-QO1rTqcHOF2D4E94u8hHQsqnD~hUus5r5ECg__&Key-Pair-Id=K38HBHX5LX3X2H"
style="width: 100%; height: 140px; object-fit: cover; display: block;"
controls
preload="none"
></video>
</div>
<div style="padding: 20px 24px; display: flex; flex-direction: column; justify-content: center;">
<span style="font-size: 11px; letter-spacing: 2px; color: var(--secondary); text-transform: uppercase; font-weight: 600; margin-bottom: 6px;">Episode 5</span>
<h3 style="font-size: 1.1rem; font-weight: 600; color: var(--white);">What This Enables</h3>
</div>
</div>
</div>
</div>
</section>
</body>
</html>