-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam-value-calculator.html
More file actions
600 lines (544 loc) · 20.5 KB
/
Copy pathteam-value-calculator.html
File metadata and controls
600 lines (544 loc) · 20.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AI Agent Team Value Calculator | Agent Ops Command Center</title>
<meta name="description" content="Estimate cleanup time avoided, failure cost avoided, payback days, and approval language for the $203 Agent Ops Command Center team license before checkout exists.">
<meta property="og:title" content="AI Agent Team Value Calculator">
<meta property="og:description" content="Team value calculator for a seven-seat AI-agent ops template purchase.">
<meta property="og:url" content="https://ivelly42.github.io/agent-ops-command-center/team-value-calculator.html">
<meta property="og:type" content="product">
<meta property="og:image" content="https://ivelly42.github.io/agent-ops-command-center/og.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://ivelly42.github.io/agent-ops-command-center/og.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"name": "AI Agent Team Value Calculator",
"description": "Value calculator for the Agent Ops Command Center seven-seat team-license request.",
"url": "https://ivelly42.github.io/agent-ops-command-center/team-value-calculator.html",
"offers": {
"@type": "Offer",
"price": "203",
"priceCurrency": "USD",
"availability": "https://schema.org/PreOrder"
}
}
</script>
<style>
:root {
color-scheme: light;
--bg: #f8f7f3;
--ink: #121212;
--muted: #66615a;
--line: #ded8ce;
--card: #fffdfa;
--accent: #00796b;
--accent-2: #a15c00;
}
* { box-sizing: border-box; }
body {
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
letter-spacing: 0;
}
a { color: inherit; }
header, main, footer {
width: min(1180px, calc(100% - 32px));
margin: 0 auto;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
padding: 26px 0;
border-bottom: 1px solid var(--line);
}
.brand {
font-weight: 900;
text-decoration: none;
}
nav {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: 16px;
font-size: 14px;
font-weight: 700;
}
nav a { text-decoration: none; }
main { padding: 64px 0; }
.hero {
display: grid;
grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
gap: 56px;
align-items: center;
padding-bottom: 52px;
border-bottom: 1px solid var(--line);
}
.eyebrow {
color: var(--accent);
font-size: 15px;
font-weight: 900;
margin-bottom: 18px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
max-width: 780px;
margin-bottom: 24px;
font-size: clamp(46px, 7vw, 82px);
line-height: 0.96;
letter-spacing: 0;
}
.lead {
max-width: 720px;
color: var(--muted);
font-size: 20px;
line-height: 1.5;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 24px;
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 0 18px;
border: 1px solid var(--ink);
border-radius: 7px;
background: transparent;
color: var(--ink);
font: inherit;
font-weight: 800;
text-decoration: none;
cursor: pointer;
}
.button.primary {
background: var(--ink);
color: var(--card);
}
.summary,
.item,
.field {
border: 1px solid var(--line);
border-radius: 8px;
background: var(--card);
}
.summary {
padding: 28px;
box-shadow: 0 24px 70px rgb(0 0 0 / 0.09);
}
.price {
font-size: clamp(56px, 9vw, 92px);
line-height: 1;
font-weight: 950;
}
.summary p {
color: var(--muted);
font-size: 18px;
line-height: 1.45;
}
.mini-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
margin-top: 20px;
}
.mini {
min-height: 78px;
padding: 14px;
border: 1px solid var(--line);
border-radius: 7px;
background: #f7f4ed;
}
.mini strong {
display: block;
font-size: 26px;
line-height: 1;
}
.mini span {
display: block;
margin-top: 8px;
color: var(--muted);
font-size: 13px;
font-weight: 700;
}
section {
padding: 44px 0;
border-bottom: 1px solid var(--line);
}
.section-head {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
gap: 32px;
align-items: start;
margin-bottom: 20px;
}
h2 {
margin-bottom: 0;
font-size: clamp(32px, 4vw, 48px);
line-height: 1.05;
}
.section-head p,
.item p,
.field p,
.notice {
color: var(--muted);
line-height: 1.45;
}
.form-grid,
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
.grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field,
.item {
padding: 18px;
}
label {
display: block;
margin-bottom: 8px;
font-size: 14px;
font-weight: 900;
}
input,
select,
textarea {
width: 100%;
min-height: 44px;
border: 1px solid var(--line);
border-radius: 7px;
background: #fff;
color: var(--ink);
font: inherit;
padding: 10px 12px;
}
textarea {
min-height: 340px;
line-height: 1.45;
resize: vertical;
}
.item {
min-height: 175px;
}
.item h3 {
margin-bottom: 10px;
font-size: 22px;
}
.notice {
padding: 18px 20px;
border-left: 4px solid var(--accent-2);
background: #fffdfa;
}
.status {
min-height: 24px;
margin-top: 12px;
color: var(--accent);
font-weight: 800;
}
footer {
padding: 24px 0 50px;
color: var(--muted);
font-weight: 700;
}
@media (max-width: 840px) {
header { align-items: flex-start; }
nav { justify-content: flex-start; gap: 10px 14px; }
.hero,
.section-head,
.form-grid,
.grid {
grid-template-columns: 1fr;
}
main { padding-top: 42px; }
h1 { font-size: 44px; }
.lead { font-size: 17px; }
.summary { padding: 20px; }
.mini-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<header>
<a class="brand" href="index.html">Agent Ops Command Center</a>
<nav aria-label="Primary">
<a href="index.html">Home</a>
<a href="buy.html">Buy</a>
<a href="team-purchase-packet.html">Team Packet</a>
<a href="team-procurement-email.html">Email Kit</a>
<a href="team-invoice-request.html">Invoice</a>
<a href="team-security-review.html">Security</a>
<a href="team-rollout-plan.html">Rollout</a>
<a href="team-license-terms.html">Terms</a>
<a href="team-delivery-acceptance.html">Delivery</a>
<a href="team-buyer-faq.html">FAQ</a>
<a href="team-value-calculator.html">Value</a>
<a href="team-pilot-plan.html">Pilot</a>
<a href="team-license.html">License</a>
<a href="metrics/status.json">Metrics</a>
</nav>
</header>
<main>
<div class="hero">
<div>
<div class="eyebrow">Team value proof before checkout</div>
<h1>Calculate the $203 team-license value before checkout.</h1>
<p class="lead">Estimate cleanup time avoided, repeated-failure cost avoided, payback days, and copy-ready approval language for a seven-seat AI-agent ops template purchase.</p>
<div class="actions">
<a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Request team checkout</a>
<a class="button" href="team-purchase-packet.html">Team purchase packet</a>
<a class="button" href="team-buyer-faq.html">Buyer FAQ</a>
<a class="button" href="team-approval.html">Approval brief</a>
</div>
</div>
<aside class="summary" aria-label="Team value summary">
<div class="price" id="monthlyValue">$1,221</div>
<p>Estimated monthly team value. This calculator is an approval aid, not payment proof.</p>
<div class="mini-grid">
<div class="mini">
<strong id="paybackDays">5d</strong>
<span>payback estimate</span>
</div>
<div class="mini">
<strong id="licenseCost">$203</strong>
<span>team license</span>
</div>
<div class="mini">
<strong id="seatCount">7</strong>
<span>operator seats</span>
</div>
<div class="mini">
<strong>Proof</strong>
<span>required before revenue</span>
</div>
</div>
</aside>
</div>
<section>
<div class="section-head">
<h2>Value Inputs</h2>
<p>Use conservative numbers. The result supports review; it does not create a checkout or count as revenue.</p>
</div>
<div class="form-grid">
<div class="field">
<label for="team">Buyer or team</label>
<input id="team" value="AI-agent operations team">
<p>Team, company, or project reviewing the value case.</p>
</div>
<div class="field">
<label for="reviewer">Reviewer</label>
<input id="reviewer" value="Manager or finance reviewer">
<p>Who needs the value case before payment.</p>
</div>
<div class="field">
<label for="seats">Seats</label>
<input id="seats" type="number" min="1" max="50" value="7">
<p>Seven seats at $29 equals $203 gross.</p>
</div>
<div class="field">
<label for="minutes">Cleanup minutes saved per operator each week</label>
<input id="minutes" type="number" min="0" max="600" value="45">
<p>Time saved by cleaner run logs, prompts, verification, and handoff.</p>
</div>
<div class="field">
<label for="rate">Loaded hourly cost</label>
<input id="rate" type="number" min="1" max="500" value="75">
<p>Use a conservative blended team cost.</p>
</div>
<div class="field">
<label for="failures">Repeated failures avoided per month</label>
<input id="failures" type="number" min="0" max="100" value="2">
<p>Prompt regressions, bad handoffs, or missed verification loops.</p>
</div>
<div class="field">
<label for="failureCost">Cleanup cost per repeated failure</label>
<input id="failureCost" type="number" min="0" max="5000" value="275">
<p>Estimate human cleanup, reruns, and review time.</p>
</div>
<div class="field">
<label for="basis">Value basis</label>
<select id="basis">
<option selected>Conservative approval estimate</option>
<option>Finance review estimate</option>
<option>Engineering manager estimate</option>
<option>Procurement justification estimate</option>
</select>
<p>Sets wording for the generated value brief.</p>
</div>
</div>
</section>
<section>
<div class="section-head">
<h2>Generated Value Brief</h2>
<p>Paste this into an approval thread, buyer FAQ response, or order-request issue.</p>
</div>
<textarea id="brief" readonly></textarea>
<div class="actions">
<button class="button primary" type="button" id="copyBrief">Copy value brief</button>
<a class="button" href="team-approval.html">Approval brief</a>
<a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Open order request</a>
</div>
<div class="status" id="copyStatus" aria-live="polite"></div>
</section>
<section>
<div class="section-head">
<h2>What The Estimate Covers</h2>
<p>The calculator ties value to the actual operating system in the paid pack.</p>
</div>
<div class="grid">
<article class="item">
<h3>Run Cleanup</h3>
<p>Less time reconstructing prompts, changed files, verification commands, and handoff notes.</p>
</article>
<article class="item">
<h3>Failure Prevention</h3>
<p>Lower repeated cleanup from prompt regressions, missed acceptance gates, and bad scope control.</p>
</article>
<article class="item">
<h3>Review Speed</h3>
<p>Faster manager, security, finance, and delivery review because proof language is already structured.</p>
</article>
</div>
</section>
<section>
<div class="section-head">
<h2>Review Links</h2>
<p>Public proof surfaces for the buyer and reviewer.</p>
</div>
<div class="grid">
<article class="item">
<h3>Team Buyer FAQ</h3>
<p>Answers price, checkout, receipt, security, delivery, support, and revenue-proof questions.</p>
<div class="actions"><a class="button" href="team-buyer-faq.html">Open</a></div>
</article>
<article class="item">
<h3>Team Approval Brief</h3>
<p>Manager-ready approval text with quote, value, risk, and payment-proof gates.</p>
<div class="actions"><a class="button" href="team-approval.html">Open</a></div>
</article>
<article class="item">
<h3>Team Purchase Packet</h3>
<p>One route through proof, quote, approval, invoice, security, rollout, terms, delivery, FAQ, and checkout request.</p>
<div class="actions"><a class="button" href="team-purchase-packet.html">Open</a></div>
</article>
</div>
</section>
<section>
<h2>Revenue Rule</h2>
<div class="notice">
This team value calculator does not create checkout, prove payment, publish the paid ZIP, deliver the paid archive, or count as revenue. Gross revenue is counted only from checkout, receipt, payout, or seller-dashboard evidence.
</div>
<div class="actions">
<a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Request team checkout</a>
<a class="button" href="metrics/status.json">Demand metrics</a>
<a class="button" href="team-purchase-packet.html">Team packet</a>
</div>
</section>
</main>
<footer>
Team value calculator. Private paid ZIP. Revenue only after payment proof.
</footer>
<script>
const fields = ["team", "reviewer", "seats", "minutes", "rate", "failures", "failureCost", "basis"];
const brief = document.getElementById("brief");
const status = document.getElementById("copyStatus");
const monthlyValue = document.getElementById("monthlyValue");
const paybackDays = document.getElementById("paybackDays");
const licenseCost = document.getElementById("licenseCost");
const seatDisplay = document.getElementById("seatCount");
function dollars(value) {
return `$${Math.round(value).toLocaleString("en-US")}`;
}
function value(id) {
return document.getElementById(id).value.trim();
}
function number(id, fallback) {
const parsed = Number.parseFloat(value(id));
return Number.isFinite(parsed) ? parsed : fallback;
}
function render() {
const seats = Math.max(1, number("seats", 7));
const minutes = Math.max(0, number("minutes", 45));
const rate = Math.max(1, number("rate", 75));
const failures = Math.max(0, number("failures", 2));
const failureCost = Math.max(0, number("failureCost", 275));
const cost = seats * 29;
const monthlyHoursSaved = (seats * minutes * 4.33) / 60;
const timeValue = monthlyHoursSaved * rate;
const failureValue = failures * failureCost;
const totalValue = timeValue + failureValue;
const netValue = totalValue - cost;
const days = totalValue > 0 ? Math.max(1, Math.ceil((cost / totalValue) * 30)) : 0;
const team = value("team") || "AI-agent operations team";
const reviewer = value("reviewer") || "Manager or finance reviewer";
monthlyValue.textContent = dollars(totalValue);
paybackDays.textContent = days > 0 ? `${days}d` : "n/a";
licenseCost.textContent = dollars(cost);
seatDisplay.textContent = String(Math.round(seats));
brief.value = [
"Team value brief: Agent Ops Command Center",
"",
`Buyer/team: ${team}`,
`Reviewer: ${reviewer}`,
`Value basis: ${value("basis")}`,
`Requested package: ${Math.round(seats)} seats`,
"Price per seat: $29",
`Gross quote amount: ${dollars(cost)}`,
`Cleanup minutes saved per operator per week: ${minutes}`,
`Loaded hourly cost: ${dollars(rate)}`,
`Repeated failures avoided per month: ${failures}`,
`Cleanup cost per repeated failure: ${dollars(failureCost)}`,
"",
"Estimated monthly value:",
`- Time value from cleaner AI-agent operations: ${dollars(timeValue)}`,
`- Repeated-failure value avoided: ${dollars(failureValue)}`,
`- Total estimated monthly value: ${dollars(totalValue)}`,
`- Net first-month value after the team license: ${dollars(netValue)}`,
`- Estimated payback: ${days > 0 ? `${days} days` : "not available with current inputs"}`,
"",
"Why this maps to the product:",
"- Run logs reduce reconstruction time after AI-agent work.",
"- Verification ledgers reduce false-done and missing-proof review loops.",
"- Prompt and failure records reduce repeated regressions.",
"- Delivery, license, security, FAQ, and approval packets reduce purchase review friction.",
"",
"Review links:",
"- Team value calculator: https://ivelly42.github.io/agent-ops-command-center/team-value-calculator.html",
"- Team pilot plan: https://ivelly42.github.io/agent-ops-command-center/team-pilot-plan.html",
"- Team buyer FAQ: https://ivelly42.github.io/agent-ops-command-center/team-buyer-faq.html",
"- Team approval brief: https://ivelly42.github.io/agent-ops-command-center/team-approval.html",
"- Team purchase packet: https://ivelly42.github.io/agent-ops-command-center/team-purchase-packet.html",
"- Demand metrics: https://ivelly42.github.io/agent-ops-command-center/metrics/status.json",
"",
"Revenue rule: this value calculator is not revenue. Count gross revenue only from checkout, receipt, payout, or seller-dashboard evidence."
].join("\n");
}
for (const id of fields) {
const field = document.getElementById(id);
field.addEventListener("input", render);
field.addEventListener("change", render);
}
document.getElementById("copyBrief").addEventListener("click", async () => {
try {
await navigator.clipboard.writeText(brief.value);
status.textContent = "Value brief copied.";
} catch {
brief.select();
status.textContent = "Select and copy the value brief.";
}
});
render();
</script>
</body>
</html>