-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiscovery.html
More file actions
567 lines (531 loc) · 31.9 KB
/
Copy pathdiscovery.html
File metadata and controls
567 lines (531 loc) · 31.9 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Agent Ops Discovery Hub</title>
<meta name="description" content="Discovery hub for Agent Ops Command Center mirrors, public previews, and the $203 team license request path.">
<meta property="og:title" content="Agent Ops Discovery Hub">
<meta property="og:description" content="Find AI-agent run log, verification ledger, workflow comparison, model routing, prompt regression, acceptance test, procurement, security, ROI, cost, and client delivery previews.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://ivelly42.github.io/agent-ops-command-center/discovery.html">
<meta property="og:image" content="https://ivelly42.github.io/agent-ops-command-center/og.png">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Agent Ops Command Center Team License",
"description": "AI-agent run log, verification ledger, workflow comparison, model routing, prompt regression, acceptance test, procurement, security review, ROI, cost tracker, and client delivery template pack.",
"url": "https://ivelly42.github.io/agent-ops-command-center/discovery.html",
"image": "https://ivelly42.github.io/agent-ops-command-center/og.png",
"offers": {
"@type": "Offer",
"name": "Team license - 7 seats",
"price": "203",
"priceCurrency": "USD",
"availability": "https://schema.org/PreOrder",
"url": "https://github.com/ivelly42/agent-ops-command-center/issues/new"
}
}
</script>
<style>
:root {
color-scheme: light;
--bg: #f7f8f5;
--ink: #141414;
--muted: #5d6159;
--line: #d5dacf;
--card: #fffefa;
--accent: #0f766e;
--soft: #eef8f5;
}
* { box-sizing: border-box; }
body {
margin: 0;
overflow-x: hidden;
background: var(--bg);
color: var(--ink);
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
header,
main,
footer {
width: min(1180px, calc(100% - 36px));
margin: 0 auto;
}
header {
min-height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid var(--line);
}
a {
color: inherit;
}
.brand,
nav a,
.button {
color: inherit;
text-decoration: none;
}
.brand {
font-weight: 900;
}
nav {
display: flex;
flex-wrap: wrap;
gap: 16px;
font-size: 14px;
font-weight: 800;
}
.hero {
min-height: calc(100vh - 72px);
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
gap: 44px;
align-items: center;
padding: 54px 0;
}
.eyebrow {
margin-bottom: 16px;
color: var(--accent);
font-size: 14px;
font-weight: 900;
}
h1 {
max-width: 840px;
margin: 0 0 22px;
font-size: clamp(42px, 7vw, 76px);
line-height: 0.98;
letter-spacing: 0;
}
.lead {
max-width: 720px;
margin: 0;
color: var(--muted);
font-size: 20px;
line-height: 1.5;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 24px;
}
.button {
min-height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid var(--ink);
border-radius: 8px;
padding: 0 16px;
font-weight: 850;
text-align: center;
}
.button.primary {
background: var(--ink);
color: #fff;
}
.panel,
.item,
.notice {
border: 1px solid var(--line);
border-radius: 8px;
background: var(--card);
}
.panel {
padding: 22px;
box-shadow: 0 24px 72px rgb(0 0 0 / 0.1);
}
.preview {
width: 100%;
display: block;
border: 1px solid var(--line);
border-radius: 8px;
background: #fff;
}
.price {
margin: 18px 0 10px;
font-size: clamp(56px, 9vw, 88px);
line-height: 1;
font-weight: 950;
}
.panel p,
.item p,
.notice {
color: var(--muted);
line-height: 1.5;
}
section {
border-top: 1px solid var(--line);
padding: 42px 0;
}
h2 {
margin: 0 0 18px;
font-size: clamp(30px, 4.5vw, 48px);
}
.grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}
.item,
.notice {
padding: 22px;
}
.item h3 {
margin: 0 0 10px;
}
.tagline {
color: var(--accent);
font-size: 13px;
font-weight: 900;
}
textarea {
width: 100%;
min-height: 260px;
border: 1px solid var(--line);
border-radius: 8px;
background: #fffdfa;
color: var(--ink);
padding: 16px;
resize: vertical;
font: 14px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
footer {
border-top: 1px solid var(--line);
padding: 28px 0 40px;
color: var(--muted);
}
@media (max-width: 860px) {
header { align-items: flex-start; flex-direction: column; gap: 12px; padding: 18px 0; }
.hero { min-height: auto; grid-template-columns: 1fr; padding: 40px 0; }
.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="buy.html">Buy</a>
<a href="team-request-url.html">Team Request</a>
<a href="catalog.json">Catalog</a>
<a href="metrics/status.json">Metrics</a>
</nav>
</header>
<main>
<section class="hero">
<div>
<div class="eyebrow">Public preview index for buyer searches</div>
<h1>Find the Agent Ops preview that matches the problem.</h1>
<p class="lead">All public mirrors route back to the same $203 seven-seat team request. Revenue still counts only after checkout, receipt, payout, or seller-dashboard evidence exists.</p>
<div class="actions">
<a class="button primary" id="directRequest" href="team-request-url.html">Open $203 team request</a>
<a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=template-pack-request.yml">Fast template request</a>
<a class="button" href="buy.html">Buy page</a>
<a class="button" href="github-preview-index.md">Preview index</a>
</div>
</div>
<aside class="panel" aria-label="Team license">
<img class="preview" src="og.png" alt="Agent Ops Command Center preview image">
<div class="price">$203</div>
<p>Team license. Seven seats. One confirmed payment reaches the $200 gross target after payment proof exists.</p>
</aside>
</section>
<section>
<h2>Discovery Mirrors</h2>
<div class="grid">
<article class="item">
<div class="tagline">template pack</div>
<h3>AI Agent Ops Template Pack</h3>
<p>Broad mirror for AI-agent template pack, Notion template, spreadsheet template, and Agent Ops searches.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-ops-template-pack/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-ops-template-pack/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">GitHub template</div>
<h3>Template Repositories</h3>
<p>Thirty-two public mirrors are GitHub template repositories for preview use before a paid team request.</p>
<div class="actions"><a class="button" href="https://github.com/ivelly42/ai-agent-ops-template-pack/generate">Use template pack</a></div>
</article>
<article class="item">
<div class="tagline">GitHub-native</div>
<h3>Template Pack Discussion</h3>
<p>Public GitHub Discussion and Gist for broad AI-agent ops template-pack searches.</p>
<div class="actions"><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/discussions/5">Open discussion</a></div>
</article>
<article class="item">
<div class="tagline">workflow stack</div>
<h3>Workflow Comparison</h3>
<p>Choose between chat history, Notion, spreadsheets, PM tools, and Agent Ops.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-workflow-comparison-template/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">model choice</div>
<h3>Model Routing</h3>
<p>Pick the cheapest reliable model, tool, review path, and verification gate.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-model-routing-template/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">prompt eval</div>
<h3>Prompt Regression</h3>
<p>Catch recurring prompt failures before they become the team default.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-prompt-regression-test-template/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">done proof</div>
<h3>Acceptance Test</h3>
<p>Gate AI-agent work with objective, scope, behavior, regression, and handoff checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-acceptance-test-template/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">approval</div>
<h3>Security Review</h3>
<p>Inspect access, data, delivery, and payment-proof boundaries before a team request.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-security-review-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=security-review.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">procurement</div>
<h3>Procurement</h3>
<p>Prepare invoice, receipt, purchase approval, delivery proof, and buyer request notes.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-procurement-template/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">ROI</div>
<h3>ROI Calculator</h3>
<p>Estimate cleanup time avoided and justify the $203 team request.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-roi-calculator-template/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">cost control</div>
<h3>Cost Tracker</h3>
<p>Track model cost, retry loops, and recurring cleanup waste.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-cost-tracker-template/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">verification</div>
<h3>Verification Ledger</h3>
<p>Record exact commands, screenshots, URLs, digests, and release proof.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-verification-ledger-template/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">run log</div>
<h3>AI Coding-Agent Run Log</h3>
<p>Capture objective, files changed, verification, cost, and follow-up.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-coding-agent-run-log-template/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">runbook</div>
<h3>AI Coding-Agent Runbook</h3>
<p>Set intake, scope freeze, prompt control, verification, handoff, cost review, and incident review before team rollout.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-coding-agent-runbook-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-coding-agent-runbook-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">governance</div>
<h3>AI Agent Governance</h3>
<p>Define owners, access boundaries, prompt control, verification, cost guardrails, incident review, and procurement readiness.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-governance-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-governance-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">postmortem</div>
<h3>AI Agent Incident Postmortem</h3>
<p>Reconstruct timeline, scope drift, root cause, impact, corrective actions, handoff, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-incident-postmortem-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-incident-postmortem-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">rollout</div>
<h3>AI Agent Rollout Checklist</h3>
<p>Plan pilot scope, access readiness, verification gates, training, cost control, incident response, handoff, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-rollout-checklist-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-rollout-checklist-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">risk register</div>
<h3>AI Agent Risk Register</h3>
<p>Track risk inventory, data boundaries, mitigation, evidence, cost, incident response, handoff, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-risk-register-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-risk-register-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">access review</div>
<h3>AI Agent Access Review</h3>
<p>Audit tool permissions, repo scope, secrets, OAuth apps, least privilege, revocation, approval evidence, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-access-review-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-access-review-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">change approval</div>
<h3>AI Agent Change Approval</h3>
<p>Control change requests, scope freeze, approval matrix, risk review, verification plan, rollback, handoff, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-change-approval-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-change-approval-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">compliance evidence</div>
<h3>AI Agent Compliance Evidence</h3>
<p>Package control mapping, evidence ledger, data boundary, audit trail, vendor review, procurement, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-compliance-evidence-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-compliance-evidence-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">vendor evaluation</div>
<h3>AI Agent Vendor Evaluation</h3>
<p>Compare Codex, Claude Code, Cursor, scorecards, proof of value, security review, procurement, ROI, and buying decisions.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-vendor-evaluation-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-vendor-evaluation-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">manager approval</div>
<h3>AI Agent Manager Approval</h3>
<p>Package business case, ROI, risk/security review, pilot plan, procurement, manager decision, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-manager-approval-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-manager-approval-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">purchase justification</div>
<h3>AI Agent Purchase Justification</h3>
<p>Prepare problem statement, options, ROI justification, risk controls, budget approval, procurement, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-purchase-justification-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-purchase-justification-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">team license quote</div>
<h3>AI Agent Team License Quote</h3>
<p>Prepare a $203 seven-seat quote, license scope, invoice request, PO notes, procurement, checkout readiness, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-team-license-quote-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-team-license-quote-template/generate">Use template</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=quote-request.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">purchase order</div>
<h3>AI Agent Purchase Order</h3>
<p>Prepare a $203 PO line item, vendor billing, procurement approval, checkout readiness, delivery acceptance, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-purchase-order-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-purchase-order-template/generate">Use template</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=purchase-order.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">invoice request</div>
<h3>AI Agent Invoice Request</h3>
<p>Prepare a $203 invoice request, billing details, line item, approval evidence, checkout readiness, delivery acceptance, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-invoice-request-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-invoice-request-template/generate">Use template</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=invoice-request.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">receipt request</div>
<h3>AI Agent Receipt Request</h3>
<p>Prepare receipt, reimbursement, expense record, checkout proof, delivery proof, and revenue-proof checks.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-receipt-request-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-receipt-request-template/generate">Use template</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=invoice-request.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">expense report</div>
<h3>AI Agent Expense Report</h3>
<p>Prepare a $203 expense report, reimbursement record, receipt requirement, business purpose, checkout proof, and delivery proof.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-expense-report-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-expense-report-template/generate">Use template</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=expense-report.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">vendor onboarding</div>
<h3>AI Agent Vendor Onboarding</h3>
<p>Prepare supplier intake, vendor setup, billing contact, compliance notes, approval evidence, checkout readiness, and delivery acceptance.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-vendor-onboarding-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-vendor-onboarding-template/generate">Use template</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=vendor-onboarding.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">purchase request</div>
<h3>AI Agent Software Purchase Request</h3>
<p>Prepare a $203 software purchase request with business need, approval, procurement, quote, PO, invoice, checkout readiness, and delivery acceptance.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-software-purchase-request-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-software-purchase-request-template/generate">Use template</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/discussions/7">Discussion</a></div>
</article>
<article class="item">
<div class="tagline">budget request</div>
<h3>AI Agent Budget Request Email</h3>
<p>Prepare manager approval, reimbursement, procurement, and budget-request wording for a $203 team license.</p>
<div class="actions"><a class="button" href="team-procurement-email.html">Email kit</a><a class="button" href="purchase-approval-brief.html">Approval brief</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=budget-request.yml">Request</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/discussions/8">Discussion</a></div>
</article>
<article class="item">
<div class="tagline">audit</div>
<h3>AI Agent Audit Checklist</h3>
<p>Audit scope, evidence, behavior, prompt history, cost, risk, handoff, and revenue-proof claims before team rollout.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-audit-checklist-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-audit-checklist-template/generate">Use template</a></div>
</article>
<article class="item">
<div class="tagline">agency delivery</div>
<h3>Client Delivery Kit</h3>
<p>Package run proof, handoff, acceptance, and delivery notes for client-facing AI-agent work.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-client-delivery-kit/">Open mirror</a></div>
</article>
<article class="item">
<div class="tagline">delivery acceptance</div>
<h3>Team Delivery Acceptance</h3>
<p>Prepare paid ZIP delivery, archive digest, handoff, import target, acceptance gate, and procurement proof.</p>
<div class="actions"><a class="button" href="team-delivery-acceptance.html">Open packet</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=delivery-acceptance.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">order automation</div>
<h3>Order Autoreply Workflow</h3>
<p>Automatically replies to order-intent issues with the $203 team-license path, payment-proof rules, paid-ZIP boundary, and public-issue safety notes.</p>
<div class="actions"><a class="button" href="order-autoreply.md">Open docs</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/blob/main/.github/workflows/order-autoreply.yml">Workflow</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/discussions/10">Discussion</a><a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">npm preview</div>
<h3>NPM GitHub Install Preview</h3>
<p>Install the public preview CLI directly from GitHub to print payment-ready request links, catalog links, and revenue-proof rules without publishing the paid ZIP.</p>
<div class="actions"><a class="button" href="npm-preview.md">Open docs</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/blob/main/package.json">Package file</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/discussions/10">Discussion</a><a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">checkout discussion</div>
<h3>Payment-Ready NPM Autoreply Discussion</h3>
<p>GitHub-native discussion for teams evaluating the npm preview, order-intent autoreply, checkout status, and $203 team-license request path.</p>
<div class="actions"><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/discussions/10">Open discussion</a><a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">topic search</div>
<h3>GitHub Topic Discovery</h3>
<p>Thirty-three public repositories now carry buyer-intent topics for payment-ready, checkout-readiness, AI-agent template, and revenue-proof searches.</p>
<div class="actions"><a class="button" href="https://github.com/topics/payment-ready">Payment-ready topic</a><a class="button" href="https://github.com/topics/ai-agent-template">AI-agent template topic</a></div>
</article>
<article class="item">
<div class="tagline">payment-ready mirror</div>
<h3>AI Agent Payment-Ready Mirror</h3>
<p>Capture checkout method, invoice, purchase-order, reimbursement, receipt, delivery-proof, and seller-dashboard evidence requirements for buyers ready to pay.</p>
<div class="actions"><a class="button" href="https://ivelly42.github.io/ai-agent-payment-ready-template/">Open mirror</a><a class="button" href="https://github.com/ivelly42/ai-agent-payment-ready-template/generate">Use template</a><a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Request</a></div>
</article>
<article class="item">
<div class="tagline">direct request</div>
<h3>Primary Team Request</h3>
<p>Open a prefilled $203 seven-seat request in the main repository.</p>
<div class="actions"><a class="button primary" href="team-request-url.html">Open $203 team request</a><a class="button" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Payment-ready form</a></div>
</article>
<article class="item">
<div class="tagline">short issue form</div>
<h3>Fast Template Pack Request</h3>
<p>Short GitHub issue form for template-pack buyers who already know they want the team license.</p>
<div class="actions"><a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=template-pack-request.yml">Open template request</a></div>
</article>
<article class="item">
<div class="tagline">request page</div>
<h3>Template Pack Request Page</h3>
<p>Short landing page for buyers ready to request the $203 AI-agent ops template pack.</p>
<div class="actions"><a class="button primary" href="template-pack-request.html">Open request page</a></div>
</article>
</div>
</section>
<section>
<h2>Request Packet</h2>
<p class="notice">A request is not revenue. Count revenue only after checkout, receipt, payout, or seller-dashboard evidence tied to the paid template pack.</p>
<textarea id="packet" readonly>Invoice request packet: Agent Ops Command Center
Request package: Team license - 7 seats - $203 gross
Need: AI-agent run log, verification ledger, workflow comparison, model routing, prompt regression, acceptance test, procurement, security review, ROI, cost tracking, and client delivery templates.
Proof rule: Count revenue only after checkout, receipt, payout, or seller-dashboard evidence.
Discovery hub: https://ivelly42.github.io/agent-ops-command-center/discovery.html
Primary team request: https://ivelly42.github.io/agent-ops-command-center/team-request-url.html
Buy page: https://ivelly42.github.io/agent-ops-command-center/buy.html</textarea>
<div class="actions">
<a class="button primary" id="directRequestBottom" href="team-request-url.html">Open $203 team request</a>
<a class="button" href="team-invoice-request.html">Invoice packet</a>
</div>
</section>
</main>
<footer>
Public discovery hub. Paid ZIP is delivered only after checkout, receipt, payout, or seller-dashboard proof.
</footer>
<script>
const packet = document.getElementById("packet").value;
const params = new URLSearchParams({
title: "Team license request - Agent Ops discovery hub",
body: packet
});
const issueUrl = `https://github.com/ivelly42/agent-ops-command-center/issues/new?${params.toString()}`;
document.getElementById("directRequest").href = issueUrl;
document.getElementById("directRequestBottom").href = issueUrl;
</script>
</body>
</html>