@godmode-team/godmode 1.0.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/README.md +46 -46
  2. package/dist/godmode-ui/aeo.html +989 -0
  3. package/dist/godmode-ui/apple-touch-icon.png +0 -0
  4. package/dist/godmode-ui/assets/dashboards-BWn_hwxU.js +1 -0
  5. package/dist/godmode-ui/assets/index-DLms34x3.css +1 -0
  6. package/dist/godmode-ui/assets/index-DSS-Mmm_.js +9315 -0
  7. package/dist/godmode-ui/assets/onboarding-setup-eq3R6nNk.js +1 -0
  8. package/dist/godmode-ui/assets/options-QuHclvvX.js +1 -0
  9. package/dist/godmode-ui/assets/proactive-intel-BU5IobT1.js +1 -0
  10. package/dist/godmode-ui/assets/second-brain-nWUdvmOD.js +1 -0
  11. package/dist/godmode-ui/assets/setup-DDvbMoK2.js +1 -0
  12. package/dist/godmode-ui/consciousness-icon-64.png +0 -0
  13. package/dist/godmode-ui/consciousness-icon.png +0 -0
  14. package/dist/godmode-ui/consciousness-icon.webp +0 -0
  15. package/dist/godmode-ui/favicon-32.png +0 -0
  16. package/dist/godmode-ui/favicon.ico +0 -0
  17. package/dist/godmode-ui/favicon.svg +7 -1
  18. package/dist/godmode-ui/godmode-logo.png +0 -0
  19. package/dist/godmode-ui/how-to-godmode.html +1416 -0
  20. package/dist/godmode-ui/index.html +7 -6
  21. package/dist/index.js +27620 -5659
  22. package/openclaw.plugin.json +86 -1
  23. package/package.json +49 -9
  24. package/dist/deck/assets/index-Dq6YBWDo.css +0 -10
  25. package/dist/deck/assets/index-OeRjiyQU.js +0 -83
  26. package/dist/deck/index.html +0 -17
  27. package/dist/godmode-ui/assets/index-BPHog2ro.css +0 -1
  28. package/dist/godmode-ui/assets/index-D7TzQ2zb.js +0 -4985
  29. package/dist/godmode-ui/caleb-avatar.jpg +0 -0
  30. package/dist/godmode-ui/favicon-new.svg +0 -3
  31. package/dist/godmode-ui/favicon.ico.svg +0 -3
  32. package/dist/godmode-ui/lightning-icon.svg +0 -3
  33. package/dist/godmode-ui/vite.svg +0 -1
  34. package/dist/index.js.map +0 -1
@@ -0,0 +1,1416 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>How to GodMode</title>
7
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
8
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9
+ <link
10
+ href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
11
+ rel="stylesheet"
12
+ />
13
+ <style>
14
+ :root {
15
+ --bg: #12141a;
16
+ --bg-elevated: #1a1d25;
17
+ --bg-hover: #262a35;
18
+ --card: #181b22;
19
+ --text: #e4e4e7;
20
+ --text-strong: #fafafa;
21
+ --muted: #71717a;
22
+ --border: #27272a;
23
+ --accent: #ff6b6b;
24
+ --accent-hover: #ff8585;
25
+ --accent-subtle: rgba(255, 107, 107, 0.18);
26
+ --accent-glow: rgba(255, 107, 107, 0.3);
27
+ --accent-2: #14b8a6;
28
+ --accent-2-subtle: rgba(20, 184, 166, 0.15);
29
+ --ok: #22c55e;
30
+ --ok-subtle: rgba(34, 197, 94, 0.12);
31
+ --warn: #f59e0b;
32
+ --warn-subtle: rgba(245, 158, 11, 0.12);
33
+ --info: #3b82f6;
34
+ --info-subtle: rgba(59, 130, 246, 0.12);
35
+ --mono: "JetBrains Mono", monospace;
36
+ --font-body: "Space Grotesk", sans-serif;
37
+ --radius-md: 8px;
38
+ --radius-lg: 12px;
39
+ --radius-xl: 16px;
40
+ --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.35);
41
+ color-scheme: dark;
42
+ }
43
+
44
+ * {
45
+ box-sizing: border-box;
46
+ }
47
+
48
+ html {
49
+ scroll-behavior: smooth;
50
+ }
51
+
52
+ body {
53
+ margin: 0;
54
+ font: 400 16px/1.7 var(--font-body);
55
+ letter-spacing: -0.02em;
56
+ background: var(--bg);
57
+ color: var(--text);
58
+ -webkit-font-smoothing: antialiased;
59
+ }
60
+
61
+ /* Hero Section */
62
+ .hero {
63
+ position: relative;
64
+ padding: 80px 24px 60px;
65
+ text-align: center;
66
+ background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
67
+ overflow: hidden;
68
+ }
69
+
70
+ .hero::before {
71
+ content: "";
72
+ position: absolute;
73
+ top: -50%;
74
+ left: 50%;
75
+ transform: translateX(-50%);
76
+ width: 800px;
77
+ height: 800px;
78
+ background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
79
+ opacity: 0.4;
80
+ pointer-events: none;
81
+ }
82
+
83
+ .hero-content {
84
+ position: relative;
85
+ z-index: 1;
86
+ max-width: 700px;
87
+ margin: 0 auto;
88
+ }
89
+
90
+ .hero h1 {
91
+ font-size: clamp(2.5rem, 8vw, 4rem);
92
+ font-weight: 700;
93
+ color: var(--text-strong);
94
+ margin: 0 0 16px;
95
+ letter-spacing: -0.04em;
96
+ }
97
+
98
+ .hero h1 span {
99
+ background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
100
+ -webkit-background-clip: text;
101
+ -webkit-text-fill-color: transparent;
102
+ background-clip: text;
103
+ }
104
+
105
+ .hero p {
106
+ font-size: 1.25rem;
107
+ color: var(--muted);
108
+ margin: 0 0 32px;
109
+ max-width: 500px;
110
+ margin-left: auto;
111
+ margin-right: auto;
112
+ }
113
+
114
+ .hero-cta {
115
+ display: inline-flex;
116
+ align-items: center;
117
+ gap: 8px;
118
+ padding: 14px 28px;
119
+ background: var(--accent);
120
+ color: #fff;
121
+ font-weight: 600;
122
+ border-radius: var(--radius-lg);
123
+ text-decoration: none;
124
+ transition: all 0.2s ease;
125
+ box-shadow: 0 4px 20px var(--accent-glow);
126
+ }
127
+
128
+ .hero-cta:hover {
129
+ background: var(--accent-hover);
130
+ transform: translateY(-2px);
131
+ box-shadow: 0 8px 30px var(--accent-glow);
132
+ text-decoration: none;
133
+ }
134
+
135
+ /* Navigation */
136
+ .nav {
137
+ position: sticky;
138
+ top: 0;
139
+ z-index: 100;
140
+ background: rgba(18, 20, 26, 0.95);
141
+ backdrop-filter: blur(12px);
142
+ border-bottom: 1px solid var(--border);
143
+ padding: 12px 24px;
144
+ }
145
+
146
+ .nav-inner {
147
+ max-width: 1200px;
148
+ margin: 0 auto;
149
+ display: flex;
150
+ gap: 8px;
151
+ overflow-x: auto;
152
+ scrollbar-width: none;
153
+ }
154
+
155
+ .nav-inner::-webkit-scrollbar {
156
+ display: none;
157
+ }
158
+
159
+ .nav a {
160
+ padding: 8px 16px;
161
+ color: var(--muted);
162
+ font-size: 14px;
163
+ font-weight: 500;
164
+ border-radius: var(--radius-md);
165
+ white-space: nowrap;
166
+ text-decoration: none;
167
+ transition: all 0.15s ease;
168
+ }
169
+
170
+ .nav a:hover {
171
+ color: var(--text);
172
+ background: var(--bg-hover);
173
+ text-decoration: none;
174
+ }
175
+
176
+ /* Main Content */
177
+ .content {
178
+ max-width: 900px;
179
+ margin: 0 auto;
180
+ padding: 60px 24px 100px;
181
+ }
182
+
183
+ /* Section */
184
+ section {
185
+ margin-bottom: 80px;
186
+ scroll-margin-top: 80px;
187
+ }
188
+
189
+ section h2 {
190
+ font-size: 2rem;
191
+ font-weight: 700;
192
+ color: var(--text-strong);
193
+ margin: 0 0 24px;
194
+ letter-spacing: -0.03em;
195
+ display: flex;
196
+ align-items: center;
197
+ gap: 12px;
198
+ }
199
+
200
+ section h2 .icon {
201
+ width: 40px;
202
+ height: 40px;
203
+ background: var(--accent-subtle);
204
+ border-radius: var(--radius-md);
205
+ display: flex;
206
+ align-items: center;
207
+ justify-content: center;
208
+ color: var(--accent);
209
+ }
210
+
211
+ section h3 {
212
+ font-size: 1.25rem;
213
+ font-weight: 600;
214
+ color: var(--text-strong);
215
+ margin: 32px 0 16px;
216
+ }
217
+
218
+ section p {
219
+ margin: 0 0 16px;
220
+ color: var(--text);
221
+ }
222
+
223
+ /* Feature Cards */
224
+ .feature-grid {
225
+ display: grid;
226
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
227
+ gap: 20px;
228
+ margin: 24px 0;
229
+ }
230
+
231
+ .feature-card {
232
+ background: var(--card);
233
+ border: 1px solid var(--border);
234
+ border-radius: var(--radius-lg);
235
+ padding: 24px;
236
+ transition: all 0.2s ease;
237
+ }
238
+
239
+ .feature-card:hover {
240
+ border-color: var(--accent);
241
+ transform: translateY(-2px);
242
+ box-shadow: var(--shadow-lg);
243
+ }
244
+
245
+ .feature-card h4 {
246
+ font-size: 1.1rem;
247
+ font-weight: 600;
248
+ color: var(--text-strong);
249
+ margin: 0 0 8px;
250
+ display: flex;
251
+ align-items: center;
252
+ gap: 10px;
253
+ }
254
+
255
+ .feature-card h4 svg {
256
+ color: var(--accent);
257
+ }
258
+
259
+ .feature-card p {
260
+ color: var(--muted);
261
+ margin: 0;
262
+ font-size: 14px;
263
+ }
264
+
265
+ /* Highlight Box */
266
+ .highlight-box {
267
+ background: linear-gradient(135deg, var(--accent-subtle) 0%, rgba(20, 184, 166, 0.1) 100%);
268
+ border: 1px solid var(--accent);
269
+ border-radius: var(--radius-xl);
270
+ padding: 32px;
271
+ margin: 32px 0;
272
+ }
273
+
274
+ .highlight-box h3 {
275
+ color: var(--accent);
276
+ margin-top: 0;
277
+ font-size: 1.5rem;
278
+ }
279
+
280
+ .highlight-box p {
281
+ font-size: 1.1rem;
282
+ }
283
+
284
+ /* Juggling Section - Special Treatment */
285
+ .juggling-visual {
286
+ display: flex;
287
+ justify-content: center;
288
+ gap: 16px;
289
+ margin: 32px 0;
290
+ flex-wrap: wrap;
291
+ }
292
+
293
+ .juggle-ball {
294
+ width: 80px;
295
+ height: 80px;
296
+ border-radius: 50%;
297
+ display: flex;
298
+ align-items: center;
299
+ justify-content: center;
300
+ font-size: 32px;
301
+ animation: juggle 2s ease-in-out infinite;
302
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
303
+ }
304
+
305
+ .juggle-ball:nth-child(1) {
306
+ background: linear-gradient(135deg, #ff6b6b, #ff8585);
307
+ animation-delay: 0s;
308
+ }
309
+
310
+ .juggle-ball:nth-child(2) {
311
+ background: linear-gradient(135deg, #14b8a6, #2dd4bf);
312
+ animation-delay: 0.3s;
313
+ }
314
+
315
+ .juggle-ball:nth-child(3) {
316
+ background: linear-gradient(135deg, #3b82f6, #60a5fa);
317
+ animation-delay: 0.6s;
318
+ }
319
+
320
+ .juggle-ball:nth-child(4) {
321
+ background: linear-gradient(135deg, #f59e0b, #fbbf24);
322
+ animation-delay: 0.9s;
323
+ }
324
+
325
+ .juggle-ball:nth-child(5) {
326
+ background: linear-gradient(135deg, #8b5cf6, #a78bfa);
327
+ animation-delay: 1.2s;
328
+ }
329
+
330
+ @keyframes juggle {
331
+ 0%,
332
+ 100% {
333
+ transform: translateY(0);
334
+ }
335
+ 50% {
336
+ transform: translateY(-20px);
337
+ }
338
+ }
339
+
340
+ /* Steps List */
341
+ .steps {
342
+ counter-reset: step;
343
+ list-style: none;
344
+ padding: 0;
345
+ margin: 24px 0;
346
+ }
347
+
348
+ .steps li {
349
+ position: relative;
350
+ padding-left: 60px;
351
+ margin-bottom: 24px;
352
+ min-height: 48px;
353
+ }
354
+
355
+ .steps li::before {
356
+ counter-increment: step;
357
+ content: counter(step);
358
+ position: absolute;
359
+ left: 0;
360
+ top: 0;
361
+ width: 40px;
362
+ height: 40px;
363
+ background: var(--accent-subtle);
364
+ color: var(--accent);
365
+ border-radius: 50%;
366
+ display: flex;
367
+ align-items: center;
368
+ justify-content: center;
369
+ font-weight: 700;
370
+ font-size: 18px;
371
+ }
372
+
373
+ .steps li strong {
374
+ color: var(--text-strong);
375
+ display: block;
376
+ font-size: 1.1rem;
377
+ margin-bottom: 4px;
378
+ }
379
+
380
+ /* Channel Cards */
381
+ .channel-grid {
382
+ display: grid;
383
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
384
+ gap: 16px;
385
+ margin: 24px 0;
386
+ }
387
+
388
+ .channel-card {
389
+ background: var(--card);
390
+ border: 1px solid var(--border);
391
+ border-radius: var(--radius-lg);
392
+ padding: 20px;
393
+ text-align: center;
394
+ transition: all 0.2s ease;
395
+ }
396
+
397
+ .channel-card:hover {
398
+ border-color: var(--accent);
399
+ transform: scale(1.02);
400
+ }
401
+
402
+ .channel-card .emoji {
403
+ font-size: 36px;
404
+ margin-bottom: 12px;
405
+ }
406
+
407
+ .channel-card h4 {
408
+ margin: 0 0 8px;
409
+ color: var(--text-strong);
410
+ }
411
+
412
+ .channel-card p {
413
+ margin: 0;
414
+ font-size: 13px;
415
+ color: var(--muted);
416
+ }
417
+
418
+ .channel-card .badge {
419
+ display: inline-block;
420
+ padding: 4px 8px;
421
+ background: var(--ok-subtle);
422
+ color: var(--ok);
423
+ font-size: 11px;
424
+ font-weight: 600;
425
+ border-radius: var(--radius-md);
426
+ margin-top: 12px;
427
+ }
428
+
429
+ .channel-card .badge.warn {
430
+ background: var(--warn-subtle);
431
+ color: var(--warn);
432
+ }
433
+
434
+ /* Code blocks */
435
+ code {
436
+ font-family: var(--mono);
437
+ font-size: 0.9em;
438
+ background: var(--bg-elevated);
439
+ padding: 2px 6px;
440
+ border-radius: 4px;
441
+ color: var(--accent);
442
+ }
443
+
444
+ pre {
445
+ background: var(--bg-elevated);
446
+ border: 1px solid var(--border);
447
+ border-radius: var(--radius-md);
448
+ padding: 16px;
449
+ overflow-x: auto;
450
+ margin: 16px 0;
451
+ }
452
+
453
+ pre code {
454
+ background: none;
455
+ padding: 0;
456
+ color: var(--text);
457
+ }
458
+
459
+ /* Tips */
460
+ .tip {
461
+ background: var(--info-subtle);
462
+ border-left: 4px solid var(--info);
463
+ padding: 16px 20px;
464
+ border-radius: 0 var(--radius-md) var(--radius-md) 0;
465
+ margin: 24px 0;
466
+ }
467
+
468
+ .tip strong {
469
+ color: var(--info);
470
+ }
471
+
472
+ .warning {
473
+ background: var(--warn-subtle);
474
+ border-left: 4px solid var(--warn);
475
+ padding: 16px 20px;
476
+ border-radius: 0 var(--radius-md) var(--radius-md) 0;
477
+ margin: 24px 0;
478
+ }
479
+
480
+ .warning strong {
481
+ color: var(--warn);
482
+ }
483
+
484
+ /* Security Section */
485
+ .security-grid {
486
+ display: grid;
487
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
488
+ gap: 16px;
489
+ margin: 24px 0;
490
+ }
491
+
492
+ .security-item {
493
+ background: var(--card);
494
+ border: 1px solid var(--border);
495
+ border-radius: var(--radius-lg);
496
+ padding: 20px;
497
+ }
498
+
499
+ .security-item h4 {
500
+ margin: 0 0 8px;
501
+ color: var(--text-strong);
502
+ display: flex;
503
+ align-items: center;
504
+ gap: 8px;
505
+ }
506
+
507
+ .security-item h4 .check {
508
+ color: var(--ok);
509
+ }
510
+
511
+ .security-item p {
512
+ margin: 0;
513
+ font-size: 14px;
514
+ color: var(--muted);
515
+ }
516
+
517
+ /* Capability List */
518
+ .capability-list {
519
+ display: grid;
520
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
521
+ gap: 12px;
522
+ margin: 24px 0;
523
+ }
524
+
525
+ .capability-item {
526
+ display: flex;
527
+ align-items: center;
528
+ gap: 10px;
529
+ padding: 12px 16px;
530
+ background: var(--card);
531
+ border-radius: var(--radius-md);
532
+ font-size: 14px;
533
+ }
534
+
535
+ .capability-item svg {
536
+ color: var(--ok);
537
+ flex-shrink: 0;
538
+ }
539
+
540
+ /* Footer */
541
+ .footer {
542
+ text-align: center;
543
+ padding: 40px 24px;
544
+ border-top: 1px solid var(--border);
545
+ color: var(--muted);
546
+ }
547
+
548
+ .footer a {
549
+ color: var(--accent);
550
+ }
551
+
552
+ /* Back to app button */
553
+ .back-btn {
554
+ position: fixed;
555
+ bottom: 24px;
556
+ right: 24px;
557
+ padding: 12px 20px;
558
+ background: var(--accent);
559
+ color: #fff;
560
+ font-weight: 600;
561
+ border-radius: var(--radius-lg);
562
+ text-decoration: none;
563
+ box-shadow: 0 4px 20px var(--accent-glow);
564
+ z-index: 1000;
565
+ transition: all 0.2s ease;
566
+ }
567
+
568
+ .back-btn:hover {
569
+ background: var(--accent-hover);
570
+ transform: translateY(-2px);
571
+ text-decoration: none;
572
+ }
573
+
574
+ /* Responsive */
575
+ @media (max-width: 600px) {
576
+ .hero {
577
+ padding: 60px 20px 40px;
578
+ }
579
+ .content {
580
+ padding: 40px 20px 80px;
581
+ }
582
+ section {
583
+ margin-bottom: 60px;
584
+ }
585
+ .steps li {
586
+ padding-left: 50px;
587
+ }
588
+ }
589
+ </style>
590
+ </head>
591
+ <body>
592
+ <div class="hero">
593
+ <div class="hero-content">
594
+ <h1>How to <span>GodMode</span></h1>
595
+ <p>
596
+ Your AI assistant that never sleeps. Learn how to get the most out of your 24/7
597
+ intelligent companion.
598
+ </p>
599
+ <a href="#getting-started" class="hero-cta">
600
+ Get Started
601
+ <svg
602
+ width="20"
603
+ height="20"
604
+ viewBox="0 0 24 24"
605
+ fill="none"
606
+ stroke="currentColor"
607
+ stroke-width="2"
608
+ >
609
+ <path d="M5 12h14M12 5l7 7-7 7" />
610
+ </svg>
611
+ </a>
612
+ </div>
613
+ </div>
614
+
615
+ <nav class="nav">
616
+ <div class="nav-inner">
617
+ <a href="#getting-started">Getting Started</a>
618
+ <a href="#channels">Channels</a>
619
+ <a href="#juggling">Juggling</a>
620
+ <a href="#capabilities">Capabilities</a>
621
+ <a href="#daily-brief">Daily Brief</a>
622
+ <a href="#access">Giving Access</a>
623
+ <a href="#security">Security</a>
624
+ <a href="#tips">Pro Tips</a>
625
+ </div>
626
+ </nav>
627
+
628
+ <main class="content">
629
+ <!-- Getting Started -->
630
+ <section id="getting-started">
631
+ <h2>
632
+ <span class="icon">
633
+ <svg
634
+ width="24"
635
+ height="24"
636
+ viewBox="0 0 24 24"
637
+ fill="none"
638
+ stroke="currentColor"
639
+ stroke-width="2"
640
+ >
641
+ <path d="M22 11.08V12a10 10 0 1 1-5.93-9.14" />
642
+ <polyline points="22 4 12 14.01 9 11.01" />
643
+ </svg>
644
+ </span>
645
+ Getting Started
646
+ </h2>
647
+ <p>
648
+ GodMode is your AI assistant that runs 24/7, ready to help you with anything from drafting
649
+ emails to managing complex projects. Here's how to start using it:
650
+ </p>
651
+
652
+ <ol class="steps">
653
+ <li>
654
+ <strong>You're already here!</strong>
655
+ The web UI you're looking at right now is your command center. This is where you can
656
+ chat with GodMode, see your conversations, and manage everything.
657
+ </li>
658
+ <li>
659
+ <strong>Send your first message</strong>
660
+ Try something simple: "Hello! Tell me a joke." or "What can you help me with?" GodMode
661
+ will respond and you'll be off to the races.
662
+ </li>
663
+ <li>
664
+ <strong>Set up a messaging channel</strong>
665
+ While the web UI is great, the real magic happens when GodMode meets you where you
666
+ already are - Slack, Telegram, or even iMessage.
667
+ </li>
668
+ <li>
669
+ <strong>Get your Daily Brief</strong>
670
+ Tomorrow morning at 7 AM, your personalized Daily Brief will appear in Obsidian. It's
671
+ like having a chief of staff prepare your day.
672
+ </li>
673
+ </ol>
674
+ </section>
675
+
676
+ <!-- Channels -->
677
+ <section id="channels">
678
+ <h2>
679
+ <span class="icon">
680
+ <svg
681
+ width="24"
682
+ height="24"
683
+ viewBox="0 0 24 24"
684
+ fill="none"
685
+ stroke="currentColor"
686
+ stroke-width="2"
687
+ >
688
+ <path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" />
689
+ </svg>
690
+ </span>
691
+ Communication Channels
692
+ </h2>
693
+ <p>
694
+ GodMode can talk to you through multiple channels. Pick the one that fits your workflow
695
+ best:
696
+ </p>
697
+
698
+ <div class="channel-grid">
699
+ <div class="channel-card">
700
+ <div class="emoji">🌐</div>
701
+ <h4>Web UI</h4>
702
+ <p>Full-featured interface with conversation history, file uploads, and settings.</p>
703
+ <span class="badge">Always Available</span>
704
+ </div>
705
+ <div class="channel-card">
706
+ <div class="emoji">💬</div>
707
+ <h4>Slack</h4>
708
+ <p>Perfect for teams. DM GodMode or mention it in channels.</p>
709
+ <span class="badge">Recommended</span>
710
+ </div>
711
+ <div class="channel-card">
712
+ <div class="emoji">✈️</div>
713
+ <h4>Telegram</h4>
714
+ <p>Fast, reliable, works great on mobile. Great for personal use.</p>
715
+ <span class="badge">Recommended</span>
716
+ </div>
717
+ <div class="channel-card">
718
+ <div class="emoji">💚</div>
719
+ <h4>WhatsApp</h4>
720
+ <p>Familiar interface, especially good if you live in WhatsApp.</p>
721
+ <span class="badge">Good Option</span>
722
+ </div>
723
+ <div class="channel-card">
724
+ <div class="emoji">🍎</div>
725
+ <h4>iMessage</h4>
726
+ <p>Native Apple experience. Requires Mac Mini running 24/7.</p>
727
+ <span class="badge warn">Mac Mini Only</span>
728
+ </div>
729
+ </div>
730
+
731
+ <div class="tip">
732
+ <strong>Pro tip:</strong> Start with one channel and master it before adding more. Most
733
+ users find Slack or Telegram works best for them.
734
+ </div>
735
+ </section>
736
+
737
+ <!-- Juggling - The Big Feature -->
738
+ <section id="juggling">
739
+ <h2>
740
+ <span class="icon">
741
+ <svg
742
+ width="24"
743
+ height="24"
744
+ viewBox="0 0 24 24"
745
+ fill="none"
746
+ stroke="currentColor"
747
+ stroke-width="2"
748
+ >
749
+ <circle cx="12" cy="12" r="10" />
750
+ <path d="M12 6v6l4 2" />
751
+ </svg>
752
+ </span>
753
+ Juggling: Your Superpower
754
+ </h2>
755
+
756
+ <div class="highlight-box">
757
+ <h3>🎪 What is Juggling?</h3>
758
+ <p>
759
+ Juggling is GodMode's ability to handle
760
+ <strong>multiple tasks simultaneously</strong> across different conversations and
761
+ channels. While you're chatting about one thing, GodMode can be working on five other
762
+ things in the background.
763
+ </p>
764
+ <p>
765
+ Think of it like having a team of assistants, except they all share the same brain and
766
+ context about you.
767
+ </p>
768
+ </div>
769
+
770
+ <div class="juggling-visual">
771
+ <div class="juggle-ball">📧</div>
772
+ <div class="juggle-ball">📊</div>
773
+ <div class="juggle-ball">📝</div>
774
+ <div class="juggle-ball">🔍</div>
775
+ <div class="juggle-ball">💡</div>
776
+ </div>
777
+
778
+ <h3>How Juggling Works</h3>
779
+ <p>
780
+ When you give GodMode a task, you don't have to wait for it to finish before starting
781
+ something else:
782
+ </p>
783
+
784
+ <div class="feature-grid">
785
+ <div class="feature-card">
786
+ <h4>
787
+ <svg
788
+ width="20"
789
+ height="20"
790
+ viewBox="0 0 24 24"
791
+ fill="none"
792
+ stroke="currentColor"
793
+ stroke-width="2"
794
+ >
795
+ <path
796
+ d="M12 2v4M12 18v4M4.93 4.93l2.83 2.83M16.24 16.24l2.83 2.83M2 12h4M18 12h4M4.93 19.07l2.83-2.83M16.24 7.76l2.83-2.83"
797
+ />
798
+ </svg>
799
+ Parallel Processing
800
+ </h4>
801
+ <p>
802
+ Ask GodMode to research competitors while it's also drafting your presentation. Both
803
+ happen at the same time.
804
+ </p>
805
+ </div>
806
+ <div class="feature-card">
807
+ <h4>
808
+ <svg
809
+ width="20"
810
+ height="20"
811
+ viewBox="0 0 24 24"
812
+ fill="none"
813
+ stroke="currentColor"
814
+ stroke-width="2"
815
+ >
816
+ <path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" />
817
+ </svg>
818
+ Cross-Channel
819
+ </h4>
820
+ <p>
821
+ Start a task in Slack, continue it via Telegram, finish in the web UI. GodMode
822
+ remembers everything.
823
+ </p>
824
+ </div>
825
+ <div class="feature-card">
826
+ <h4>
827
+ <svg
828
+ width="20"
829
+ height="20"
830
+ viewBox="0 0 24 24"
831
+ fill="none"
832
+ stroke="currentColor"
833
+ stroke-width="2"
834
+ >
835
+ <circle cx="12" cy="12" r="10" />
836
+ <polyline points="12 6 12 12 16 14" />
837
+ </svg>
838
+ Background Tasks
839
+ </h4>
840
+ <p>
841
+ "Monitor this and let me know when it changes." GodMode watches while you do other
842
+ things.
843
+ </p>
844
+ </div>
845
+ <div class="feature-card">
846
+ <h4>
847
+ <svg
848
+ width="20"
849
+ height="20"
850
+ viewBox="0 0 24 24"
851
+ fill="none"
852
+ stroke="currentColor"
853
+ stroke-width="2"
854
+ >
855
+ <path d="M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z" />
856
+ <polyline points="14 2 14 8 20 8" />
857
+ </svg>
858
+ Shared Context
859
+ </h4>
860
+ <p>
861
+ Results from one task automatically inform others. Research you did yesterday helps
862
+ with today's writing.
863
+ </p>
864
+ </div>
865
+ </div>
866
+
867
+ <h3>Juggling in Practice</h3>
868
+ <p>Here's what a typical power user's morning might look like:</p>
869
+ <pre><code>You: "Summarize my emails from overnight"
870
+ GodMode: [Working on it...]
871
+
872
+ You: "Also, what's on my calendar today?"
873
+ GodMode: [Now working on both...]
874
+
875
+ You: "And can you draft a response to the investor email?"
876
+ GodMode:
877
+ ✓ Email summary: 12 emails, 3 urgent...
878
+ ✓ Calendar: 4 meetings starting at 9am...
879
+ ✓ Draft response: "Dear Sarah, Thank you for..."</code></pre>
880
+
881
+ <div class="tip">
882
+ <strong>The key insight:</strong> Don't wait. Just keep asking. GodMode will juggle
883
+ everything and report back as each task completes. This is how you 10x your productivity.
884
+ </div>
885
+ </section>
886
+
887
+ <!-- Capabilities -->
888
+ <section id="capabilities">
889
+ <h2>
890
+ <span class="icon">
891
+ <svg
892
+ width="24"
893
+ height="24"
894
+ viewBox="0 0 24 24"
895
+ fill="none"
896
+ stroke="currentColor"
897
+ stroke-width="2"
898
+ >
899
+ <polygon
900
+ points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"
901
+ />
902
+ </svg>
903
+ </span>
904
+ What GodMode Can Do
905
+ </h2>
906
+ <p>
907
+ GodMode isn't just a chatbot - it's a full AI assistant with access to your tools and
908
+ data:
909
+ </p>
910
+
911
+ <div class="capability-list">
912
+ <div class="capability-item">
913
+ <svg
914
+ width="18"
915
+ height="18"
916
+ viewBox="0 0 24 24"
917
+ fill="none"
918
+ stroke="currentColor"
919
+ stroke-width="2"
920
+ >
921
+ <polyline points="20 6 9 17 4 12" />
922
+ </svg>
923
+ Read & draft emails
924
+ </div>
925
+ <div class="capability-item">
926
+ <svg
927
+ width="18"
928
+ height="18"
929
+ viewBox="0 0 24 24"
930
+ fill="none"
931
+ stroke="currentColor"
932
+ stroke-width="2"
933
+ >
934
+ <polyline points="20 6 9 17 4 12" />
935
+ </svg>
936
+ Manage your calendar
937
+ </div>
938
+ <div class="capability-item">
939
+ <svg
940
+ width="18"
941
+ height="18"
942
+ viewBox="0 0 24 24"
943
+ fill="none"
944
+ stroke="currentColor"
945
+ stroke-width="2"
946
+ >
947
+ <polyline points="20 6 9 17 4 12" />
948
+ </svg>
949
+ Create & update tasks
950
+ </div>
951
+ <div class="capability-item">
952
+ <svg
953
+ width="18"
954
+ height="18"
955
+ viewBox="0 0 24 24"
956
+ fill="none"
957
+ stroke="currentColor"
958
+ stroke-width="2"
959
+ >
960
+ <polyline points="20 6 9 17 4 12" />
961
+ </svg>
962
+ Search the web
963
+ </div>
964
+ <div class="capability-item">
965
+ <svg
966
+ width="18"
967
+ height="18"
968
+ viewBox="0 0 24 24"
969
+ fill="none"
970
+ stroke="currentColor"
971
+ stroke-width="2"
972
+ >
973
+ <polyline points="20 6 9 17 4 12" />
974
+ </svg>
975
+ Analyze documents
976
+ </div>
977
+ <div class="capability-item">
978
+ <svg
979
+ width="18"
980
+ height="18"
981
+ viewBox="0 0 24 24"
982
+ fill="none"
983
+ stroke="currentColor"
984
+ stroke-width="2"
985
+ >
986
+ <polyline points="20 6 9 17 4 12" />
987
+ </svg>
988
+ Write & edit content
989
+ </div>
990
+ <div class="capability-item">
991
+ <svg
992
+ width="18"
993
+ height="18"
994
+ viewBox="0 0 24 24"
995
+ fill="none"
996
+ stroke="currentColor"
997
+ stroke-width="2"
998
+ >
999
+ <polyline points="20 6 9 17 4 12" />
1000
+ </svg>
1001
+ Track health data (Oura)
1002
+ </div>
1003
+ <div class="capability-item">
1004
+ <svg
1005
+ width="18"
1006
+ height="18"
1007
+ viewBox="0 0 24 24"
1008
+ fill="none"
1009
+ stroke="currentColor"
1010
+ stroke-width="2"
1011
+ >
1012
+ <polyline points="20 6 9 17 4 12" />
1013
+ </svg>
1014
+ Meeting transcripts (Fathom)
1015
+ </div>
1016
+ <div class="capability-item">
1017
+ <svg
1018
+ width="18"
1019
+ height="18"
1020
+ viewBox="0 0 24 24"
1021
+ fill="none"
1022
+ stroke="currentColor"
1023
+ stroke-width="2"
1024
+ >
1025
+ <polyline points="20 6 9 17 4 12" />
1026
+ </svg>
1027
+ CRM updates (Front)
1028
+ </div>
1029
+ <div class="capability-item">
1030
+ <svg
1031
+ width="18"
1032
+ height="18"
1033
+ viewBox="0 0 24 24"
1034
+ fill="none"
1035
+ stroke="currentColor"
1036
+ stroke-width="2"
1037
+ >
1038
+ <polyline points="20 6 9 17 4 12" />
1039
+ </svg>
1040
+ Write to Obsidian
1041
+ </div>
1042
+ <div class="capability-item">
1043
+ <svg
1044
+ width="18"
1045
+ height="18"
1046
+ viewBox="0 0 24 24"
1047
+ fill="none"
1048
+ stroke="currentColor"
1049
+ stroke-width="2"
1050
+ >
1051
+ <polyline points="20 6 9 17 4 12" />
1052
+ </svg>
1053
+ Run automations (N8N)
1054
+ </div>
1055
+ <div class="capability-item">
1056
+ <svg
1057
+ width="18"
1058
+ height="18"
1059
+ viewBox="0 0 24 24"
1060
+ fill="none"
1061
+ stroke="currentColor"
1062
+ stroke-width="2"
1063
+ >
1064
+ <polyline points="20 6 9 17 4 12" />
1065
+ </svg>
1066
+ Code assistance
1067
+ </div>
1068
+ </div>
1069
+
1070
+ <p>
1071
+ And this is just the beginning. GodMode's capabilities grow as you connect more services
1072
+ and create custom skills.
1073
+ </p>
1074
+ </section>
1075
+
1076
+ <!-- Daily Brief -->
1077
+ <section id="daily-brief">
1078
+ <h2>
1079
+ <span class="icon">
1080
+ <svg
1081
+ width="24"
1082
+ height="24"
1083
+ viewBox="0 0 24 24"
1084
+ fill="none"
1085
+ stroke="currentColor"
1086
+ stroke-width="2"
1087
+ >
1088
+ <circle cx="12" cy="12" r="10" />
1089
+ <polyline points="12 6 12 12 16 10" />
1090
+ </svg>
1091
+ </span>
1092
+ The Daily Brief
1093
+ </h2>
1094
+ <p>
1095
+ Every morning at 7 AM, GodMode delivers a personalized briefing to your Obsidian vault.
1096
+ It's like having a chief of staff who knows everything about your day.
1097
+ </p>
1098
+
1099
+ <div class="feature-grid">
1100
+ <div class="feature-card">
1101
+ <h4>
1102
+ <svg
1103
+ width="20"
1104
+ height="20"
1105
+ viewBox="0 0 24 24"
1106
+ fill="none"
1107
+ stroke="currentColor"
1108
+ stroke-width="2"
1109
+ >
1110
+ <path
1111
+ d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"
1112
+ />
1113
+ </svg>
1114
+ Sleep & Health
1115
+ </h4>
1116
+ <p>Your Oura ring data: sleep quality, readiness score, and recovery status.</p>
1117
+ </div>
1118
+ <div class="feature-card">
1119
+ <h4>
1120
+ <svg
1121
+ width="20"
1122
+ height="20"
1123
+ viewBox="0 0 24 24"
1124
+ fill="none"
1125
+ stroke="currentColor"
1126
+ stroke-width="2"
1127
+ >
1128
+ <rect x="3" y="4" width="18" height="18" rx="2" ry="2" />
1129
+ <line x1="16" y1="2" x2="16" y2="6" />
1130
+ <line x1="8" y1="2" x2="8" y2="6" />
1131
+ <line x1="3" y1="10" x2="21" y2="10" />
1132
+ </svg>
1133
+ Calendar Overview
1134
+ </h4>
1135
+ <p>Today's meetings, prep notes, and schedule conflicts at a glance.</p>
1136
+ </div>
1137
+ <div class="feature-card">
1138
+ <h4>
1139
+ <svg
1140
+ width="20"
1141
+ height="20"
1142
+ viewBox="0 0 24 24"
1143
+ fill="none"
1144
+ stroke="currentColor"
1145
+ stroke-width="2"
1146
+ >
1147
+ <path d="M22 11.08V12a10 10 0 1 1-5.93-9.14" />
1148
+ <polyline points="22 4 12 14.01 9 11.01" />
1149
+ </svg>
1150
+ Priority Tasks
1151
+ </h4>
1152
+ <p>What's due, what's overdue, and what you should focus on today.</p>
1153
+ </div>
1154
+ <div class="feature-card">
1155
+ <h4>
1156
+ <svg
1157
+ width="20"
1158
+ height="20"
1159
+ viewBox="0 0 24 24"
1160
+ fill="none"
1161
+ stroke="currentColor"
1162
+ stroke-width="2"
1163
+ >
1164
+ <path
1165
+ d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"
1166
+ />
1167
+ </svg>
1168
+ Strategic Context
1169
+ </h4>
1170
+ <p>Reminders about ongoing projects, follow-ups needed, and weekly goals.</p>
1171
+ </div>
1172
+ </div>
1173
+
1174
+ <div class="tip">
1175
+ <strong>Location:</strong> Your Daily Brief appears in
1176
+ <code>01-Daily/YYYY-MM-DD.md</code> in your Obsidian vault. Open Obsidian each morning and
1177
+ it's right there waiting for you.
1178
+ </div>
1179
+ </section>
1180
+
1181
+ <!-- Giving Access -->
1182
+ <section id="access">
1183
+ <h2>
1184
+ <span class="icon">
1185
+ <svg
1186
+ width="24"
1187
+ height="24"
1188
+ viewBox="0 0 24 24"
1189
+ fill="none"
1190
+ stroke="currentColor"
1191
+ stroke-width="2"
1192
+ >
1193
+ <rect x="3" y="11" width="18" height="11" rx="2" ry="2" />
1194
+ <path d="M7 11V7a5 5 0 0 1 10 0v4" />
1195
+ </svg>
1196
+ </span>
1197
+ Giving GodMode Access
1198
+ </h2>
1199
+ <p>
1200
+ GodMode becomes more powerful the more access you give it. Here's what to connect for the
1201
+ best experience:
1202
+ </p>
1203
+
1204
+ <h3>Essential Connections</h3>
1205
+ <div class="feature-grid">
1206
+ <div class="feature-card">
1207
+ <h4>📧 Email (Google/Gmail)</h4>
1208
+ <p>
1209
+ Read and draft emails, find information from your inbox, follow up on conversations.
1210
+ </p>
1211
+ </div>
1212
+ <div class="feature-card">
1213
+ <h4>📅 Calendar (Google)</h4>
1214
+ <p>See your schedule, get meeting prep, avoid conflicts, manage your time.</p>
1215
+ </div>
1216
+ <div class="feature-card">
1217
+ <h4>📝 Obsidian</h4>
1218
+ <p>Your second brain. Daily briefs, notes, and knowledge management.</p>
1219
+ </div>
1220
+ </div>
1221
+
1222
+ <h3>Power-User Connections</h3>
1223
+ <div class="feature-grid">
1224
+ <div class="feature-card">
1225
+ <h4>✅ ClickUp</h4>
1226
+ <p>Task and project management. Create, update, and track tasks automatically.</p>
1227
+ </div>
1228
+ <div class="feature-card">
1229
+ <h4>💬 Slack</h4>
1230
+ <p>Team communication. GodMode can read channels and respond to messages.</p>
1231
+ </div>
1232
+ <div class="feature-card">
1233
+ <h4>🎙️ Fathom</h4>
1234
+ <p>Meeting transcripts. Get summaries and action items from your calls.</p>
1235
+ </div>
1236
+ <div class="feature-card">
1237
+ <h4>💍 Oura</h4>
1238
+ <p>Health tracking. Sleep, readiness, and activity in your Daily Brief.</p>
1239
+ </div>
1240
+ <div class="feature-card">
1241
+ <h4>📬 Front</h4>
1242
+ <p>Customer communication. Manage tickets and customer relationships.</p>
1243
+ </div>
1244
+ <div class="feature-card">
1245
+ <h4>⚡ N8N</h4>
1246
+ <p>Workflow automation. Connect any service and create custom automations.</p>
1247
+ </div>
1248
+ </div>
1249
+
1250
+ <div class="warning">
1251
+ <strong>Important:</strong> Only connect services you're comfortable having an AI access.
1252
+ GodMode treats your data with care, but you should understand what access you're granting.
1253
+ </div>
1254
+ </section>
1255
+
1256
+ <!-- Security -->
1257
+ <section id="security">
1258
+ <h2>
1259
+ <span class="icon">
1260
+ <svg
1261
+ width="24"
1262
+ height="24"
1263
+ viewBox="0 0 24 24"
1264
+ fill="none"
1265
+ stroke="currentColor"
1266
+ stroke-width="2"
1267
+ >
1268
+ <path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" />
1269
+ </svg>
1270
+ </span>
1271
+ Using GodMode Securely
1272
+ </h2>
1273
+ <p>GodMode is designed with security in mind. Here's what you need to know:</p>
1274
+
1275
+ <div class="security-grid">
1276
+ <div class="security-item">
1277
+ <h4><span class="check">✓</span> Self-Hosted</h4>
1278
+ <p>
1279
+ GodMode runs on your own infrastructure. Your data never passes through third-party
1280
+ servers (except the AI providers you choose).
1281
+ </p>
1282
+ </div>
1283
+ <div class="security-item">
1284
+ <h4><span class="check">✓</span> Token Authentication</h4>
1285
+ <p>Access to your GodMode requires a secure token. Never share this token publicly.</p>
1286
+ </div>
1287
+ <div class="security-item">
1288
+ <h4><span class="check">✓</span> Tailscale Encryption</h4>
1289
+ <p>
1290
+ When using Tailscale, all traffic is encrypted end-to-end. Your GodMode is only
1291
+ accessible on your private network.
1292
+ </p>
1293
+ </div>
1294
+ <div class="security-item">
1295
+ <h4><span class="check">✓</span> API Key Security</h4>
1296
+ <p>Your API keys are stored in environment variables, never in code or logs.</p>
1297
+ </div>
1298
+ <div class="security-item">
1299
+ <h4><span class="check">✓</span> No Training on Your Data</h4>
1300
+ <p>Anthropic (Claude) does not train on API data. Your conversations are private.</p>
1301
+ </div>
1302
+ <div class="security-item">
1303
+ <h4><span class="check">✓</span> Audit Trail</h4>
1304
+ <p>All actions are logged. You can see exactly what GodMode has done.</p>
1305
+ </div>
1306
+ </div>
1307
+
1308
+ <h3>Best Practices</h3>
1309
+ <ol class="steps">
1310
+ <li>
1311
+ <strong>Use strong, unique tokens</strong>
1312
+ Your gateway token is your key to GodMode. Treat it like a password.
1313
+ </li>
1314
+ <li>
1315
+ <strong>Keep Tailscale connected</strong>
1316
+ This ensures your GodMode is only accessible from your trusted devices.
1317
+ </li>
1318
+ <li>
1319
+ <strong>Review connected services</strong>
1320
+ Periodically check what services GodMode has access to and revoke any you no longer
1321
+ need.
1322
+ </li>
1323
+ <li>
1324
+ <strong>Use 1Password for secrets</strong>
1325
+ Store your API keys and tokens in 1Password, not in plain text files.
1326
+ </li>
1327
+ </ol>
1328
+ </section>
1329
+
1330
+ <!-- Pro Tips -->
1331
+ <section id="tips">
1332
+ <h2>
1333
+ <span class="icon">
1334
+ <svg
1335
+ width="24"
1336
+ height="24"
1337
+ viewBox="0 0 24 24"
1338
+ fill="none"
1339
+ stroke="currentColor"
1340
+ stroke-width="2"
1341
+ >
1342
+ <path
1343
+ d="M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 1 1 7.072 0l-.548.547A3.374 3.374 0 0 0 14 18.469V19a2 2 0 1 1-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z"
1344
+ />
1345
+ </svg>
1346
+ </span>
1347
+ Pro Tips
1348
+ </h2>
1349
+
1350
+ <div class="feature-grid">
1351
+ <div class="feature-card">
1352
+ <h4>💬 Be Conversational</h4>
1353
+ <p>
1354
+ Talk to GodMode like a smart colleague. "Can you..." works better than robotic
1355
+ commands.
1356
+ </p>
1357
+ </div>
1358
+ <div class="feature-card">
1359
+ <h4>📋 Give Context</h4>
1360
+ <p>
1361
+ "For my meeting with investors tomorrow..." helps GodMode understand the stakes and
1362
+ tone.
1363
+ </p>
1364
+ </div>
1365
+ <div class="feature-card">
1366
+ <h4>🔄 Iterate</h4>
1367
+ <p>"Make it shorter" or "More professional" - refine outputs with quick feedback.</p>
1368
+ </div>
1369
+ <div class="feature-card">
1370
+ <h4>⚡ Don't Wait</h4>
1371
+ <p>
1372
+ While GodMode works on one thing, ask for something else. Juggling is your superpower.
1373
+ </p>
1374
+ </div>
1375
+ <div class="feature-card">
1376
+ <h4>📝 Use Templates</h4>
1377
+ <p>"Write this in my usual email style" - GodMode learns your preferences over time.</p>
1378
+ </div>
1379
+ <div class="feature-card">
1380
+ <h4>🎯 Be Specific</h4>
1381
+ <p>
1382
+ "Draft a 3-paragraph email" is better than "write an email" for predictable results.
1383
+ </p>
1384
+ </div>
1385
+ </div>
1386
+
1387
+ <h3>Power User Workflows</h3>
1388
+ <pre><code># Morning Routine
1389
+ "Give me a quick summary of overnight emails, today's calendar,
1390
+ and my top 3 priorities for the day."
1391
+
1392
+ # Meeting Prep
1393
+ "I have a call with [person] in 30 minutes. Pull up our last
1394
+ conversation, any open tasks with them, and suggest talking points."
1395
+
1396
+ # End of Day
1397
+ "Summarize what I accomplished today and what's carrying over
1398
+ to tomorrow. Update my task list accordingly."
1399
+
1400
+ # Research Mode
1401
+ "Research [topic] and give me a brief I can read in 5 minutes.
1402
+ Include recent news, key players, and what I should know."</code></pre>
1403
+ </section>
1404
+ </main>
1405
+
1406
+ <footer class="footer">
1407
+ <p>GodMode - Your 24/7 AI Assistant</p>
1408
+ <p>
1409
+ Questions? Ask GodMode: "How do I..." or visit
1410
+ <a href="https://github.com/GodMode-Team/godmode/issues">GitHub Issues</a>
1411
+ </p>
1412
+ </footer>
1413
+
1414
+ <a href="/" class="back-btn">← Back to GodMode</a>
1415
+ </body>
1416
+ </html>