-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpresentation.html
More file actions
1038 lines (981 loc) · 42.5 KB
/
presentation.html
File metadata and controls
1038 lines (981 loc) · 42.5 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
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenClaw for Product Managers — Maven Workshop</title>
<!-- Fonts: Archivo Black + Space Grotesk from Google Fonts -->
<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=Archivo+Black&family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
/* ===========================================
CSS CUSTOM PROPERTIES — BOLD SIGNAL THEME
=========================================== */
:root {
--bg-primary: #0e0e0e;
--bg-gradient: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 50%, #0e0e0e 100%);
--card-bg: #FF5722;
--card-bg-alt: #FF7043;
--text-primary: #ffffff;
--text-secondary: rgba(255,255,255,0.5);
--text-on-card: #0e0e0e;
--accent: #FF5722;
--accent-glow: rgba(255, 87, 34, 0.25);
--font-display: 'Archivo Black', sans-serif;
--font-body: 'Space Grotesk', sans-serif;
--title-size: clamp(2rem, 6vw, 5rem);
--h2-size: clamp(1.5rem, 4vw, 3rem);
--h3-size: clamp(1rem, 2.5vw, 1.75rem);
--subtitle-size: clamp(0.875rem, 2vw, 1.25rem);
--body-size: clamp(0.8rem, 1.4vw, 1.1rem);
--small-size: clamp(0.65rem, 1vw, 0.875rem);
--slide-padding: clamp(1.5rem, 4vw, 4rem);
--content-gap: clamp(1rem, 2vw, 2rem);
--element-gap: clamp(0.25rem, 1vw, 1rem);
--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
--duration-normal: 0.6s;
}
/* ===========================================
RESET & BASE
=========================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
/* ===========================================
VIEWPORT FITTING: MANDATORY BASE STYLES
=========================================== */
html, body {
height: 100%;
overflow-x: hidden;
}
html {
scroll-snap-type: y mandatory;
scroll-behavior: smooth;
}
.slide {
width: 100vw;
height: 100vh;
height: 100dvh;
overflow: hidden;
scroll-snap-align: start;
display: flex;
flex-direction: column;
position: relative;
}
.slide-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
max-height: 100%;
overflow: hidden;
padding: var(--slide-padding);
}
.card, .container, .content-box {
max-width: min(90vw, 1000px);
max-height: min(80vh, 700px);
}
.feature-list, .bullet-list {
gap: clamp(0.4rem, 1vh, 1rem);
}
.feature-list li, .bullet-list li {
font-size: var(--body-size);
line-height: 1.4;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
gap: clamp(0.5rem, 1.5vw, 1rem);
}
img, .image-container {
max-width: 100%;
max-height: min(50vh, 400px);
object-fit: contain;
}
@media (max-height: 700px) {
:root {
--slide-padding: clamp(0.75rem, 3vw, 2rem);
--content-gap: clamp(0.4rem, 1.5vw, 1rem);
--title-size: clamp(1.25rem, 4.5vw, 2.5rem);
--h2-size: clamp(1rem, 3vw, 1.75rem);
}
}
@media (max-height: 600px) {
:root {
--slide-padding: clamp(0.5rem, 2.5vw, 1.5rem);
--content-gap: clamp(0.3rem, 1vw, 0.75rem);
--title-size: clamp(1.1rem, 4vw, 2rem);
--body-size: clamp(0.7rem, 1.2vw, 0.95rem);
}
.nav-dots, .keyboard-hint, .decorative { display: none; }
}
@media (max-height: 500px) {
:root {
--slide-padding: clamp(0.4rem, 2vw, 1rem);
--title-size: clamp(1rem, 3.5vw, 1.5rem);
--h2-size: clamp(0.9rem, 2.5vw, 1.25rem);
--body-size: clamp(0.65rem, 1vw, 0.85rem);
}
}
@media (max-width: 600px) {
:root { --title-size: clamp(1.25rem, 7vw, 2.5rem); }
.grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.2s !important;
}
html { scroll-behavior: auto; }
}
/* ===========================================
GLOBAL STYLES — BOLD SIGNAL
=========================================== */
body {
font-family: var(--font-body);
background: var(--bg-primary);
color: var(--text-primary);
}
.slide {
background: var(--bg-gradient);
}
/* ===========================================
SECTION NUMBER — top-left large index
=========================================== */
.section-number {
position: absolute;
top: clamp(1rem, 3vw, 2.5rem);
left: clamp(1.5rem, 4vw, 4rem);
font-family: var(--font-display);
font-size: clamp(0.75rem, 1.2vw, 1rem);
color: var(--text-secondary);
letter-spacing: 0.1em;
z-index: 2;
}
/* ===========================================
NAV BREADCRUMBS — top-right
=========================================== */
.slide-nav {
position: absolute;
top: clamp(1rem, 3vw, 2.5rem);
right: clamp(1.5rem, 4vw, 4rem);
display: flex;
gap: clamp(0.3rem, 0.6vw, 0.5rem);
z-index: 2;
}
.slide-nav span {
width: clamp(18px, 2.5vw, 30px);
height: 3px;
background: rgba(255,255,255,0.15);
border-radius: 2px;
transition: background 0.4s ease;
}
.slide-nav span.active {
background: var(--accent);
}
/* ===========================================
TYPOGRAPHY
=========================================== */
h1 {
font-family: var(--font-display);
font-size: var(--title-size);
line-height: 1.05;
text-transform: uppercase;
letter-spacing: -0.02em;
}
h2 {
font-family: var(--font-display);
font-size: var(--h2-size);
line-height: 1.1;
text-transform: uppercase;
letter-spacing: -0.01em;
}
h3 {
font-family: var(--font-display);
font-size: var(--h3-size);
line-height: 1.2;
}
p, li {
font-family: var(--font-body);
font-size: var(--body-size);
line-height: 1.6;
color: var(--text-secondary);
}
.subtitle {
font-size: var(--subtitle-size);
font-weight: 500;
color: var(--text-secondary);
letter-spacing: 0.05em;
text-transform: uppercase;
}
/* ===========================================
BOLD SIGNAL CARD — colored focal card
=========================================== */
.signal-card {
background: var(--card-bg);
border-radius: clamp(12px, 2vw, 24px);
padding: clamp(1.5rem, 3vw, 3rem);
color: var(--text-on-card);
position: relative;
overflow: hidden;
}
.signal-card h2,
.signal-card h3 {
color: var(--text-on-card);
}
.signal-card p,
.signal-card li {
color: rgba(14,14,14,0.75);
}
/* ===========================================
ANIMATIONS — reveal system
=========================================== */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity var(--duration-normal) var(--ease-out-expo),
transform var(--duration-normal) var(--ease-out-expo);
}
.slide.visible .reveal {
opacity: 1;
transform: translateY(0);
}
.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }
.reveal:nth-child(5) { transition-delay: 0.5s; }
.reveal:nth-child(6) { transition-delay: 0.6s; }
.reveal-scale {
opacity: 0;
transform: scale(0.92);
transition: opacity 0.7s var(--ease-out-expo),
transform 0.7s var(--ease-out-expo);
}
.slide.visible .reveal-scale {
opacity: 1;
transform: scale(1);
}
/* ===========================================
PROGRESS BAR
=========================================== */
.progress-bar {
position: fixed;
top: 0;
left: 0;
height: 3px;
background: var(--accent);
z-index: 9999;
transition: width 0.3s ease;
box-shadow: 0 0 10px var(--accent-glow);
}
/* ===========================================
NAV DOTS
=========================================== */
.nav-dots {
position: fixed;
right: clamp(0.75rem, 1.5vw, 1.5rem);
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: clamp(6px, 0.8vh, 10px);
z-index: 9998;
}
.nav-dots .dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255,255,255,0.15);
cursor: pointer;
transition: all 0.3s ease;
border: none;
padding: 0;
}
.nav-dots .dot.active {
background: var(--accent);
box-shadow: 0 0 8px var(--accent-glow);
transform: scale(1.3);
}
/* ===========================================
SLIDE-SPECIFIC LAYOUTS
=========================================== */
/* --- Title Slide --- */
.title-slide .slide-content {
justify-content: flex-end;
padding-bottom: clamp(3rem, 8vh, 6rem);
}
.title-slide .presenters {
font-size: var(--small-size);
color: var(--text-secondary);
margin-top: clamp(0.5rem, 1.5vh, 1.5rem);
font-weight: 500;
letter-spacing: 0.03em;
}
.title-slide .meta {
font-size: var(--small-size);
color: rgba(255,255,255,0.3);
margin-top: clamp(0.3rem, 0.5vh, 0.5rem);
}
.title-card-accent {
position: absolute;
top: clamp(2rem, 5vh, 4rem);
right: clamp(2rem, 5vw, 6rem);
width: clamp(120px, 25vw, 320px);
height: clamp(120px, 25vw, 320px);
background: var(--card-bg);
border-radius: clamp(12px, 2vw, 24px);
opacity: 0.9;
display: flex;
align-items: center;
justify-content: center;
}
.title-card-accent .stars {
font-family: var(--font-display);
font-size: clamp(1.5rem, 4vw, 3.5rem);
color: var(--text-on-card);
text-align: center;
line-height: 1.2;
}
.title-card-accent .stars span {
display: block;
font-family: var(--font-body);
font-size: clamp(0.6rem, 1vw, 0.85rem);
font-weight: 500;
margin-top: 0.3em;
text-transform: uppercase;
letter-spacing: 0.1em;
}
/* --- Content slide with card --- */
.card-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(1.5rem, 3vw, 3rem);
align-items: center;
height: 100%;
}
@media (max-width: 768px) {
.card-layout { grid-template-columns: 1fr; }
}
/* --- Quote block --- */
.quote-block {
border-left: 3px solid var(--accent);
padding-left: clamp(1rem, 2vw, 2rem);
margin: clamp(1rem, 2vh, 2rem) 0;
}
.quote-block p {
font-size: clamp(1rem, 2vw, 1.5rem);
font-style: italic;
color: rgba(255,255,255,0.8);
line-height: 1.5;
}
/* --- Primitive cards grid --- */
.primitives-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: clamp(0.75rem, 1.5vw, 1.25rem);
margin-top: clamp(1rem, 2vh, 2rem);
}
@media (max-width: 600px) {
.primitives-grid { grid-template-columns: 1fr; }
}
.primitive-card {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.08);
border-radius: clamp(8px, 1.2vw, 16px);
padding: clamp(1rem, 2vw, 1.75rem);
transition: border-color 0.3s ease, background 0.3s ease;
}
.primitive-card:hover {
border-color: var(--accent);
background: rgba(255, 87, 34, 0.05);
}
.primitive-card .icon {
font-size: clamp(1.25rem, 2.5vw, 2rem);
margin-bottom: clamp(0.3rem, 0.8vh, 0.75rem);
}
.primitive-card h3 {
font-size: clamp(0.85rem, 1.5vw, 1.15rem);
margin-bottom: clamp(0.2rem, 0.5vh, 0.5rem);
text-transform: uppercase;
}
.primitive-card p {
font-size: var(--small-size);
line-height: 1.5;
}
/* --- Demo slide --- */
.demo-slide {
background: var(--bg-primary);
}
.demo-slide .slide-content {
align-items: center;
justify-content: center;
text-align: center;
}
.demo-badge {
display: inline-block;
background: var(--card-bg);
color: var(--text-on-card);
font-family: var(--font-body);
font-weight: 700;
font-size: var(--small-size);
padding: clamp(0.3rem, 0.6vw, 0.5rem) clamp(0.8rem, 1.5vw, 1.25rem);
border-radius: 100px;
letter-spacing: 0.15em;
text-transform: uppercase;
margin-bottom: clamp(1rem, 2vh, 2rem);
}
.demo-slide h2 {
max-width: 14ch;
margin: 0 auto;
}
.demo-subtitle {
margin-top: clamp(0.5rem, 1vh, 1rem);
font-size: var(--subtitle-size);
color: var(--text-secondary);
}
/* --- Bullet list styled --- */
.content-list {
list-style: none;
display: flex;
flex-direction: column;
gap: clamp(0.6rem, 1.2vh, 1rem);
margin-top: clamp(1rem, 2vh, 1.5rem);
}
.content-list li {
display: flex;
align-items: flex-start;
gap: clamp(0.5rem, 1vw, 1rem);
color: rgba(255,255,255,0.7);
}
.content-list li::before {
content: '';
flex-shrink: 0;
width: clamp(6px, 0.8vw, 8px);
height: clamp(6px, 0.8vw, 8px);
background: var(--accent);
border-radius: 50%;
margin-top: 0.55em;
}
/* --- Closing slide --- */
.closing-slide .slide-content {
align-items: center;
justify-content: center;
text-align: center;
}
.closing-links {
margin-top: clamp(1rem, 2vh, 2rem);
display: flex;
gap: clamp(1rem, 2vw, 2rem);
flex-wrap: wrap;
justify-content: center;
}
.closing-links a {
color: var(--accent);
text-decoration: none;
font-size: var(--body-size);
font-weight: 600;
border-bottom: 2px solid transparent;
transition: border-color 0.3s ease;
}
.closing-links a:hover {
border-color: var(--accent);
}
/* --- Ambient glow effect --- */
.ambient-glow {
position: absolute;
width: clamp(200px, 40vw, 500px);
height: clamp(200px, 40vw, 500px);
border-radius: 50%;
filter: blur(120px);
opacity: 0.12;
pointer-events: none;
z-index: 0;
}
.glow-orange {
background: #FF5722;
top: -10%;
right: -10%;
}
.glow-deep {
background: #FF7043;
bottom: -15%;
left: -10%;
}
/* Ensure content above glow */
.slide-content { z-index: 1; }
.section-number { z-index: 2; }
/* --- Grid noise texture overlay --- */
.slide::after {
content: '';
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 0;
}
</style>
</head>
<body>
<!-- Progress bar -->
<div class="progress-bar" id="progressBar"></div>
<!-- Nav dots -->
<nav class="nav-dots" id="navDots"></nav>
<!-- ===========================================
SLIDE 1: TITLE
=========================================== -->
<section class="slide title-slide" data-slide="0">
<div class="ambient-glow glow-orange"></div>
<div class="title-card-accent reveal-scale">
<div class="stars">200K+ <span>GitHub Stars</span></div>
</div>
<div class="slide-content">
<p class="subtitle reveal" style="margin-bottom: clamp(0.5rem, 1vh, 1rem);">Maven Workshop</p>
<h1 class="reveal">OpenClaw<br>for Product<br>Managers</h1>
<p class="presenters reveal">Aman Khan · Eric Xiao</p>
<p class="meta reveal">Eric Xiao — Founder @ Bloom · prev AI PM at Meta, Arize</p>
</div>
</section>
<!-- ===========================================
SLIDE 2: THE PROBLEM
=========================================== -->
<section class="slide" data-slide="1">
<div class="ambient-glow glow-deep"></div>
<span class="section-number">01</span>
<div class="slide-content">
<h2 class="reveal">Your AI<br>assistant<br>is broken</h2>
<ul class="content-list" style="margin-top: clamp(1.5rem, 3vh, 2.5rem); max-width: 600px;">
<li class="reveal">You open a tab, type a prompt, wait, copy-paste the output</li>
<li class="reveal">Every session starts from zero — no memory, no context</li>
<li class="reveal">It can't actually <em>do</em> anything on your behalf</li>
<li class="reveal">You're the middleware between AI and your work</li>
</ul>
</div>
</section>
<!-- ===========================================
SLIDE 3: THE VISION — WHAT IF
=========================================== -->
<section class="slide" data-slide="2">
<span class="section-number">02</span>
<div class="slide-content" style="padding-right: clamp(2rem, 10vw, 12rem);">
<h2 class="reveal" style="margin-bottom: clamp(1rem, 2vh, 2rem);">What if AI worked like a senior employee?</h2>
<div class="quote-block reveal">
<p>Send a voice note in your car, a screenshot at midnight, or type a half-formed idea while walking — and it starts doing work on your behalf.</p>
</div>
<p class="reveal" style="margin-top: clamp(0.75rem, 1.5vh, 1.5rem); color: rgba(255,255,255,0.5); font-size: var(--small-size);">
That's OpenClaw. An AI that behaves like a chief of staff.
</p>
</div>
</section>
<!-- ===========================================
SLIDE: UNDER THE HOOD — WHAT IS OPENCLAW?
=========================================== -->
<section class="slide" data-slide="3">
<div class="ambient-glow glow-deep"></div>
<span class="section-number">03</span>
<div class="slide-content">
<h2 class="reveal" style="margin-bottom: clamp(1rem, 2vh, 2rem);">Under the hood</h2>
<div class="primitives-grid">
<div class="primitive-card reveal">
<div class="icon">🖥️</div>
<h3>It's a server on your machine</h3>
<p>OpenClaw runs as a persistent process on your computer. It has access to your files, terminal, and local tools, just like you do sitting at your desk.</p>
</div>
<div class="primitive-card reveal">
<div class="icon">⚡</div>
<h3>Always-on Claude Code</h3>
<p>Think of it like running Claude Code in "dangerously skip permissions" mode, 24/7. It can execute code, install packages, run scripts, no confirmation dialogs.</p>
</div>
<div class="primitive-card reveal">
<div class="icon">🌐</div>
<h3>Full browser access</h3>
<p>It controls a real browser. It can surf the web, scrape information, fill out forms, take screenshots, log into sites, and interact with any web app.</p>
</div>
<div class="primitive-card reveal">
<div class="icon">💬</div>
<h3>Chat is the interface</h3>
<p>You message it on WhatsApp, Discord, or Telegram. Behind the scenes, it has the full power of your machine. The chat is just the remote control.</p>
</div>
</div>
</div>
</section>
<!-- ===========================================
SLIDE 4: THE WOW MOMENT — UX
=========================================== -->
<section class="slide" data-slide="4">
<span class="section-number">04</span>
<div class="slide-content">
<div class="card-layout">
<div>
<p class="subtitle reveal" style="margin-bottom: clamp(0.5rem, 1vh, 1rem);">The Interface</p>
<h2 class="reveal">WhatsApp in.<br>Terminal out.</h2>
<p class="reveal" style="margin-top: clamp(0.75rem, 1.5vh, 1.5rem);">
Message OpenClaw through WhatsApp, Discord, Telegram, or SMS. Behind the scenes, it spins up terminals, browsers, code editors — real compute — and reports back in chat.
</p>
<p class="reveal" style="margin-top: clamp(0.5rem, 1vh, 0.75rem);">
Eric runs his entire company at Bloom through OpenClaw chat messages.
</p>
</div>
<div class="signal-card reveal-scale" style="align-self: center;">
<h3 style="margin-bottom: clamp(0.5rem, 1vh, 0.75rem); font-size: clamp(0.85rem, 1.3vw, 1.1rem);">How it feels</h3>
<p style="font-size: var(--small-size);">💬 "Summarize my inbox and draft replies to anything urgent"</p>
<p style="font-size: var(--small-size); margin-top: 0.5em;">📎 [screenshot] "Build this"</p>
<p style="font-size: var(--small-size); margin-top: 0.5em;">🎙️ "Check if our deploy went through"</p>
<p style="font-size: var(--small-size); margin-top: 1em; font-weight: 600; color: var(--text-on-card);">→ It just does it.</p>
</div>
</div>
</div>
</section>
<!-- ===========================================
SLIDE 5: PRIMITIVES OVERVIEW
=========================================== -->
<section class="slide" data-slide="5">
<span class="section-number">05</span>
<div class="slide-content">
<h2 class="reveal">The Primitives</h2>
<p class="reveal" style="max-width: 500px; margin-top: clamp(0.3rem, 0.5vh, 0.5rem);">Four building blocks that make OpenClaw actually useful — not just chatty.</p>
<div class="primitives-grid">
<div class="primitive-card reveal">
<div class="icon">💬</div>
<h3>Sessions</h3>
<p>Persistent conversations with memory. OpenClaw remembers context across messages, days, and projects. No more re-explaining.</p>
</div>
<div class="primitive-card reveal">
<div class="icon">🌐</div>
<h3>Browser Use</h3>
<p>OpenClaw can open a real browser, navigate sites, fill forms, scrape data, take screenshots. Full web autonomy.</p>
</div>
<div class="primitive-card reveal">
<div class="icon">⚡</div>
<h3>Skills</h3>
<p>Reusable instruction sets — like giving your AI employee an SOP. "Post to Twitter," "Generate a report," "Deploy to prod."</p>
</div>
<div class="primitive-card reveal">
<div class="icon">⏰</div>
<h3>Cron Jobs</h3>
<p>Schedule recurring tasks. Daily standup summaries, weekly metric pulls, hourly feed checks — it runs while you sleep.</p>
</div>
</div>
</div>
</section>
<!-- ===========================================
SLIDE 6: DEEP DIVE — SESSIONS
=========================================== -->
<section class="slide" data-slide="6">
<span class="section-number">06</span>
<div class="slide-content">
<div class="card-layout">
<div>
<p class="subtitle reveal">Primitive 01</p>
<h2 class="reveal" style="margin-top: clamp(0.3rem, 0.5vh, 0.5rem);">Sessions</h2>
<ul class="content-list" style="margin-top: clamp(1rem, 2vh, 1.5rem);">
<li class="reveal">Every chat thread is a session with persistent memory</li>
<li class="reveal">OpenClaw reads daily memory files and a long-term knowledge base</li>
<li class="reveal">Knows your preferences, past decisions, and project state</li>
<li class="reveal">Works across WhatsApp, Discord, Telegram, web — same brain</li>
</ul>
</div>
<div class="signal-card reveal-scale" style="align-self: center;">
<h3 style="font-size: clamp(0.8rem, 1.2vw, 1rem); margin-bottom: 0.75em;">Session Memory Stack</h3>
<p style="font-size: var(--small-size);">📁 SOUL.md — personality & rules</p>
<p style="font-size: var(--small-size); margin-top: 0.4em;">📁 MEMORY.md — long-term knowledge</p>
<p style="font-size: var(--small-size); margin-top: 0.4em;">📁 memory/daily.md — today's context</p>
<p style="font-size: var(--small-size); margin-top: 0.4em;">📁 USER.md — who you are</p>
<p style="font-size: var(--small-size); margin-top: 0.6em; font-weight: 600;">= Feels like talking to someone who <em style="color: var(--text-on-card);">knows</em> you</p>
</div>
</div>
</div>
</section>
<!-- ===========================================
SLIDE 7: DEEP DIVE — SKILLS & BROWSER
=========================================== -->
<section class="slide" data-slide="7">
<span class="section-number">07</span>
<div class="slide-content">
<div class="card-layout">
<div>
<p class="subtitle reveal">Primitive 02 & 03</p>
<h2 class="reveal" style="margin-top: clamp(0.3rem, 0.5vh, 0.5rem);">Skills &<br>Browser Use</h2>
<ul class="content-list" style="margin-top: clamp(1rem, 2vh, 1.5rem);">
<li class="reveal"><strong style="color: #fff;">Skills</strong> are markdown SOPs your AI follows — deterministic, reusable, shareable</li>
<li class="reveal">Example: "Write a LinkedIn post from this transcript" — same quality every time</li>
<li class="reveal"><strong style="color: #fff;">Browser Use</strong> gives OpenClaw a full Chromium instance</li>
<li class="reveal">Navigate, click, screenshot, extract — real web tasks, hands-free</li>
</ul>
</div>
<div style="display: flex; flex-direction: column; gap: clamp(0.75rem, 1.5vh, 1rem); align-self: center;">
<div class="primitive-card reveal" style="border-color: var(--accent);">
<h3 style="font-size: clamp(0.75rem, 1.1vw, 0.95rem);">Skill Example</h3>
<p style="font-family: 'Space Grotesk', monospace; font-size: var(--small-size); margin-top: 0.4em; color: rgba(255,255,255,0.6);">
/skill social-post<br>
→ reads transcript<br>
→ extracts key insight<br>
→ writes post in your voice<br>
→ formats for platform
</p>
</div>
<div class="primitive-card reveal" style="border-color: var(--accent);">
<h3 style="font-size: clamp(0.75rem, 1.1vw, 0.95rem);">Browser Example</h3>
<p style="font-family: 'Space Grotesk', monospace; font-size: var(--small-size); margin-top: 0.4em; color: rgba(255,255,255,0.6);">
"Check Product Hunt for<br>
trending AI tools today"<br>
→ opens browser<br>
→ scrapes top 10<br>
→ sends summary in chat
</p>
</div>
</div>
</div>
</div>
</section>
<!-- ===========================================
SLIDE 8: DEEP DIVE — CRON
=========================================== -->
<section class="slide" data-slide="8">
<span class="section-number">08</span>
<div class="slide-content" style="max-width: 800px;">
<p class="subtitle reveal">Primitive 04</p>
<h2 class="reveal" style="margin-top: clamp(0.3rem, 0.5vh, 0.5rem);">Cron Jobs</h2>
<p class="reveal" style="margin-top: clamp(0.5rem, 1vh, 1rem); max-width: 550px;">
Schedule anything. OpenClaw wakes up on a timer, does the work, and reports back. You set it and forget it.
</p>
<ul class="content-list" style="margin-top: clamp(1rem, 2vh, 1.5rem);">
<li class="reveal"><strong style="color:#fff;">Every morning at 8am</strong> — "Summarize my email inbox and calendar for today"</li>
<li class="reveal"><strong style="color:#fff;">Every Friday at 5pm</strong> — "Pull weekly metrics from our dashboard and post to Slack"</li>
<li class="reveal"><strong style="color:#fff;">Every 2 hours</strong> — "Check Twitter mentions and flag anything that needs a reply"</li>
<li class="reveal"><strong style="color:#fff;">One-shot timer</strong> — "Remind me in 20 minutes to join the standup"</li>
</ul>
</div>
</section>
<!-- ===========================================
SLIDE 9: DEMO — SOCIAL POST SKILLS
=========================================== -->
<section class="slide demo-slide" data-slide="9">
<div class="ambient-glow glow-orange" style="top: 50%; left: 50%; transform: translate(-50%, -50%);"></div>
<div class="slide-content">
<div class="demo-badge reveal">Live Demo</div>
<h2 class="reveal">Social Post<br>Skills</h2>
<p class="demo-subtitle reveal">Two skills, two platforms — same transcript, tailored output</p>
</div>
</section>
<!-- ===========================================
SLIDE 10: DEMO — PROMPT TO PROTOTYPE
=========================================== -->
<section class="slide demo-slide" data-slide="10">
<div class="ambient-glow glow-deep" style="top: 50%; left: 50%; transform: translate(-50%, -50%);"></div>
<div class="slide-content">
<div class="demo-badge reveal">Live Demo</div>
<h2 class="reveal">Prompt to<br>Prototype</h2>
<p class="demo-subtitle reveal">From a text description to a working UI — in one message</p>
</div>
</section>
<!-- ===========================================
SLIDE 11: DEMO — TWITTER FEED
=========================================== -->
<section class="slide demo-slide"data-slide="11"">
<div class="ambient-glow glow-orange" style="top: 50%; left: 50%; transform: translate(-50%, -50%);"></div>
<div class="slide-content">
<div class="demo-badge reveal">Live Demo</div>
<h2 class="reveal">Summarize<br>My Twitter<br>Feed</h2>
<p class="demo-subtitle reveal">Browser use + curation — OpenClaw reads so you don't have to</p>
</div>
</section>
<!-- ===========================================
SLIDE 12: WHY PMs SHOULD CARE
=========================================== -->
<section class="slide"data-slide="12"">
<span class="section-number">09</span>
<div class="slide-content">
<h2 class="reveal">Why this<br>matters for PMs</h2>
<ul class="content-list" style="margin-top: clamp(1.5rem, 3vh, 2.5rem); max-width: 650px;">
<li class="reveal"><strong style="color:#fff;">Prototype faster</strong> — go from idea to clickable prototype in minutes, not sprints</li>
<li class="reveal"><strong style="color:#fff;">Automate the grind</strong> — status updates, metric pulls, competitive monitoring run on autopilot</li>
<li class="reveal"><strong style="color:#fff;">Stay in flow</strong> — fire off tasks from your phone and context-switch back to the meeting</li>
<li class="reveal"><strong style="color:#fff;">Compound leverage</strong> — skills build on skills; your AI gets more capable the more you use it</li>
<li class="reveal"><strong style="color:#fff;">Ship side projects</strong> — that internal tool you never had eng bandwidth for? Now you do</li>
</ul>
</div>
</section>
<!-- ===========================================
SLIDE 13: GETTING STARTED
=========================================== -->
<section class="slide"data-slide="13"">
<span class="section-number">10</span>
<div class="slide-content">
<h2 class="reveal">Getting<br>started</h2>
<div class="primitives-grid" style="max-width: 700px; margin-top: clamp(1.5rem, 3vh, 2rem);">
<div class="primitive-card reveal">
<div class="icon">1️⃣</div>
<h3>Install</h3>
<p>Clone the repo, run the setup script. Works on Mac, Linux, or remote server.</p>
</div>
<div class="primitive-card reveal">
<div class="icon">2️⃣</div>
<h3>Connect</h3>
<p>Link your WhatsApp, Discord, or preferred chat interface. That's your cockpit.</p>
</div>
<div class="primitive-card reveal">
<div class="icon">3️⃣</div>
<h3>Personalize</h3>
<p>Write your SOUL.md, USER.md, and first skills. Teach it how you work.</p>
</div>
<div class="primitive-card reveal">
<div class="icon">4️⃣</div>
<h3>Delegate</h3>
<p>Start small — a daily summary, a social post skill. Then go bigger.</p>
</div>
</div>
</div>
</section>
<!-- ===========================================
SLIDE 14: CLOSING
=========================================== -->
<section class="slide closing-slide"data-slide="14"">
<div class="ambient-glow glow-orange"></div>
<div class="ambient-glow glow-deep"></div>
<div class="slide-content">
<p class="subtitle reveal" style="margin-bottom: clamp(0.5rem, 1vh, 1rem);">Thank You</p>
<h2 class="reveal" style="font-size: var(--title-size);">Start<br>delegating.</h2>
<p class="reveal" style="margin-top: clamp(1rem, 2vh, 1.5rem); color: var(--text-secondary); max-width: 450px; margin-left: auto; margin-right: auto;">
The best PMs don't do more work.<br>They build systems that do the work for them.
</p>
<div class="closing-links reveal">
<a href="https://github.com/openclaw" target="_blank">GitHub</a>
<a href="https://maven.com" target="_blank">Maven Course</a>
</div>
<p class="reveal" style="margin-top: clamp(1.5rem, 3vh, 2.5rem); font-size: var(--small-size); color: rgba(255,255,255,0.3);">
Aman Khan · Eric Xiao · Maven 2026
</p>
</div>
</section>
<script>
/* ===========================================
SLIDE PRESENTATION CONTROLLER
=========================================== */
class SlidePresentation {
constructor() {
this.slides = document.querySelectorAll('.slide');
this.currentSlide = 0;
this.isScrolling = false;
this.totalSlides = this.slides.length;
this.setupIntersectionObserver();
this.setupKeyboardNav();
this.setupTouchNav();
this.setupProgressBar();
this.setupNavDots();
this.setupWheelNav();
// Mark first slide visible
this.slides[0].classList.add('visible');
}
/* --- Intersection Observer for reveal animations --- */
setupIntersectionObserver() {
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
const idx = Array.from(this.slides).indexOf(entry.target);
if (idx !== -1) {
this.currentSlide = idx;
this.updateNavDots();
this.updateProgressBar();
this.updateBreadcrumbs();
}
}
});
}, { threshold: 0.5 });
this.slides.forEach(slide => observer.observe(slide));
}
/* --- Keyboard: arrows, space, page up/down --- */
setupKeyboardNav() {
document.addEventListener('keydown', (e) => {
if (e.key === 'ArrowDown' || e.key === 'ArrowRight' || e.key === ' ' || e.key === 'PageDown') {
e.preventDefault();
this.goToSlide(this.currentSlide + 1);
} else if (e.key === 'ArrowUp' || e.key === 'ArrowLeft' || e.key === 'PageUp') {
e.preventDefault();
this.goToSlide(this.currentSlide - 1);
} else if (e.key === 'Home') {
e.preventDefault();
this.goToSlide(0);
} else if (e.key === 'End') {
e.preventDefault();
this.goToSlide(this.totalSlides - 1);
}
});
}
/* --- Touch/swipe support --- */
setupTouchNav() {
let startY = 0;
document.addEventListener('touchstart', (e) => {
startY = e.touches[0].clientY;
}, { passive: true });
document.addEventListener('touchend', (e) => {
const diff = startY - e.changedTouches[0].clientY;
if (Math.abs(diff) > 50) {
this.goToSlide(this.currentSlide + (diff > 0 ? 1 : -1));
}
}, { passive: true });
}
/* --- Mouse wheel navigation --- */
setupWheelNav() {
let timeout;
document.addEventListener('wheel', (e) => {
if (this.isScrolling) return;
clearTimeout(timeout);
timeout = setTimeout(() => {
if (Math.abs(e.deltaY) > 30) {
this.isScrolling = true;
this.goToSlide(this.currentSlide + (e.deltaY > 0 ? 1 : -1));
setTimeout(() => { this.isScrolling = false; }, 800);
}
}, 50);
}, { passive: true });
}
/* --- Navigate to slide --- */
goToSlide(index) {
if (index < 0 || index >= this.totalSlides) return;
this.currentSlide = index;
this.slides[index].scrollIntoView({ behavior: 'smooth' });
}
/* --- Progress bar --- */
setupProgressBar() {
this.progressBar = document.getElementById('progressBar');
this.updateProgressBar();
}
updateProgressBar() {
const pct = ((this.currentSlide + 1) / this.totalSlides) * 100;
if (this.progressBar) this.progressBar.style.width = pct + '%';