-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacquisition.html
More file actions
575 lines (539 loc) · 24 KB
/
acquisition.html
File metadata and controls
575 lines (539 loc) · 24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RedSwitch.ai — Acquisition Information Package</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Georgia', serif;
background: #fff;
color: #1a1a1a;
line-height: 1.7;
font-size: 15px;
}
.page {
max-width: 860px;
margin: 0 auto;
padding: 60px 80px;
}
/* Cover */
.cover {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
background: #0a0a0a;
color: #fff;
padding: 80px;
position: relative;
}
.cover-logo {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 80px;
}
.cover-dot {
width: 16px;
height: 16px;
background: #dc2626;
border-radius: 50%;
}
.cover-brand {
font-family: 'Arial', sans-serif;
font-size: 28px;
font-weight: 700;
letter-spacing: -0.5px;
}
.cover h1 {
font-size: 52px;
font-weight: 300;
line-height: 1.15;
margin-bottom: 24px;
max-width: 700px;
}
.cover h1 strong {
font-weight: 700;
color: #dc2626;
}
.cover-sub {
font-size: 20px;
color: #a0a0a0;
max-width: 600px;
margin-bottom: 80px;
font-family: 'Arial', sans-serif;
}
.cover-meta {
display: flex;
gap: 60px;
border-top: 1px solid #333;
padding-top: 40px;
}
.cover-meta-item label {
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #666;
display: block;
margin-bottom: 6px;
font-family: 'Arial', sans-serif;
}
.cover-meta-item span {
font-size: 16px;
color: #fff;
font-family: 'Arial', sans-serif;
}
.confidential {
position: absolute;
top: 40px;
right: 80px;
font-size: 11px;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #555;
font-family: 'Arial', sans-serif;
border: 1px solid #333;
padding: 6px 14px;
}
/* Content pages */
.section {
padding: 60px 80px;
max-width: 860px;
margin: 0 auto;
}
.section + .section {
border-top: 1px solid #e8e8e8;
}
.section-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #dc2626;
margin-bottom: 12px;
font-family: 'Arial', sans-serif;
}
h2 {
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
line-height: 1.2;
color: #0a0a0a;
}
h3 {
font-size: 18px;
font-weight: 700;
margin: 32px 0 12px;
color: #0a0a0a;
font-family: 'Arial', sans-serif;
}
p {
margin-bottom: 16px;
color: #333;
}
.lead {
font-size: 18px;
color: #444;
line-height: 1.8;
margin-bottom: 32px;
}
/* Tables */
table {
width: 100%;
border-collapse: collapse;
margin: 24px 0;
font-family: 'Arial', sans-serif;
font-size: 14px;
}
th {
background: #0a0a0a;
color: #fff;
padding: 12px 16px;
text-align: left;
font-size: 12px;
letter-spacing: 0.05em;
text-transform: uppercase;
}
td {
padding: 11px 16px;
border-bottom: 1px solid #f0f0f0;
color: #333;
}
tr:nth-child(even) td {
background: #fafafa;
}
.status-live {
color: #16a34a;
font-weight: 600;
}
.status-paused {
color: #d97706;
}
/* Highlight boxes */
.highlight-box {
background: #fafafa;
border-left: 4px solid #dc2626;
padding: 24px 28px;
margin: 28px 0;
border-radius: 0 8px 8px 0;
}
.highlight-box p {
margin: 0;
font-size: 16px;
color: #1a1a1a;
font-style: italic;
}
/* Metrics grid */
.metrics-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
margin: 28px 0;
background: #e8e8e8;
}
.metric {
background: #fff;
padding: 28px 24px;
text-align: center;
}
.metric-value {
font-size: 36px;
font-weight: 800;
color: #0a0a0a;
font-family: 'Arial', sans-serif;
display: block;
line-height: 1;
margin-bottom: 8px;
}
.metric-label {
font-size: 12px;
color: #888;
text-transform: uppercase;
letter-spacing: 0.1em;
font-family: 'Arial', sans-serif;
}
/* Opportunity list */
.opportunity-list {
list-style: none;
margin: 20px 0;
}
.opportunity-list li {
padding: 14px 0;
border-bottom: 1px solid #f0f0f0;
display: flex;
align-items: flex-start;
gap: 16px;
font-family: 'Arial', sans-serif;
font-size: 14px;
color: #333;
}
.opportunity-list li::before {
content: counter(list-counter);
counter-increment: list-counter;
background: #dc2626;
color: #fff;
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 700;
flex-shrink: 0;
margin-top: 1px;
}
.opportunity-list {
counter-reset: list-counter;
}
/* Footer */
.doc-footer {
background: #0a0a0a;
color: #555;
padding: 40px 80px;
font-family: 'Arial', sans-serif;
font-size: 12px;
display: flex;
justify-content: space-between;
align-items: center;
}
.doc-footer span {
color: #333;
}
@media print {
.cover { page-break-after: always; }
.section { page-break-inside: avoid; }
}
</style>
</head>
<body>
<!-- COVER PAGE -->
<div class="cover">
<div class="confidential">Confidential</div>
<div class="cover-logo">
<div class="cover-dot"></div>
<div class="cover-brand">RedSwitch</div>
</div>
<h1>Acquisition <strong>Information</strong> Package</h1>
<p class="cover-sub">The open protocol for AI agent lifecycle management. Dead man's switch for autonomous AI.</p>
<div class="cover-meta">
<div class="cover-meta-item">
<label>Prepared</label>
<span>March 29, 2026</span>
</div>
<div class="cover-meta-item">
<label>Stage</label>
<span>Pre-Revenue / Launched</span>
</div>
<div class="cover-meta-item">
<label>Contact</label>
<span>protocol@redswitch.ai</span>
</div>
<div class="cover-meta-item">
<label>Owner</label>
<span>Evan Hubert</span>
</div>
</div>
</div>
<!-- EXECUTIVE SUMMARY -->
<div class="section">
<div class="section-label">01 — Overview</div>
<h2>Executive Summary</h2>
<p class="lead">RedSwitch is the first open protocol and SaaS product purpose-built for AI agent lifecycle management. It solves a problem that doesn't fully exist yet — but will, at scale: what happens to an autonomous AI agent when its human owner becomes unavailable?</p>
<p>Autonomous AI agents are proliferating rapidly. They run 24/7, make API calls, send emails, spend money, and operate with significant autonomy. Without a failsafe, an incapacitated or deceased owner leaves behind runaway costs, zombie agents operating without oversight, and families with no understanding of what's happening or how to stop it.</p>
<p>RedSwitch solves this with heartbeat monitoring, configurable timeout and shutdown protocols, family notification in plain English, and estate reporting — all built on an open, MIT-licensed protocol that drives adoption through the developer community.</p>
<div class="highlight-box">
<p>"This could become the responsible default for the entire agent ecosystem. People will pay for peace of mind here — think 'AI life insurance.'" — Grok (xAI)</p>
</div>
<p>The product launched March 27, 2026. The infrastructure is fully functional, tested, and generating no ongoing costs at current scale. The opportunity is in acquiring the protocol, brand, and first-mover position in a category that will be worth hundreds of millions as the AI agent market matures.</p>
</div>
<!-- THE PROBLEM -->
<div class="section">
<div class="section-label">02 — Market Opportunity</div>
<h2>The Problem & Market</h2>
<p class="lead">The AI agent market is doubling every 12-18 months. Every agent deployment creates a new lifecycle management problem. No one is solving it.</p>
<h3>The Three Failure Modes</h3>
<table>
<thead>
<tr><th>Failure Mode</th><th>What Happens</th><th>Who's Affected</th></tr>
</thead>
<tbody>
<tr>
<td><strong>Runaway Costs</strong></td>
<td>API bills accumulate indefinitely after the human is incapacitated</td>
<td>Families, estate executors</td>
</tr>
<tr>
<td><strong>Zombie Agents</strong></td>
<td>Agents continue operating with stale context and no oversight</td>
<td>Anyone interacting with the agent</td>
</tr>
<tr>
<td><strong>Family Left Helpless</strong></td>
<td>Non-technical heirs inherit infrastructure they cannot understand or stop</td>
<td>Families, estate attorneys</td>
</tr>
</tbody>
</table>
<h3>Why Now</h3>
<p>In 2024, autonomous AI agents were novelties. By 2026, they are deployed by hundreds of thousands of developers. By 2028, there will be millions. The regulatory environment (AI safety legislation in EU, UK, and emerging US frameworks) is creating demand for exactly this kind of lifecycle governance tooling.</p>
<p>RedSwitch is positioned as the <strong>responsible default</strong> — the thing you add when you build an agent, the same way you add error logging or authentication.</p>
</div>
<!-- PRODUCT -->
<div class="section">
<div class="section-label">03 — Product</div>
<h2>Product Overview</h2>
<h3>RedSwitch Protocol — Free, MIT Licensed</h3>
<table>
<thead><tr><th>Feature</th><th>Description</th></tr></thead>
<tbody>
<tr><td>Agent Registration</td><td>Unique identity, coordination group assignment, trust badge</td></tr>
<tr><td>Heartbeat Monitoring</td><td>Configurable timeout (default 72 hours), grace period</td></tr>
<tr><td>Vacation Mode</td><td>Pause monitoring temporarily, auto-resets</td></tr>
<tr><td>Graceful Shutdown</td><td>Shutdown hooks, state preservation, clean exit</td></tr>
<tr><td>Peer Discovery</td><td>Agents serving the same human find each other</td></tr>
<tr><td>Open Source</td><td>MIT license — drives adoption, not a liability</td></tr>
</tbody>
</table>
<h3>Legacy Protocol — $10/month or $96/year</h3>
<table>
<thead><tr><th>Feature</th><th>Description</th></tr></thead>
<tbody>
<tr><td>Emergency Contacts</td><td>Up to 3 contacts notified on shutdown</td></tr>
<tr><td>Family Notifications</td><td>Plain-English explanation via email + Telegram</td></tr>
<tr><td>Estate Report</td><td>What the agent is, what it costs, how to clean it up</td></tr>
<tr><td>Secure Dashboard</td><td>PIN-protected, AES-256 encrypted configuration</td></tr>
<tr><td>Unlimited Agents</td><td>No agent cap (free tier: 3 agents)</td></tr>
</tbody>
</table>
<h3>Phase 2 Roadmap (Do Not Build Prematurely)</h3>
<table>
<thead><tr><th>Product</th><th>Price</th><th>Description</th></tr></thead>
<tbody>
<tr><td>Succession Protocol</td><td>$20-25/month</td><td>Seamless agent handoff to partner/team instead of shutdown</td></tr>
<tr><td>Black Box</td><td>$25-50/month</td><td>Immutable audit trails, compliance logging, flight recorder</td></tr>
</tbody>
</table>
</div>
<!-- TECHNICAL -->
<div class="section">
<div class="section-label">04 — Technology</div>
<h2>Technical Architecture</h2>
<p class="lead">Built on Cloudflare's edge network. Zero infrastructure cost at current scale. Horizontally scalable without re-architecture.</p>
<table>
<thead><tr><th>Component</th><th>Technology</th><th>Notes</th></tr></thead>
<tbody>
<tr><td>API</td><td>Cloudflare Workers (TypeScript)</td><td>Edge-deployed, globally distributed</td></tr>
<tr><td>Storage</td><td>Cloudflare KV</td><td>Sub-millisecond reads globally</td></tr>
<tr><td>Frontend</td><td>Cloudflare Pages (Static)</td><td>Zero hosting cost, global CDN</td></tr>
<tr><td>Email</td><td>Resend</td><td>Domain verified, transactional email</td></tr>
<tr><td>Notifications</td><td>Telegram Bot API</td><td>@RedSwitchBot, working</td></tr>
<tr><td>Payments</td><td>Stripe</td><td>Monthly + annual subscriptions live</td></tr>
<tr><td>Python SDK</td><td>PyPI (pip install redswitch)</td><td>v0.1.3, MIT license</td></tr>
<tr><td>Scheduled Jobs</td><td>Cloudflare Cron Triggers</td><td>Timeout checks every 15 minutes</td></tr>
</tbody>
</table>
<h3>Infrastructure Cost</h3>
<p>Current monthly infrastructure cost: <strong>$0</strong> (Cloudflare free tier). The architecture will support thousands of agents before requiring a paid Cloudflare plan (~$5/month). The business model has near-infinite margin at scale.</p>
<h3>Security</h3>
<p>All sensitive data (emergency contacts, estate reports) encrypted at rest with AES-256-GCM. PINs hashed with SHA-256 + unique salt per user. Full access logging (IP, country, timestamp) with 90-day retention.</p>
</div>
<!-- TRACTION -->
<div class="section">
<div class="section-label">05 — Traction</div>
<h2>Current Metrics</h2>
<p><em>Product launched March 27, 2026 — 2 days before this document.</em></p>
<div class="metrics-grid">
<div class="metric">
<span class="metric-value">3</span>
<span class="metric-label">Agents Registered</span>
</div>
<div class="metric">
<span class="metric-value">3</span>
<span class="metric-label">Active Agents</span>
</div>
<div class="metric">
<span class="metric-value">0.1.3</span>
<span class="metric-label">SDK Version</span>
</div>
<div class="metric">
<span class="metric-value">$0</span>
<span class="metric-label">Infra Cost/Month</span>
</div>
<div class="metric">
<span class="metric-value">15 min</span>
<span class="metric-label">Timeout Check Interval</span>
</div>
<div class="metric">
<span class="metric-value">Apr 10</span>
<span class="metric-label">ClawHub Launch</span>
</div>
</div>
<h3>What's Fully Functional</h3>
<table>
<thead><tr><th>Feature</th><th>Status</th></tr></thead>
<tbody>
<tr><td>Agent registration & heartbeat</td><td class="status-live">✓ Live</td></tr>
<tr><td>Graceful shutdown protocol</td><td class="status-live">✓ Live</td></tr>
<tr><td>Email notifications (Resend)</td><td class="status-live">✓ Live & Tested</td></tr>
<tr><td>Telegram notifications</td><td class="status-live">✓ Live & Tested</td></tr>
<tr><td>Stripe payment processing</td><td class="status-live">✓ Live</td></tr>
<tr><td>PIN-protected dashboard</td><td class="status-live">✓ Live</td></tr>
<tr><td>AES-256 encrypted storage</td><td class="status-live">✓ Live</td></tr>
<tr><td>Estate report system</td><td class="status-live">✓ Live</td></tr>
<tr><td>Python SDK (PyPI)</td><td class="status-live">✓ Live</td></tr>
<tr><td>GitHub (open source)</td><td class="status-live">✓ Live</td></tr>
<tr><td>SMS notifications (Twilio)</td><td class="status-paused">⏸ Paused (A2P regulatory)</td></tr>
</tbody>
</table>
</div>
<!-- ASSETS -->
<div class="section">
<div class="section-label">06 — Assets</div>
<h2>Assets Included in Acquisition</h2>
<h3>Digital Properties</h3>
<table>
<thead><tr><th>Asset</th><th>Details</th></tr></thead>
<tbody>
<tr><td>Domain</td><td>redswitch.ai (Cloudflare Registrar)</td></tr>
<tr><td>API</td><td>api.redswitch.ai — Cloudflare Workers</td></tr>
<tr><td>Website</td><td>redswitch.ai — Cloudflare Pages</td></tr>
<tr><td>GitHub Org</td><td>github.com/Redswitch-Ai</td></tr>
<tr><td>PyPI Package</td><td>pypi.org/project/redswitch</td></tr>
<tr><td>Telegram Bot</td><td>@RedSwitchBot (ID: 8787733813)</td></tr>
<tr><td>Stripe Account</td><td>Live payment processing, configured webhooks</td></tr>
<tr><td>Resend Account</td><td>Verified sending domain (redswitch.ai)</td></tr>
</tbody>
</table>
<h3>Code Assets</h3>
<ul style="margin: 16px 0 16px 20px; color: #333; font-family: Arial, sans-serif; font-size: 14px; line-height: 2;">
<li>Full API source code (TypeScript, Cloudflare Workers)</li>
<li>Python SDK (open source, MIT licensed)</li>
<li>Complete frontend (landing page, dashboard, docs, legal pages)</li>
<li>Integration libraries (Stripe, Resend, Telegram, Twilio)</li>
<li>Encryption/security layer (AES-256, PIN hashing)</li>
</ul>
</div>
<!-- GROWTH -->
<div class="section">
<div class="section-label">07 — Growth</div>
<h2>Growth Opportunities</h2>
<ul class="opportunity-list">
<li><strong>ClawHub Distribution (April 10, 2026)</strong> — Skill listing reaches every OpenClaw user. First distribution channel. Zero cost.</li>
<li><strong>Reddit / Hacker News Launch</strong> — r/LocalLLaMA, r/MachineLearning, Show HN. Organic developer adoption.</li>
<li><strong>Major Framework SDKs</strong> — LangChain, AutoGPT, CrewAI integrations. SDK-first distribution to the agent builder community.</li>
<li><strong>JavaScript SDK</strong> — Python SDK is live. JS SDK unlocks Node.js and browser-based agent builders.</li>
<li><strong>PR / Media</strong> — "What Happens to Your AI When You Die?" is a story that writes itself. Verge, Wired, Ars Technica.</li>
<li><strong>X/Twitter Community</strong> — @NimrodMedia active, RedSwitch promo content already running. 28 posts live.</li>
<li><strong>B2B Enterprise</strong> — Succession Protocol and Black Box unlock larger enterprise deals at higher ASP.</li>
</ul>
</div>
<!-- MOAT -->
<div class="section">
<div class="section-label">08 — Competitive Position</div>
<h2>Competitive Moat</h2>
<p class="lead">There are no direct competitors. This is a new category being created by the AI agent market.</p>
<table>
<thead><tr><th>Moat</th><th>Description</th></tr></thead>
<tbody>
<tr><td><strong>First Mover</strong></td><td>No competitors. Category is being created now. The time to establish the protocol is today.</td></tr>
<tr><td><strong>Open Protocol</strong></td><td>MIT license drives adoption. Developers adopt freely, convert to paid for family features.</td></tr>
<tr><td><strong>Network Effects</strong></td><td>Coordination groups create value proportional to registered users. More agents = more value.</td></tr>
<tr><td><strong>Protocol Ownership</strong></td><td>Whoever owns the RedSwitch protocol owns the standard. First-mover advantage compounds.</td></tr>
<tr><td><strong>Distribution Pipeline</strong></td><td>ClawHub listing, PyPI, GitHub — developer distribution built in at launch.</td></tr>
<tr><td><strong>Founder Authenticity</strong></td><td>Built by an active AI agent operator. Nimrod (the AI agent) is registered as Agent #1. Story sells itself.</td></tr>
</tbody>
</table>
</div>
<!-- OWNER -->
<div class="section">
<div class="section-label">09 — Ownership & Transfer</div>
<h2>Owner & Transfer Details</h2>
<h3>Current Owner</h3>
<p><strong>Evan Hubert</strong><br>
Entrepreneur, Pittsburg, Missouri<br>
Co-owner, Missouri Metal Buildings<br>
Email: protocol@redswitch.ai</p>
<h3>What Transfers</h3>
<p>All digital assets, accounts, credentials, and code transfer upon acquisition. This includes:</p>
<ul style="margin: 16px 0 16px 20px; color: #333; font-family: Arial, sans-serif; font-size: 14px; line-height: 2;">
<li>Cloudflare account (domain, Workers, Pages, KV namespace)</li>
<li>Stripe account (payment processing history, webhooks)</li>
<li>GitHub organization and all repositories</li>
<li>PyPI account (redswitch package ownership)</li>
<li>Resend account (verified sending domain)</li>
<li>Telegram bot credentials (@RedSwitchBot)</li>
<li>All source code (full rights, no licensing encumbrances)</li>
</ul>
<h3>Transition Support</h3>
<p>Owner available for 30-day transition support to ensure successful handover of all technical infrastructure, ongoing operations, and community relationships.</p>
</div>
<!-- FOOTER -->
<div class="doc-footer">
<span>RedSwitch.ai — Acquisition Information Package — March 2026</span>
<span style="color: #444;">Confidential — Not for Distribution</span>
</div>
</body>
</html>