groove-dev 0.26.13 → 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/daemon/src/api.js +9 -0
- package/node_modules/@groove-dev/daemon/src/process.js +3 -1
- package/node_modules/@groove-dev/daemon/src/skills.js +46 -1
- package/node_modules/@groove-dev/daemon/src/terminal-pty.js +2 -2
- package/node_modules/@groove-dev/gui/dist/assets/index-CBlL5EFb.js +638 -0
- package/node_modules/@groove-dev/gui/dist/assets/{index-C4cVCdfw.css → index-E07lphaH.css} +1 -1
- package/node_modules/@groove-dev/gui/dist/index.html +2 -2
- package/node_modules/@groove-dev/gui/src/views/editor.jsx +58 -2
- package/node_modules/@groove-dev/gui/src/views/marketplace.jsx +92 -7
- package/package.json +1 -1
- package/packages/daemon/src/api.js +9 -0
- package/packages/daemon/src/process.js +3 -1
- package/packages/daemon/src/skills.js +46 -1
- package/packages/daemon/src/terminal-pty.js +2 -2
- package/packages/gui/dist/assets/index-CBlL5EFb.js +638 -0
- package/packages/gui/dist/assets/{index-C4cVCdfw.css → index-E07lphaH.css} +1 -1
- package/packages/gui/dist/index.html +2 -2
- package/packages/gui/src/views/editor.jsx +58 -2
- package/packages/gui/src/views/marketplace.jsx +92 -7
- package/pitch_deck/index.html +718 -0
- package/pitch_deck/slides.json +197 -0
- package/node_modules/@groove-dev/gui/dist/assets/index-BluxaN32.js +0 -633
- package/packages/gui/dist/assets/index-BluxaN32.js +0 -633
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
{
|
|
2
|
+
"deck_title": "Groove AI Pitch Deck",
|
|
3
|
+
"brand": {
|
|
4
|
+
"colors": {
|
|
5
|
+
"navy": "#0D2137",
|
|
6
|
+
"cyan": "#4DD9C0",
|
|
7
|
+
"red": "#D94D4D",
|
|
8
|
+
"light": "#F8F9FA"
|
|
9
|
+
},
|
|
10
|
+
"fonts": ["Inter", "Helvetica", "sans-serif"]
|
|
11
|
+
},
|
|
12
|
+
"slides": [
|
|
13
|
+
{
|
|
14
|
+
"slide_number": 1,
|
|
15
|
+
"type": "cover",
|
|
16
|
+
"background": "navy",
|
|
17
|
+
"headline": "groove ai",
|
|
18
|
+
"subheadline": "The intelligent orchestration layer for AI coding agents.",
|
|
19
|
+
"text": "Coordinate agents. Eliminate cold-start. Save 40–60% on tokens. Automatically."
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"slide_number": 2,
|
|
23
|
+
"type": "content",
|
|
24
|
+
"headline": "AI coding tools are broken at the multi-agent level.",
|
|
25
|
+
"items": [
|
|
26
|
+
{"title": "Agents clash", "text": "Two sessions edit the same files and waste tokens on discarded work."},
|
|
27
|
+
{"title": "Cold-start tax", "text": "Every new session starts blind, wasting 5-10 mins and thousands of tokens."},
|
|
28
|
+
{"title": "Context degradation", "text": "Windows fill up, compaction is lossy, model quality drops."},
|
|
29
|
+
{"title": "Invisible token waste", "text": "No per-agent breakdown. High bills, opaque value."},
|
|
30
|
+
{"title": "Terminal-only", "text": "Requires terminal comfort. No visual interface."}
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"slide_number": 3,
|
|
35
|
+
"type": "content",
|
|
36
|
+
"headline": "Groove AI — the coordination layer your agents are missing.",
|
|
37
|
+
"items": [
|
|
38
|
+
{"title": "Introduction Protocol", "text": "Second agent auto-introduces to the first. Zero config required."},
|
|
39
|
+
{"title": "The Journalist", "text": "Background agent writes living documentation. One-read cold-start."},
|
|
40
|
+
{"title": "File Lock Manager", "text": "Directory ownership prevents concurrent conflicting writes."},
|
|
41
|
+
{"title": "QC Supervisor", "text": "Auto-spawns at scale to route approvals."},
|
|
42
|
+
{"title": "Visual Agent Tree", "text": "React GUI in cmux pane to manage agents visually."}
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"slide_number": 4,
|
|
47
|
+
"type": "flow",
|
|
48
|
+
"headline": "Spawn fast. Stay aware. Never lose context.",
|
|
49
|
+
"steps": [
|
|
50
|
+
"Spawn: groove spawn --backend",
|
|
51
|
+
"Register: Daemon registers agent in registry.",
|
|
52
|
+
"Initialize: Claude Code opens in a cmux pane with Journalist brief.",
|
|
53
|
+
"Coordinate: Next agent spawns. Daemon writes an introduction.",
|
|
54
|
+
"Scale: At 4 agents, QC supervisor auto-spawns.",
|
|
55
|
+
"Synthesize: Session ends. Journalist updates project map.",
|
|
56
|
+
"Repeat: Next session cold-starts in under 30s."
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"slide_number": 5,
|
|
61
|
+
"type": "comparison",
|
|
62
|
+
"background": "navy",
|
|
63
|
+
"headline": "The cold-start problem. Solved at the system level.",
|
|
64
|
+
"comparison": {
|
|
65
|
+
"without_groove": "4,000–8,000 tokens",
|
|
66
|
+
"with_groove": "400–600 tokens"
|
|
67
|
+
},
|
|
68
|
+
"highlight": "90% reduction in cold-start token cost. Per session. Every session."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"slide_number": 6,
|
|
72
|
+
"type": "content",
|
|
73
|
+
"headline": "Groove pays for itself in the first session.",
|
|
74
|
+
"stats": "40–60% total addressable waste in current token spend.",
|
|
75
|
+
"breakdown": [
|
|
76
|
+
"Cold-start: 20-30%",
|
|
77
|
+
"Redundant explanation: 15-25%",
|
|
78
|
+
"Context degradation: 10-20%",
|
|
79
|
+
"Wrong model: 10-15%"
|
|
80
|
+
],
|
|
81
|
+
"note": "Provider Alignment: Saves Anthropic $3k-$5k/mo per Max user."
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"slide_number": 7,
|
|
85
|
+
"type": "content",
|
|
86
|
+
"headline": "The multi-agent development layer is wide open.",
|
|
87
|
+
"target_market": ["Power developers", "Indie hackers", "Non-technical builders", "Enterprise"],
|
|
88
|
+
"why_now": ["Claude Code mainstream Feb 2025", "Agent Teams are top-down", "No bottom-up tool exists"],
|
|
89
|
+
"comparable": "Cursor reached $9B building on VS Code. Groove builds on Claude Code."
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"slide_number": 8,
|
|
93
|
+
"type": "positioning",
|
|
94
|
+
"headline": "Nobody owns this layer. Yet.",
|
|
95
|
+
"differentiation": [
|
|
96
|
+
"Bottom-up dynamic spawning",
|
|
97
|
+
"The Journalist",
|
|
98
|
+
"Multi-tool support",
|
|
99
|
+
"GUI Accessible",
|
|
100
|
+
"Compliance-forward"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"slide_number": 9,
|
|
105
|
+
"type": "roadmap",
|
|
106
|
+
"headline": "Five phases from daemon to platform.",
|
|
107
|
+
"phases": [
|
|
108
|
+
{"phase": "1", "name": "Core Coordination", "goal": "Agents don't clash"},
|
|
109
|
+
{"phase": "2", "name": "The Journalist", "goal": "Cold-start injection"},
|
|
110
|
+
{"phase": "3", "name": "Visual GUI", "goal": "Visual management"},
|
|
111
|
+
{"phase": "4", "name": "QC Supervisor", "goal": "Hands-off autopilot"},
|
|
112
|
+
{"phase": "5", "name": "Multi-Provider + Launch", "goal": "Public availability"}
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"slide_number": 10,
|
|
117
|
+
"type": "pricing",
|
|
118
|
+
"background": "navy",
|
|
119
|
+
"headline": "Free forever at the core. Revenue from the layer above.",
|
|
120
|
+
"tiers": [
|
|
121
|
+
{"name": "Free Tier", "price": "$0", "features": ["3 concurrent agents", "Manual context rotation", "Basic GUI tree"]},
|
|
122
|
+
{"name": "Groove Pro", "price": "$20/mo", "features": ["Unlimited agents", "Adaptive rotation", "All providers"]},
|
|
123
|
+
{"name": "Groove Team", "price": "$40/user", "features": ["Shared config registry", "Team-wide Journalist", "Audit logs"]}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"slide_number": 11,
|
|
128
|
+
"type": "content",
|
|
129
|
+
"headline": "Built by a practitioner. Validated by the problem.",
|
|
130
|
+
"founder": "Ryan [Founder] - Founder of Studio19 by Motovizion",
|
|
131
|
+
"traction": ["Domain & NPM package secured", "North star architecture complete", "Phase 1 in progress"]
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"slide_number": 12,
|
|
135
|
+
"type": "content",
|
|
136
|
+
"headline": "Distribution first. Monetization second.",
|
|
137
|
+
"channels": ["Hacker News", "Reddit", "Product Hunt", "X/Twitter"],
|
|
138
|
+
"viral_loops": ["Session summaries", "Shareable team configs", "Live token savings counter"],
|
|
139
|
+
"highlight": "The demo GIF is the product."
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"slide_number": 13,
|
|
143
|
+
"type": "content",
|
|
144
|
+
"headline": "Groove saves Anthropic money. That is the pitch.",
|
|
145
|
+
"problem": "Subsidy Problem: Wrappers consume subsidized tokens faster.",
|
|
146
|
+
"solution": "Strategic Alignment: Groove reduces consumption by 40-60%. Saves $20-30M/mo per 10k Max users.",
|
|
147
|
+
"ask": "Recognition as aligned infrastructure."
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"slide_number": 14,
|
|
151
|
+
"type": "content",
|
|
152
|
+
"background": "navy",
|
|
153
|
+
"headline": "What if every developer had an AI team that never forgot anything?",
|
|
154
|
+
"vision_12m": ["Standard coordination layer", "500+ shared team configs", "Provider partnership", "500+ Pro subscribers"],
|
|
155
|
+
"vision_3y": ["Tool-agnostic", "Enterprise tier", "Developer marketplace", "Infrastructure layer"]
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"slide_number": 15,
|
|
159
|
+
"type": "ask",
|
|
160
|
+
"background": "navy",
|
|
161
|
+
"headline": "Let's build the coordination layer.",
|
|
162
|
+
"accelerators": ["Community", "Visibility", "Partnerships", "Investment"],
|
|
163
|
+
"offerings": ["Working product", "Open source codebase", "Token efficiency data", "First-mover position"],
|
|
164
|
+
"contact": "grooveai.dev | github.com/grooveai-dev | hello@grooveai.dev"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"slide_number": 16,
|
|
168
|
+
"type": "appendix",
|
|
169
|
+
"headline": "Appendix A1: Technical Architecture Deep-Dive",
|
|
170
|
+
"content": "Core Components: Daemon, Registry, Introducer, Lock Manager, Journalist, QC Supervisor, GUI, CLI."
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"slide_number": 17,
|
|
174
|
+
"type": "appendix",
|
|
175
|
+
"headline": "Appendix A2: Token Savings Methodology",
|
|
176
|
+
"content": "Cold-Start: 20-30%. Duplicate Work: 10-15%. Context Rotation: 10-15%. Model Routing: 5-10%."
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"slide_number": 18,
|
|
180
|
+
"type": "appendix",
|
|
181
|
+
"headline": "Appendix A3: Competitive Analysis Detail",
|
|
182
|
+
"content": "Groove vs Agent Teams vs Terminal Muxers vs IDE AI."
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"slide_number": 19,
|
|
186
|
+
"type": "appendix",
|
|
187
|
+
"headline": "Appendix A4: Pricing Psychology",
|
|
188
|
+
"content": "Free Tier as distribution. Groove Pro self-paying trigger."
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"slide_number": 20,
|
|
192
|
+
"type": "appendix",
|
|
193
|
+
"headline": "Appendix A5: Founder Background",
|
|
194
|
+
"content": "Automotive background implies production systems are real."
|
|
195
|
+
}
|
|
196
|
+
]
|
|
197
|
+
}
|