-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam-delivery-acceptance.html
More file actions
585 lines (530 loc) · 20.2 KB
/
Copy pathteam-delivery-acceptance.html
File metadata and controls
585 lines (530 loc) · 20.2 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AI Agent Team Delivery Acceptance Packet | Agent Ops Command Center</title>
<meta name="description" content="Prepare delivery proof, archive digest, import target, acceptance gate, and acknowledgement language for the $203 Agent Ops Command Center team license before checkout exists.">
<meta property="og:title" content="AI Agent Team Delivery Acceptance Packet">
<meta property="og:description" content="Copy-ready delivery acceptance packet for a seven-seat AI-agent ops template purchase.">
<meta property="og:url" content="https://ivelly42.github.io/agent-ops-command-center/team-delivery-acceptance.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 Delivery Acceptance Packet",
"description": "Delivery acceptance packet for the Agent Ops Command Center seven-seat team-license request.",
"url": "https://ivelly42.github.io/agent-ops-command-center/team-delivery-acceptance.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: 710px;
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: 170px;
}
.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">Delivery-ready team request</div>
<h1>Confirm delivery acceptance before the $203 team checkout.</h1>
<p class="lead">Generate copy-ready delivery proof, archive digest, import target, acceptance gate, and acknowledgement language before a team buyer requests payment.</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-license-terms.html">License terms</a>
<a class="button" href="paid-delivery-manifest.md">Delivery manifest</a>
</div>
</div>
<aside class="summary" aria-label="Delivery acceptance summary">
<div class="price" id="total">$203</div>
<p>This packet does not deliver the paid ZIP. It makes the acceptance gate clear before checkout exists.</p>
<div class="mini-grid">
<div class="mini">
<strong id="seatCount">7</strong>
<span>operator seats</span>
</div>
<div class="mini">
<strong>$29</strong>
<span>per seat</span>
</div>
<div class="mini">
<strong>Digest</strong>
<span>archive proof</span>
</div>
<div class="mini">
<strong>Proof</strong>
<span>required before revenue</span>
</div>
</div>
</aside>
</div>
<section>
<div class="section-head">
<h2>Acceptance Inputs</h2>
<p>Make post-payment delivery review explicit while keeping the paid ZIP private until real payment proof exists.</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 that will receive the paid ZIP.</p>
</div>
<div class="field">
<label for="reviewer">Delivery reviewer</label>
<input id="reviewer" value="Operations owner or procurement reviewer">
<p>Who confirms the archive after 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="delivery">Delivery method</label>
<select id="delivery">
<option selected>Private ZIP link after checkout or receipt proof</option>
<option>Private GitHub release asset after payment proof</option>
<option>Direct archive handoff after seller-dashboard evidence</option>
<option>Buyer-approved delivery channel after invoice payment</option>
</select>
<p>Defines where the paid archive should arrive.</p>
</div>
<div class="field">
<label for="archive">Archive proof</label>
<select id="archive">
<option selected>ZIP filename, SHA256 digest, and archive test recorded</option>
<option>ZIP digest and file list recorded before delivery</option>
<option>Delivery manifest completed with checkout evidence</option>
<option>Buyer records receipt, digest, and import result</option>
</select>
<p>Prevents unclear delivery or mismatched files.</p>
</div>
<div class="field">
<label for="target">Import target</label>
<select id="target">
<option selected>Notion workspace plus spreadsheet fallback</option>
<option>Spreadsheet-first workspace</option>
<option>Team Notion workspace</option>
<option>Local docs and CSV import</option>
</select>
<p>States where the buyer expects to use the pack.</p>
</div>
<div class="field">
<label for="gate">Acceptance gate</label>
<select id="gate">
<option selected>Buyer can open the ZIP and see README, quickstart, CSVs, and templates</option>
<option>Buyer can import one run log and one verification ledger sample</option>
<option>Buyer can confirm archive digest and paid delivery manifest</option>
<option>Buyer can route first team workflow through the rollout plan</option>
</select>
<p>Turns delivery into a concrete pass/fail check.</p>
</div>
<div class="field">
<label for="ack">Acknowledgement</label>
<select id="ack">
<option selected>Buyer acknowledgement requested after paid delivery</option>
<option>Delivery complete only after buyer confirms archive receipt</option>
<option>Support starts only after receipt and delivery proof exist</option>
<option>Revenue counted only from payment evidence, not acknowledgement alone</option>
</select>
<p>Separates delivery acceptance from revenue proof.</p>
</div>
</div>
</section>
<section>
<div class="section-head">
<h2>Generated Acceptance Packet</h2>
<p>Paste into an approval thread, procurement note, or GitHub order request.</p>
</div>
<textarea id="acceptance" readonly></textarea>
<div class="actions">
<button class="button primary" type="button" id="copyAcceptance">Copy acceptance packet</button>
<a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Open order request</a>
<a class="button" href="team-purchase-packet.html">Team packet</a>
</div>
<div class="status" id="copyStatus" aria-live="polite"></div>
</section>
<section>
<div class="section-head">
<h2>Review Links</h2>
<p>Public pages a buyer can inspect before payment exists.</p>
</div>
<div class="grid">
<article class="item">
<h3>Delivery Manifest</h3>
<p>Public checklist for filename, digest, archive test, delivery method, timestamp, and buyer acknowledgement.</p>
<div class="actions"><a class="button" href="paid-delivery-manifest.md">Open</a></div>
</article>
<article class="item">
<h3>License Terms</h3>
<p>Commercial-use, sharing, support, refund, update, and delivery-boundary expectations before checkout.</p>
<div class="actions"><a class="button" href="team-license-terms.html">Open</a></div>
</article>
<article class="item">
<h3>Team Rollout Plan</h3>
<p>Adoption, first-run logging, verification gates, and weekly review after delivery.</p>
<div class="actions"><a class="button" href="team-rollout-plan.html">Open</a></div>
</article>
</div>
</section>
<section>
<h2>Revenue Rule</h2>
<div class="notice">
This delivery acceptance packet 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 delivery acceptance packet. Private paid ZIP. Revenue only after payment proof.
</footer>
<script>
const fields = ["team", "reviewer", "seats", "delivery", "archive", "target", "gate", "ack"];
const acceptance = document.getElementById("acceptance");
const status = document.getElementById("copyStatus");
const totalDisplay = document.getElementById("total");
const seatDisplay = document.getElementById("seatCount");
function dollars(value) {
return `$${value.toLocaleString("en-US")}`;
}
function value(id) {
return document.getElementById(id).value.trim();
}
function seatCount() {
return Math.max(1, Number.parseInt(value("seats"), 10) || 7);
}
function render() {
const seats = seatCount();
const total = seats * 29;
totalDisplay.textContent = dollars(total);
seatDisplay.textContent = String(seats);
const team = value("team") || "AI-agent operations team";
const reviewer = value("reviewer") || "Operations owner or procurement reviewer";
acceptance.value = [
"Team delivery acceptance packet: Agent Ops Command Center",
"",
`Buyer/team: ${team}`,
`Delivery reviewer: ${reviewer}`,
`Requested package: ${seats} seats`,
"Price per seat: $29",
`Gross quote amount: ${dollars(total)}`,
`Delivery method: ${value("delivery")}`,
`Archive proof: ${value("archive")}`,
`Import target: ${value("target")}`,
`Acceptance gate: ${value("gate")}`,
`Acknowledgement: ${value("ack")}`,
"",
"Delivery acceptance boundaries:",
"- Public preview assets can be inspected before payment.",
"- The private paid ZIP should be delivered only after checkout, receipt, payout, or seller-dashboard proof exists.",
"- Delivery proof should include ZIP filename, SHA256 digest, archive test result, delivery method, and timestamp.",
"- Buyer acceptance should confirm receipt of the archive and the ability to inspect the paid files.",
"- Buyer acknowledgement alone is not revenue; payment evidence is still required.",
"",
"Expected paid archive checks:",
"- README and quickstart are present.",
"- Import guide is present.",
"- Starter CSV databases are present.",
"- Operating templates are present.",
"- Paid delivery manifest can record digest, receipt, and acknowledgement.",
"",
"Review links:",
"- Delivery acceptance packet: https://ivelly42.github.io/agent-ops-command-center/team-delivery-acceptance.html",
"- Delivery manifest: https://ivelly42.github.io/agent-ops-command-center/paid-delivery-manifest.md",
"- Team purchase packet: https://ivelly42.github.io/agent-ops-command-center/team-purchase-packet.html",
"- Team license terms packet: https://ivelly42.github.io/agent-ops-command-center/team-license-terms.html",
"- Team rollout plan: https://ivelly42.github.io/agent-ops-command-center/team-rollout-plan.html",
"- Demand metrics: https://ivelly42.github.io/agent-ops-command-center/metrics/status.json",
"",
"Revenue rule: this delivery acceptance packet 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("copyAcceptance").addEventListener("click", async () => {
try {
await navigator.clipboard.writeText(acceptance.value);
status.textContent = "Acceptance packet copied.";
} catch {
acceptance.select();
status.textContent = "Select and copy the acceptance packet.";
}
});
render();
</script>
</body>
</html>