groove-dev 0.26.14 → 0.26.15
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.
- package/GROOVE_AI_PITCH_DECK_OUTLINE.docx +0 -0
- package/node_modules/@groove-dev/gui/dist/assets/{index-D5zShz2P.js → index-CBlL5EFb.js} +138 -133
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/src/views/editor.jsx +58 -2
- package/package.json +1 -1
- package/packages/gui/dist/assets/{index-D5zShz2P.js → index-CBlL5EFb.js} +138 -133
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/src/views/editor.jsx +58 -2
- package/pitch_deck/index.html +718 -0
- package/pitch_deck/slides.json +197 -0
|
@@ -0,0 +1,718 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Groove AI Pitch Deck</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
7
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/reveal.min.css">
|
|
8
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/theme/simple.min.css" id="theme">
|
|
9
|
+
<style>
|
|
10
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
|
|
11
|
+
|
|
12
|
+
:root {
|
|
13
|
+
--r-main-font: 'Inter', Helvetica, sans-serif;
|
|
14
|
+
--r-heading-font: 'Inter', Helvetica, sans-serif;
|
|
15
|
+
--navy: #0D2137;
|
|
16
|
+
--cyan: #4DD9C0;
|
|
17
|
+
--dark-red: #D94D4D;
|
|
18
|
+
--light-bg: #F8F9FA;
|
|
19
|
+
--text-dark: #1A1A1A;
|
|
20
|
+
--text-light: #FFFFFF;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.reveal {
|
|
24
|
+
font-family: var(--r-main-font);
|
|
25
|
+
color: var(--text-dark);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.reveal .slide-background { background-color: var(--light-bg); }
|
|
29
|
+
.reveal .slide-background.navy-bg { background-color: var(--navy); }
|
|
30
|
+
|
|
31
|
+
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
|
|
32
|
+
text-transform: none;
|
|
33
|
+
font-weight: 800;
|
|
34
|
+
letter-spacing: -0.02em;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.reveal h1 { font-size: 3em; }
|
|
38
|
+
.reveal h2 { font-size: 2.2em; margin-bottom: 1em; }
|
|
39
|
+
|
|
40
|
+
.reveal section.navy-bg h1,
|
|
41
|
+
.reveal section.navy-bg h2,
|
|
42
|
+
.reveal section.navy-bg h3,
|
|
43
|
+
.reveal section.navy-bg p,
|
|
44
|
+
.reveal section.navy-bg li,
|
|
45
|
+
.reveal section.navy-bg .footer-logo {
|
|
46
|
+
color: var(--text-light);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.accent-cyan { color: var(--cyan) !important; }
|
|
50
|
+
.accent-red { color: var(--dark-red) !important; }
|
|
51
|
+
|
|
52
|
+
.footer-logo {
|
|
53
|
+
position: absolute;
|
|
54
|
+
bottom: 20px;
|
|
55
|
+
left: 20px;
|
|
56
|
+
font-size: 14px;
|
|
57
|
+
color: #666;
|
|
58
|
+
font-weight: 600;
|
|
59
|
+
z-index: 10;
|
|
60
|
+
display: flex;
|
|
61
|
+
align-items: center;
|
|
62
|
+
gap: 8px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.logo-infinity {
|
|
66
|
+
color: var(--cyan);
|
|
67
|
+
font-size: 1.5em;
|
|
68
|
+
line-height: 1;
|
|
69
|
+
font-weight: 800;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.text-left { text-align: left; }
|
|
73
|
+
.text-center { text-align: center; }
|
|
74
|
+
|
|
75
|
+
.reveal ul { display: block; padding-left: 1.5em; }
|
|
76
|
+
.reveal ul li { margin-bottom: 0.6em; font-size: 0.85em; line-height: 1.4; }
|
|
77
|
+
|
|
78
|
+
/* Layouts */
|
|
79
|
+
.split {
|
|
80
|
+
display: flex;
|
|
81
|
+
gap: 40px;
|
|
82
|
+
align-items: flex-start;
|
|
83
|
+
text-align: left;
|
|
84
|
+
}
|
|
85
|
+
.split > div { flex: 1; }
|
|
86
|
+
|
|
87
|
+
.grid-cards {
|
|
88
|
+
display: grid;
|
|
89
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
90
|
+
gap: 20px;
|
|
91
|
+
font-size: 0.7em;
|
|
92
|
+
text-align: left;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.card {
|
|
96
|
+
background: white;
|
|
97
|
+
padding: 20px;
|
|
98
|
+
border-radius: 8px;
|
|
99
|
+
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
|
|
100
|
+
border-top: 4px solid var(--cyan);
|
|
101
|
+
}
|
|
102
|
+
.card.problem-card { border-top-color: var(--dark-red); }
|
|
103
|
+
.card h3 { font-size: 1.3em; margin-top: 0; }
|
|
104
|
+
|
|
105
|
+
.navy-bg .card {
|
|
106
|
+
background: rgba(255, 255, 255, 0.05);
|
|
107
|
+
box-shadow: none;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.highlight-box {
|
|
111
|
+
background: rgba(77, 217, 192, 0.1);
|
|
112
|
+
border-left: 4px solid var(--cyan);
|
|
113
|
+
padding: 25px;
|
|
114
|
+
border-radius: 0 8px 8px 0;
|
|
115
|
+
margin: 20px 0;
|
|
116
|
+
font-weight: 600;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.hero-icon {
|
|
120
|
+
font-size: 5em;
|
|
121
|
+
color: var(--cyan);
|
|
122
|
+
margin-bottom: 20px;
|
|
123
|
+
font-weight: 800;
|
|
124
|
+
letter-spacing: -5px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.stat-large {
|
|
128
|
+
font-size: 3em;
|
|
129
|
+
font-weight: 800;
|
|
130
|
+
color: var(--cyan);
|
|
131
|
+
display: block;
|
|
132
|
+
line-height: 1;
|
|
133
|
+
margin-bottom: 10px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.diagram-placeholder {
|
|
137
|
+
background: rgba(0,0,0,0.03);
|
|
138
|
+
border: 2px dashed #ccc;
|
|
139
|
+
border-radius: 8px;
|
|
140
|
+
display: flex;
|
|
141
|
+
align-items: center;
|
|
142
|
+
justify-content: center;
|
|
143
|
+
min-height: 300px;
|
|
144
|
+
color: #888;
|
|
145
|
+
font-weight: 600;
|
|
146
|
+
}
|
|
147
|
+
.navy-bg .diagram-placeholder {
|
|
148
|
+
background: rgba(255,255,255,0.03);
|
|
149
|
+
border-color: rgba(255,255,255,0.2);
|
|
150
|
+
color: rgba(255,255,255,0.5);
|
|
151
|
+
}
|
|
152
|
+
</style>
|
|
153
|
+
</head>
|
|
154
|
+
<body>
|
|
155
|
+
<div class="reveal">
|
|
156
|
+
<div class="footer-logo">
|
|
157
|
+
<span class="logo-infinity">∞</span> groove ai | grooveai.dev · github.com/grooveai-dev · Open Source
|
|
158
|
+
</div>
|
|
159
|
+
|
|
160
|
+
<div class="slides">
|
|
161
|
+
|
|
162
|
+
<!-- SLIDE 1: Cover -->
|
|
163
|
+
<section data-state="navy-bg" class="navy-bg text-center">
|
|
164
|
+
<div class="hero-icon">∞</div>
|
|
165
|
+
<h1>groove ai</h1>
|
|
166
|
+
<h3 style="color: #ccc; font-weight: 400;">The intelligent orchestration layer for AI coding agents.</h3>
|
|
167
|
+
<br>
|
|
168
|
+
<p class="accent-cyan" style="font-weight: 600; font-size: 1.2em;">
|
|
169
|
+
Coordinate agents. Eliminate cold-start. Save 40–60% on tokens. Automatically.
|
|
170
|
+
</p>
|
|
171
|
+
</section>
|
|
172
|
+
|
|
173
|
+
<!-- SLIDE 2: The Problem -->
|
|
174
|
+
<section>
|
|
175
|
+
<h2 class="text-left">AI coding tools are broken at the multi-agent level.</h2>
|
|
176
|
+
<div class="grid-cards">
|
|
177
|
+
<div class="card problem-card">
|
|
178
|
+
<h3>💥 Agents clash</h3>
|
|
179
|
+
<p>Two sessions on the same project edit the same files, make contradictory decisions, and waste tokens on discarded work. They are blind to each other.</p>
|
|
180
|
+
</div>
|
|
181
|
+
<div class="card problem-card">
|
|
182
|
+
<h3>🧊 Cold-start tax</h3>
|
|
183
|
+
<p>Every new session starts blind. Developers spend 5-10 minutes and thousands of tokens re-explaining the stack, architecture, and current state.</p>
|
|
184
|
+
</div>
|
|
185
|
+
<div class="card problem-card">
|
|
186
|
+
<h3>📉 Context degradation</h3>
|
|
187
|
+
<p>Context windows fill up, compaction is lossy, and model quality drops over time. Quality becomes unpredictable and uncontrollable.</p>
|
|
188
|
+
</div>
|
|
189
|
+
<div class="card problem-card">
|
|
190
|
+
<h3>💸 Invisible token waste</h3>
|
|
191
|
+
<p>No per-agent, per-task, or per-session breakdown. Users see a high bill with opaque value and zero visibility into where tokens actually go.</p>
|
|
192
|
+
</div>
|
|
193
|
+
<div class="card problem-card">
|
|
194
|
+
<h3>💻 Terminal-only</h3>
|
|
195
|
+
<p>Requires terminal comfort. Non-technical founders, designers, and domain experts are locked out. No visual interface for workflows.</p>
|
|
196
|
+
</div>
|
|
197
|
+
</div>
|
|
198
|
+
</section>
|
|
199
|
+
|
|
200
|
+
<!-- SLIDE 3: The Solution -->
|
|
201
|
+
<section>
|
|
202
|
+
<h2 class="text-left">Groove AI — the coordination layer your agents are missing.</h2>
|
|
203
|
+
<div class="split">
|
|
204
|
+
<div class="diagram-placeholder" style="flex: 0.8;">
|
|
205
|
+
[ Visual Diagram: Agent tree with Groove daemon at the center ]
|
|
206
|
+
</div>
|
|
207
|
+
<div class="text-left">
|
|
208
|
+
<p style="font-size: 0.9em; margin-top:0;">Groove is a lightweight open-source daemon that sits alongside Claude Code. It does not replace your tools. It makes them work together.</p>
|
|
209
|
+
<ul>
|
|
210
|
+
<li><strong class="accent-cyan">Introduction Protocol:</strong> Second agent auto-introduces to the first. Zero config required.</li>
|
|
211
|
+
<li><strong class="accent-cyan">The Journalist:</strong> Background agent writes living documentation (Project Map, Decisions). One-read cold-start.</li>
|
|
212
|
+
<li><strong class="accent-cyan">File Lock Manager:</strong> Directory ownership prevents concurrent conflicting writes.</li>
|
|
213
|
+
<li><strong class="accent-cyan">QC Supervisor:</strong> Auto-spawns at scale. Reviews, flags conflicts, and routes approvals.</li>
|
|
214
|
+
<li><strong class="accent-cyan">Visual Agent Tree:</strong> React GUI in cmux pane. Drill into terminals and manage agents visually.</li>
|
|
215
|
+
</ul>
|
|
216
|
+
</div>
|
|
217
|
+
</div>
|
|
218
|
+
</section>
|
|
219
|
+
|
|
220
|
+
<!-- SLIDE 4: How It Works -->
|
|
221
|
+
<section>
|
|
222
|
+
<h2 class="text-left">Spawn fast. Stay aware. Never lose context.</h2>
|
|
223
|
+
<div class="split">
|
|
224
|
+
<div class="text-left" style="font-size: 0.85em;">
|
|
225
|
+
<ul>
|
|
226
|
+
<li><strong>Spawn:</strong> <code>groove spawn --backend</code></li>
|
|
227
|
+
<li><strong>Register:</strong> Daemon registers agent in registry.</li>
|
|
228
|
+
<li><strong>Initialize:</strong> Claude Code opens in a cmux pane with Journalist brief.</li>
|
|
229
|
+
<li><strong>Coordinate:</strong> Next agent spawns. Daemon writes an introduction. File locks map updates.</li>
|
|
230
|
+
<li><strong>Scale:</strong> At 4 agents, QC supervisor auto-spawns to route approvals.</li>
|
|
231
|
+
<li><strong>Synthesize:</strong> Session ends. Journalist updates project map and logs decisions.</li>
|
|
232
|
+
<li><strong>Repeat:</strong> Next session cold-starts in under 30s with full context.</li>
|
|
233
|
+
</ul>
|
|
234
|
+
<div class="highlight-box" style="font-family: monospace;">
|
|
235
|
+
npm install -g groove-ai<br>
|
|
236
|
+
groove start
|
|
237
|
+
</div>
|
|
238
|
+
</div>
|
|
239
|
+
<div class="diagram-placeholder">
|
|
240
|
+
[ Flowchart & Mockup: cmux terminal + GUI side by side ]
|
|
241
|
+
</div>
|
|
242
|
+
</div>
|
|
243
|
+
</section>
|
|
244
|
+
|
|
245
|
+
<!-- SLIDE 5: The Journalist -->
|
|
246
|
+
<section data-state="navy-bg" class="navy-bg text-left">
|
|
247
|
+
<h2>The cold-start problem. Solved at the system level.</h2>
|
|
248
|
+
<p style="font-size: 0.9em;">The Journalist is a background process that tails stdout streams, calls the Claude API, and writes living markdown files for every future session.</p>
|
|
249
|
+
|
|
250
|
+
<div class="split" style="margin-top: 30px;">
|
|
251
|
+
<div>
|
|
252
|
+
<h3 class="accent-cyan" style="font-size: 1.2em;">Without Groove</h3>
|
|
253
|
+
<p style="color:#d94d4d; font-size: 1.1em; font-weight: bold;">4,000–8,000 tokens</p>
|
|
254
|
+
<p style="font-size: 0.8em; opacity: 0.8;">Manual context reconstruction. High friction.</p>
|
|
255
|
+
</div>
|
|
256
|
+
<div>
|
|
257
|
+
<h3 class="accent-cyan" style="font-size: 1.2em;">With Groove</h3>
|
|
258
|
+
<p style="color:#4dd9c0; font-size: 1.1em; font-weight: bold;">400–600 tokens</p>
|
|
259
|
+
<p style="font-size: 0.8em; opacity: 0.8;">Instant context via GROVE_PROJECT_MAP.md.</p>
|
|
260
|
+
</div>
|
|
261
|
+
</div>
|
|
262
|
+
|
|
263
|
+
<div class="highlight-box">
|
|
264
|
+
90% reduction in cold-start token cost. Per session. Every session.<br>
|
|
265
|
+
<span style="font-size: 0.8em; font-weight: 400; opacity: 0.8;">The data flywheel compounds. The more agents you run, the richer the documentation.</span>
|
|
266
|
+
</div>
|
|
267
|
+
</section>
|
|
268
|
+
|
|
269
|
+
<!-- SLIDE 6: Token Economics -->
|
|
270
|
+
<section class="text-left">
|
|
271
|
+
<h2>Groove pays for itself in the first session.</h2>
|
|
272
|
+
|
|
273
|
+
<div class="split">
|
|
274
|
+
<div>
|
|
275
|
+
<span class="stat-large">40–60%</span>
|
|
276
|
+
<p style="font-weight: bold;">Total addressable waste in current token spend</p>
|
|
277
|
+
<ul style="margin-top: 20px;">
|
|
278
|
+
<li>Cold-start context reconstruction: <strong>20–30%</strong></li>
|
|
279
|
+
<li>Redundant re-explanation: <strong>15–25%</strong></li>
|
|
280
|
+
<li>Degraded context window corrections: <strong>10–20%</strong></li>
|
|
281
|
+
<li>Wrong model for task complexity: <strong>10–15%</strong></li>
|
|
282
|
+
</ul>
|
|
283
|
+
</div>
|
|
284
|
+
<div class="card" style="background: var(--light-bg); border: 1px solid #ddd;">
|
|
285
|
+
<h3 style="font-size: 1.1em;">The Provider Alignment</h3>
|
|
286
|
+
<p style="font-size: 0.8em;">
|
|
287
|
+
AI coding subscriptions are heavily subsidized. Claude Max users cost Anthropic an estimated $3,000–$5,000/mo in API costs on a $200 plan.<br><br>
|
|
288
|
+
Every token Groove saves is a dollar of subsidy Anthropic doesn't have to spend. Groove reduces provider costs while improving user outcomes.
|
|
289
|
+
</p>
|
|
290
|
+
</div>
|
|
291
|
+
</div>
|
|
292
|
+
</section>
|
|
293
|
+
|
|
294
|
+
<!-- SLIDE 7: Market Opportunity -->
|
|
295
|
+
<section class="text-left">
|
|
296
|
+
<h2>The multi-agent development layer is wide open.</h2>
|
|
297
|
+
<p style="font-size: 0.9em;">Six months ago: Single AI assistant.<br>Today: Coordinating multiple agents running asynchronously. Tooling hasn't caught up.</p>
|
|
298
|
+
|
|
299
|
+
<div class="grid-cards" style="margin-top: 30px;">
|
|
300
|
+
<div class="card">
|
|
301
|
+
<h3>🎯 Target Market</h3>
|
|
302
|
+
<ul>
|
|
303
|
+
<li><strong>Primary:</strong> Power developers running 2+ sessions.</li>
|
|
304
|
+
<li><strong>Secondary:</strong> Indie hackers & solo founders.</li>
|
|
305
|
+
<li><strong>Tertiary:</strong> Non-technical builders.</li>
|
|
306
|
+
<li><strong>Enterprise:</strong> Dev teams needing audit logs & budgets.</li>
|
|
307
|
+
</ul>
|
|
308
|
+
</div>
|
|
309
|
+
<div class="card">
|
|
310
|
+
<h3>⏱️ Why Now?</h3>
|
|
311
|
+
<ul>
|
|
312
|
+
<li>Claude Code launched Feb 2025.</li>
|
|
313
|
+
<li>Agent Teams proved direction, but are top-down.</li>
|
|
314
|
+
<li>No bottom-up, dynamic coordination tool exists.</li>
|
|
315
|
+
</ul>
|
|
316
|
+
</div>
|
|
317
|
+
<div class="card">
|
|
318
|
+
<h3>🚀 Comparable</h3>
|
|
319
|
+
<p style="margin-top: 10px;">Cursor reached a $9B valuation building a layer on VS Code. Groove is building the workflow layer on top of Claude Code.</p>
|
|
320
|
+
</div>
|
|
321
|
+
</div>
|
|
322
|
+
</section>
|
|
323
|
+
|
|
324
|
+
<!-- SLIDE 8: Competitive Landscape -->
|
|
325
|
+
<section class="text-left">
|
|
326
|
+
<h2>Nobody owns this layer. Yet.</h2>
|
|
327
|
+
<div class="split">
|
|
328
|
+
<div class="diagram-placeholder" style="flex: 0.8; flex-direction: column;">
|
|
329
|
+
<p style="margin-bottom: 5px;">[ 2x2 Positioning Grid ]</p>
|
|
330
|
+
<p style="font-size: 0.7em; opacity: 0.7;">Y: Terminal -> GUI | X: Single -> Multi-Agent</p>
|
|
331
|
+
<p style="font-weight:bold; color:var(--cyan); margin-top:20px;">Groove in Top-Right Quadrant</p>
|
|
332
|
+
</div>
|
|
333
|
+
<div style="font-size: 0.85em;">
|
|
334
|
+
<h3 class="accent-cyan" style="font-size: 1.2em; margin-bottom: 10px;">Groove's Differentiation</h3>
|
|
335
|
+
<ul>
|
|
336
|
+
<li><strong>Bottom-up dynamic spawning:</strong> Spawn agents on demand.</li>
|
|
337
|
+
<li><strong>The Journalist:</strong> Only tool solving cold-start at the system level.</li>
|
|
338
|
+
<li><strong>Multi-tool:</strong> Claude Code, Codex, Gemini, local models.</li>
|
|
339
|
+
<li><strong>GUI Accessible:</strong> Manage visually in the browser pane.</li>
|
|
340
|
+
<li><strong>Compliance-forward:</strong> Fully aligned with provider ToS.</li>
|
|
341
|
+
</ul>
|
|
342
|
+
<h3 class="accent-cyan" style="font-size: 1.2em; margin-top: 20px; margin-bottom: 10px;">The Moat Over Time</h3>
|
|
343
|
+
<ul>
|
|
344
|
+
<li>Journalist data flywheel (richer context).</li>
|
|
345
|
+
<li>Community team configs (network effects).</li>
|
|
346
|
+
<li>Token efficiency benchmarks.</li>
|
|
347
|
+
</ul>
|
|
348
|
+
</div>
|
|
349
|
+
</div>
|
|
350
|
+
</section>
|
|
351
|
+
|
|
352
|
+
<!-- SLIDE 9: Product Roadmap -->
|
|
353
|
+
<section class="text-left">
|
|
354
|
+
<h2>Five phases from daemon to platform.</h2>
|
|
355
|
+
<div style="font-size: 0.8em; margin-top: 30px;">
|
|
356
|
+
<div style="border-left: 3px solid var(--navy); padding-left: 20px; margin-bottom: 20px;">
|
|
357
|
+
<h3 style="margin: 0; font-size: 1.2em;">Phase 1 — Core Coordination (Weeks 1–2)</h3>
|
|
358
|
+
<p style="margin: 5px 0;">Daemon, registry, WebSocket API, introduction protocol. <em>Goal: Agents don't clash.</em></p>
|
|
359
|
+
</div>
|
|
360
|
+
<div style="border-left: 3px solid #1a3c61; padding-left: 20px; margin-bottom: 20px;">
|
|
361
|
+
<h3 style="margin: 0; font-size: 1.2em;">Phase 2 — The Journalist (Weeks 2–3)</h3>
|
|
362
|
+
<p style="margin: 5px 0;">Stdout tail, synthesis loop, living markdown. <em>Goal: Cold-start injection.</em></p>
|
|
363
|
+
</div>
|
|
364
|
+
<div style="border-left: 3px solid #2a5b8e; padding-left: 20px; margin-bottom: 20px;">
|
|
365
|
+
<h3 style="margin: 0; font-size: 1.2em;">Phase 3 — Visual GUI (Weeks 3–4)</h3>
|
|
366
|
+
<p style="margin: 5px 0;">React app in cmux, agent tree, terminals. <em>Goal: Visual management.</em></p>
|
|
367
|
+
</div>
|
|
368
|
+
<div style="border-left: 3px solid #3c82c2; padding-left: 20px; margin-bottom: 20px;">
|
|
369
|
+
<h3 style="margin: 0; font-size: 1.2em;">Phase 4 — QC Supervisor (Weeks 4–5)</h3>
|
|
370
|
+
<p style="margin: 5px 0;">Auto-spawn at threshold, route approvals. <em>Goal: Hands-off autopilot.</em></p>
|
|
371
|
+
</div>
|
|
372
|
+
<div style="border-left: 3px solid var(--cyan); padding-left: 20px;">
|
|
373
|
+
<h3 style="margin: 0; font-size: 1.2em;">Phase 5 — Multi-Provider + Launch</h3>
|
|
374
|
+
<p style="margin: 5px 0;">Local models, adaptive routing, public launch. <em>Goal: Public availability.</em></p>
|
|
375
|
+
</div>
|
|
376
|
+
</div>
|
|
377
|
+
</section>
|
|
378
|
+
|
|
379
|
+
<!-- SLIDE 10: Business Model -->
|
|
380
|
+
<section data-state="navy-bg" class="navy-bg text-left">
|
|
381
|
+
<h2>Free forever at the core. Revenue from the layer above.</h2>
|
|
382
|
+
<div class="grid-cards" style="margin-top: 30px;">
|
|
383
|
+
<div class="card" style="background: rgba(255,255,255,0.1);">
|
|
384
|
+
<h3 style="color: white;">Free Tier</h3>
|
|
385
|
+
<p style="opacity: 0.8; font-size: 0.9em; margin-bottom: 10px;">The distribution engine</p>
|
|
386
|
+
<ul style="padding-left: 1.2em;">
|
|
387
|
+
<li>3 concurrent agents</li>
|
|
388
|
+
<li>Manual context rotation</li>
|
|
389
|
+
<li>Basic GUI tree</li>
|
|
390
|
+
<li>10-min Journalist intervals</li>
|
|
391
|
+
</ul>
|
|
392
|
+
</div>
|
|
393
|
+
<div class="card" style="border-top-width: 6px; border-top-color: var(--cyan); transform: scale(1.05);">
|
|
394
|
+
<h3 class="accent-cyan">Groove Pro — $20/mo</h3>
|
|
395
|
+
<p style="opacity: 0.8; font-size: 0.9em; margin-bottom: 10px;">Pays for itself in one session</p>
|
|
396
|
+
<ul style="padding-left: 1.2em;">
|
|
397
|
+
<li>Unlimited concurrent agents</li>
|
|
398
|
+
<li>Adaptive rotation & full frequency</li>
|
|
399
|
+
<li>Token dashboard & saved configs</li>
|
|
400
|
+
<li>All providers (incl. local models)</li>
|
|
401
|
+
</ul>
|
|
402
|
+
</div>
|
|
403
|
+
<div class="card" style="background: rgba(255,255,255,0.1);">
|
|
404
|
+
<h3 style="color: white;">Groove Team — $40/user</h3>
|
|
405
|
+
<p style="opacity: 0.8; font-size: 0.9em; margin-bottom: 10px;">For professional dev teams</p>
|
|
406
|
+
<ul style="padding-left: 1.2em;">
|
|
407
|
+
<li>Shared team config registry</li>
|
|
408
|
+
<li>Team-wide Journalist & project map</li>
|
|
409
|
+
<li>Token budgets & routing policies</li>
|
|
410
|
+
<li>Audit logs & compliance exports</li>
|
|
411
|
+
</ul>
|
|
412
|
+
</div>
|
|
413
|
+
</div>
|
|
414
|
+
</section>
|
|
415
|
+
|
|
416
|
+
<!-- SLIDE 11: Traction & Validation -->
|
|
417
|
+
<section class="text-left">
|
|
418
|
+
<h2>Built by a practitioner. Validated by the problem.</h2>
|
|
419
|
+
<div class="split" style="margin-top: 30px;">
|
|
420
|
+
<div style="font-size: 0.85em;">
|
|
421
|
+
<p><strong>Ryan [Founder]</strong> — Founder of Studio19 by Motovizion. Runs automated multi-agent Claude Code infrastructure in production for AI digital marketing.</p>
|
|
422
|
+
<div class="highlight-box" style="margin: 15px 0;">
|
|
423
|
+
This is not a tool built by someone theorizing about workflows. It is built by someone who needed it and couldn't find it.
|
|
424
|
+
</div>
|
|
425
|
+
<ul>
|
|
426
|
+
<li>Domain & NPM package secured.</li>
|
|
427
|
+
<li>North star architecture complete.</li>
|
|
428
|
+
<li>Phase 1 development in progress.</li>
|
|
429
|
+
</ul>
|
|
430
|
+
</div>
|
|
431
|
+
<div class="card" style="background: var(--light-bg); border: 1px dashed #ccc;">
|
|
432
|
+
<h3 style="font-size: 1.1em;">Why the timing is right</h3>
|
|
433
|
+
<ul style="margin-top: 15px;">
|
|
434
|
+
<li>Claude Code mainstream in early 2025.</li>
|
|
435
|
+
<li>Multi-agent workflows becoming standard.</li>
|
|
436
|
+
<li>No tool currently owns the coordination layer.</li>
|
|
437
|
+
<li>Provider economics create strategic alignment.</li>
|
|
438
|
+
</ul>
|
|
439
|
+
</div>
|
|
440
|
+
</div>
|
|
441
|
+
</section>
|
|
442
|
+
|
|
443
|
+
<!-- SLIDE 12: Go-To-Market -->
|
|
444
|
+
<section class="text-left">
|
|
445
|
+
<h2>Distribution first. Monetization second.</h2>
|
|
446
|
+
<div class="split">
|
|
447
|
+
<div style="font-size: 0.8em;">
|
|
448
|
+
<h3 class="accent-cyan" style="font-size: 1.2em;">Phase 1 Channels</h3>
|
|
449
|
+
<ul>
|
|
450
|
+
<li>Hacker News Show HN launch.</li>
|
|
451
|
+
<li>Reddit (r/ClaudeAI, r/LocalLLaMA) — story-first.</li>
|
|
452
|
+
<li>Product Hunt coordinated launch.</li>
|
|
453
|
+
<li>X/Twitter reply-guy strategy adding value to token cost convos.</li>
|
|
454
|
+
</ul>
|
|
455
|
+
<h3 class="accent-cyan" style="font-size: 1.2em; margin-top: 20px;">The Viral Loops</h3>
|
|
456
|
+
<ul>
|
|
457
|
+
<li>Session summaries (screenshot-worthy savings).</li>
|
|
458
|
+
<li>Shareable team configs (stack templates).</li>
|
|
459
|
+
<li>Live token savings counter on landing page.</li>
|
|
460
|
+
</ul>
|
|
461
|
+
</div>
|
|
462
|
+
<div class="highlight-box" style="flex: 0.8; font-size: 0.9em;">
|
|
463
|
+
<strong style="font-size: 1.1em; color: var(--navy);">The demo GIF is the product.</strong><br><br>
|
|
464
|
+
A 30s GIF showing: agents spawning, tree updating, conflict prevented, token savings achieved.<br><br>
|
|
465
|
+
It goes in the README, landing page, and every tweet. It sells before anyone reads a word.
|
|
466
|
+
</div>
|
|
467
|
+
</div>
|
|
468
|
+
</section>
|
|
469
|
+
|
|
470
|
+
<!-- SLIDE 13: Provider Partnership Strategy -->
|
|
471
|
+
<section class="text-left">
|
|
472
|
+
<h2>Groove saves Anthropic money. That is the pitch.</h2>
|
|
473
|
+
<div class="split" style="margin-top: 30px;">
|
|
474
|
+
<div>
|
|
475
|
+
<h3 style="font-size: 1.1em; color: var(--dark-red);">The Subsidy Problem</h3>
|
|
476
|
+
<p style="font-size: 0.8em;">Most 3rd-party tools get banned because they are adversarial wrappers that consume subsidized tokens faster. They cost providers money.</p>
|
|
477
|
+
|
|
478
|
+
<h3 style="font-size: 1.1em; color: var(--cyan); margin-top: 20px;">The Strategic Alignment</h3>
|
|
479
|
+
<p style="font-size: 0.8em;">Groove reduces token consumption by 40–60% per session. For every 10,000 Max users, Anthropic saves an estimated $20–30M per month in subsidy costs.</p>
|
|
480
|
+
</div>
|
|
481
|
+
<div class="card" style="background: var(--navy); color: white;">
|
|
482
|
+
<h3 class="accent-cyan" style="font-size: 1.1em; margin-top:0;">The Ask</h3>
|
|
483
|
+
<p style="font-size: 0.85em; opacity: 0.9;">
|
|
484
|
+
We are not asking for investment from Anthropic.<br><br>
|
|
485
|
+
We are asking for recognition that Groove is aligned infrastructure.<br><br>
|
|
486
|
+
A mention in the Claude Code docs and an intro to DevRel is the entire ask.
|
|
487
|
+
</p>
|
|
488
|
+
</div>
|
|
489
|
+
</div>
|
|
490
|
+
</section>
|
|
491
|
+
|
|
492
|
+
<!-- SLIDE 14: The Vision -->
|
|
493
|
+
<section data-state="navy-bg" class="navy-bg text-left">
|
|
494
|
+
<h2 style="font-size: 1.8em; max-width: 900px;">What if every developer had an AI team that never forgot anything?</h2>
|
|
495
|
+
|
|
496
|
+
<div class="split" style="margin-top: 40px; font-size: 0.85em;">
|
|
497
|
+
<div>
|
|
498
|
+
<h3 class="accent-cyan">12-Month Vision</h3>
|
|
499
|
+
<ul>
|
|
500
|
+
<li>Standard coordination layer for Claude Code.</li>
|
|
501
|
+
<li>500+ shared team configs in registry.</li>
|
|
502
|
+
<li>Provider partnership with Anthropic.</li>
|
|
503
|
+
<li>500+ paying Pro subscribers proving ROI.</li>
|
|
504
|
+
</ul>
|
|
505
|
+
</div>
|
|
506
|
+
<div>
|
|
507
|
+
<h3 class="accent-cyan">3-Year Vision</h3>
|
|
508
|
+
<ul>
|
|
509
|
+
<li>Tool-agnostic (Codex, Gemini, Local).</li>
|
|
510
|
+
<li>Enterprise tier with shared project maps.</li>
|
|
511
|
+
<li>Developer marketplace for agent setups.</li>
|
|
512
|
+
<li>Every serious AI workflow runs on Groove.</li>
|
|
513
|
+
</ul>
|
|
514
|
+
</div>
|
|
515
|
+
</div>
|
|
516
|
+
|
|
517
|
+
<div class="highlight-box" style="margin-top: 30px; border-left-color: white; background: rgba(255,255,255,0.1);">
|
|
518
|
+
The longer developers use Groove, the richer their context becomes. The Journalist is a data flywheel that compounds indefinitely.
|
|
519
|
+
</div>
|
|
520
|
+
</section>
|
|
521
|
+
|
|
522
|
+
<!-- SLIDE 15: The Ask -->
|
|
523
|
+
<section class="navy-bg text-center" data-state="navy-bg">
|
|
524
|
+
<div class="hero-icon" style="font-size: 3em; margin-bottom: 10px;">∞</div>
|
|
525
|
+
<h2 style="margin-bottom: 30px;">Let's build the coordination layer.</h2>
|
|
526
|
+
|
|
527
|
+
<div class="grid-cards" style="text-align: left; max-width: 900px; margin: 0 auto; gap: 30px;">
|
|
528
|
+
<div>
|
|
529
|
+
<h3 class="accent-cyan" style="font-size: 1.1em;">What would accelerate us</h3>
|
|
530
|
+
<ul style="font-size: 0.8em;">
|
|
531
|
+
<li><strong>Community:</strong> Early adopters to test & share.</li>
|
|
532
|
+
<li><strong>Visibility:</strong> Newsletter mentions, HN/Product Hunt.</li>
|
|
533
|
+
<li><strong>Partnerships:</strong> DevRel intros at Anthropic/OpenAI.</li>
|
|
534
|
+
<li><strong>Investment:</strong> Pre-seed capital for full-time dev.</li>
|
|
535
|
+
</ul>
|
|
536
|
+
</div>
|
|
537
|
+
<div>
|
|
538
|
+
<h3 class="accent-cyan" style="font-size: 1.1em;">What we offer</h3>
|
|
539
|
+
<ul style="font-size: 0.8em;">
|
|
540
|
+
<li>Working product solving real daily problems.</li>
|
|
541
|
+
<li>Open source codebase (forkable, permanent).</li>
|
|
542
|
+
<li>Token efficiency data of high economic value.</li>
|
|
543
|
+
<li>First-mover position in a new category.</li>
|
|
544
|
+
</ul>
|
|
545
|
+
</div>
|
|
546
|
+
</div>
|
|
547
|
+
|
|
548
|
+
<div style="margin-top: 50px; font-weight: 600; font-size: 1.1em;">
|
|
549
|
+
grooveai.dev | github.com/grooveai-dev | hello@grooveai.dev
|
|
550
|
+
</div>
|
|
551
|
+
</section>
|
|
552
|
+
|
|
553
|
+
<!-- APPENDIX SLIDES -->
|
|
554
|
+
<section class="text-left">
|
|
555
|
+
<h2>Appendix A1: Technical Architecture Deep-Dive</h2>
|
|
556
|
+
<div class="split">
|
|
557
|
+
<div class="diagram-placeholder" style="flex: 0.6; min-height: 400px;">
|
|
558
|
+
[ Architecture Diagram ]
|
|
559
|
+
</div>
|
|
560
|
+
<div style="font-size: 0.8em;">
|
|
561
|
+
<p><strong>Core Components:</strong> Daemon, Registry, Introducer, Lock Manager, Journalist, QC Supervisor, GUI, CLI.</p>
|
|
562
|
+
<p><strong>Tech Stack:</strong></p>
|
|
563
|
+
<ul>
|
|
564
|
+
<li>Backend: Node.js, WebSockets</li>
|
|
565
|
+
<li>Frontend: React, xterm.js, React Flow</li>
|
|
566
|
+
<li>Storage: Local file system (Markdown, JSON)</li>
|
|
567
|
+
</ul>
|
|
568
|
+
<p class="accent-red" style="font-weight:bold; margin-top: 15px;">Compliance Note</p>
|
|
569
|
+
<p>Groove is not a wrapper or harness. It orchestrates official CLI tools, preserving the exact Terms of Service of the underlying providers.</p>
|
|
570
|
+
</div>
|
|
571
|
+
</div>
|
|
572
|
+
</section>
|
|
573
|
+
|
|
574
|
+
<section class="text-left">
|
|
575
|
+
<h2>Appendix A2: Token Savings Methodology</h2>
|
|
576
|
+
<p style="font-size: 0.9em; max-width: 800px;">How the 40–60% savings estimate was derived.</p>
|
|
577
|
+
<table style="font-size: 0.7em; width: 100%; border-collapse: collapse; margin-top: 20px;">
|
|
578
|
+
<tr style="border-bottom: 2px solid var(--navy); text-align: left;">
|
|
579
|
+
<th style="padding: 10px;">Component</th>
|
|
580
|
+
<th style="padding: 10px;">Mechanism</th>
|
|
581
|
+
<th style="padding: 10px;">Est. Savings</th>
|
|
582
|
+
</tr>
|
|
583
|
+
<tr style="border-bottom: 1px solid #eee;">
|
|
584
|
+
<td style="padding: 10px;"><strong>Cold-Start</strong></td>
|
|
585
|
+
<td style="padding: 10px;">Replacing 4k-8k manual context tokens with 400-600 token Journalist Map read.</td>
|
|
586
|
+
<td style="padding: 10px;">20–30%</td>
|
|
587
|
+
</tr>
|
|
588
|
+
<tr style="border-bottom: 1px solid #eee;">
|
|
589
|
+
<td style="padding: 10px;"><strong>Duplicate Work</strong></td>
|
|
590
|
+
<td style="padding: 10px;">File Lock Manager prevents conflicting edits and rewrite loops.</td>
|
|
591
|
+
<td style="padding: 10px;">10–15%</td>
|
|
592
|
+
</tr>
|
|
593
|
+
<tr style="border-bottom: 1px solid #eee;">
|
|
594
|
+
<td style="padding: 10px;"><strong>Context Rotation</strong></td>
|
|
595
|
+
<td style="padding: 10px;">Automated rotation before quality drops, preventing hallucination spirals.</td>
|
|
596
|
+
<td style="padding: 10px;">10–15%</td>
|
|
597
|
+
</tr>
|
|
598
|
+
<tr>
|
|
599
|
+
<td style="padding: 10px;"><strong>Model Routing</strong></td>
|
|
600
|
+
<td style="padding: 10px;">Using local models/cheaper models for simple validations (Phase 5).</td>
|
|
601
|
+
<td style="padding: 10px;">5–10%</td>
|
|
602
|
+
</tr>
|
|
603
|
+
</table>
|
|
604
|
+
</section>
|
|
605
|
+
|
|
606
|
+
<section class="text-left">
|
|
607
|
+
<h2>Appendix A3: Competitive Analysis Detail</h2>
|
|
608
|
+
<div style="font-size: 0.65em; overflow-x: auto;">
|
|
609
|
+
<table style="width: 100%; border-collapse: collapse;">
|
|
610
|
+
<tr style="border-bottom: 2px solid var(--navy); text-align: left; background: rgba(0,0,0,0.03);">
|
|
611
|
+
<th style="padding: 8px;">Feature</th>
|
|
612
|
+
<th style="padding: 8px;">Groove</th>
|
|
613
|
+
<th style="padding: 8px;">Agent Teams</th>
|
|
614
|
+
<th style="padding: 8px;">Terminal Muxers</th>
|
|
615
|
+
<th style="padding: 8px;">IDE AI (Cursor)</th>
|
|
616
|
+
</tr>
|
|
617
|
+
<tr style="border-bottom: 1px solid #eee;">
|
|
618
|
+
<td style="padding: 8px; font-weight: bold;">Dynamic Spawning</td>
|
|
619
|
+
<td style="padding: 8px; color: green;">Yes (Bottom-up)</td>
|
|
620
|
+
<td style="padding: 8px; color: red;">No (Top-down only)</td>
|
|
621
|
+
<td style="padding: 8px; color: green;">Yes</td>
|
|
622
|
+
<td style="padding: 8px; color: red;">No</td>
|
|
623
|
+
</tr>
|
|
624
|
+
<tr style="border-bottom: 1px solid #eee;">
|
|
625
|
+
<td style="padding: 8px; font-weight: bold;">System-level Context</td>
|
|
626
|
+
<td style="padding: 8px; color: green;">Yes (Journalist)</td>
|
|
627
|
+
<td style="padding: 8px; color: orange;">Partial (Session only)</td>
|
|
628
|
+
<td style="padding: 8px; color: red;">No</td>
|
|
629
|
+
<td style="padding: 8px; color: orange;">File-level only</td>
|
|
630
|
+
</tr>
|
|
631
|
+
<tr style="border-bottom: 1px solid #eee;">
|
|
632
|
+
<td style="padding: 8px; font-weight: bold;">File Locks / Collision Prev.</td>
|
|
633
|
+
<td style="padding: 8px; color: green;">Yes</td>
|
|
634
|
+
<td style="padding: 8px; color: red;">No</td>
|
|
635
|
+
<td style="padding: 8px; color: red;">No</td>
|
|
636
|
+
<td style="padding: 8px; color: red;">No</td>
|
|
637
|
+
</tr>
|
|
638
|
+
<tr style="border-bottom: 1px solid #eee;">
|
|
639
|
+
<td style="padding: 8px; font-weight: bold;">Visual Management GUI</td>
|
|
640
|
+
<td style="padding: 8px; color: green;">Yes</td>
|
|
641
|
+
<td style="padding: 8px; color: red;">No</td>
|
|
642
|
+
<td style="padding: 8px; color: red;">No</td>
|
|
643
|
+
<td style="padding: 8px; color: green;">Yes</td>
|
|
644
|
+
</tr>
|
|
645
|
+
<tr>
|
|
646
|
+
<td style="padding: 8px; font-weight: bold;">Multi-Provider Support</td>
|
|
647
|
+
<td style="padding: 8px; color: green;">Yes (Phase 5)</td>
|
|
648
|
+
<td style="padding: 8px; color: red;">No (Anthropic only)</td>
|
|
649
|
+
<td style="padding: 8px; color: green;">Yes</td>
|
|
650
|
+
<td style="padding: 8px; color: green;">Yes</td>
|
|
651
|
+
</tr>
|
|
652
|
+
</table>
|
|
653
|
+
</div>
|
|
654
|
+
</section>
|
|
655
|
+
|
|
656
|
+
<section class="text-left">
|
|
657
|
+
<h2>Appendix A4: Pricing Psychology</h2>
|
|
658
|
+
<div class="split">
|
|
659
|
+
<div style="font-size: 0.8em;">
|
|
660
|
+
<p><strong>The Free Tier as Distribution:</strong></p>
|
|
661
|
+
<p>Must be excellent. Top of funnel. Never show a paywall mid-session. The upgrade should feel like wanting more, not being blocked.</p>
|
|
662
|
+
<br>
|
|
663
|
+
<p><strong>Groove Pro ($20/mo):</strong></p>
|
|
664
|
+
<p>Priced identically to base LLM subscriptions. It establishes Groove as an equal layer of value.</p>
|
|
665
|
+
</div>
|
|
666
|
+
<div class="card" style="background: var(--light-bg);">
|
|
667
|
+
<h3 style="font-size: 1.1em;" class="accent-cyan">The "Self-Paying" Trigger</h3>
|
|
668
|
+
<p style="font-size: 0.85em;">
|
|
669
|
+
The session summary in the Free tier shows exactly how many tokens (and dollars) the Journalist saved.<br><br>
|
|
670
|
+
When a free user sees: <em>"Groove saved you $4.50 this session,"</em> the $20/mo Pro upgrade becomes a purely rational economic decision.
|
|
671
|
+
</p>
|
|
672
|
+
</div>
|
|
673
|
+
</div>
|
|
674
|
+
</section>
|
|
675
|
+
|
|
676
|
+
<section class="text-left">
|
|
677
|
+
<h2>Appendix A5: Founder Background</h2>
|
|
678
|
+
<div class="split">
|
|
679
|
+
<div style="font-size: 0.85em;">
|
|
680
|
+
<h3 style="font-size: 1.2em;">Ryan [Founder]</h3>
|
|
681
|
+
<p>Founder, Studio19 by Motovizion</p>
|
|
682
|
+
<ul style="margin-top: 15px;">
|
|
683
|
+
<li>Runs AI-powered digital marketing for automotive dealerships.</li>
|
|
684
|
+
<li>Builds & operates automated Claude Code agent infrastructure in production for Meta/Google ads.</li>
|
|
685
|
+
<li>Former Internet Director at Toyota. Deep domain knowledge in automotive AI.</li>
|
|
686
|
+
<li>Also building: RideSearch.ai and Pre-Diag.</li>
|
|
687
|
+
</ul>
|
|
688
|
+
</div>
|
|
689
|
+
<div class="highlight-box" style="flex: 0.8; font-size: 0.9em;">
|
|
690
|
+
The automotive background is a strength, not a weakness. It means the production systems are real, dealing with real budgets and messy APIs.<br><br>
|
|
691
|
+
Groove was built to solve the real scaling pain of these systems.
|
|
692
|
+
</div>
|
|
693
|
+
</div>
|
|
694
|
+
</section>
|
|
695
|
+
|
|
696
|
+
</div>
|
|
697
|
+
</div>
|
|
698
|
+
|
|
699
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.3.1/reveal.min.js"></script>
|
|
700
|
+
<script>
|
|
701
|
+
Reveal.initialize({
|
|
702
|
+
hash: true,
|
|
703
|
+
slideNumber: 'c/t',
|
|
704
|
+
width: 1200,
|
|
705
|
+
height: 700,
|
|
706
|
+
margin: 0.08,
|
|
707
|
+
transition: 'fade',
|
|
708
|
+
backgroundTransition: 'fade',
|
|
709
|
+
center: true
|
|
710
|
+
});
|
|
711
|
+
|
|
712
|
+
// Add navy-bg class to slides matching data-state
|
|
713
|
+
Reveal.addEventListener('navy-bg', function() {
|
|
714
|
+
document.querySelector('.reveal').classList.add('navy-text-light');
|
|
715
|
+
});
|
|
716
|
+
</script>
|
|
717
|
+
</body>
|
|
718
|
+
</html>
|