-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-dashboard.html
More file actions
658 lines (586 loc) · 22.2 KB
/
Copy pathsample-dashboard.html
File metadata and controls
658 lines (586 loc) · 22.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
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sample Dashboard | Agent Ops Command Center</title>
<meta name="description" content="Live browser sample dashboard for the public CSV data in Agent Ops Command Center: run log, cost tracker, agents, prompts, verification, and failure modes.">
<meta property="og:title" content="Agent Ops Command Center Sample Dashboard">
<meta property="og:description" content="Inspect the public sample data before requesting the $29 AI coding-agent operations template pack.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://ivelly42.github.io/agent-ops-command-center/sample-dashboard.html">
<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": "Dataset",
"name": "Agent Ops Command Center Sample Dashboard",
"description": "Public sample CSV dashboard for AI coding-agent run logs, costs, agents, prompts, verification checks, and failure modes.",
"url": "https://ivelly42.github.io/agent-ops-command-center/sample-dashboard.html",
"isPartOf": {
"@type": "Product",
"name": "Agent Ops Command Center",
"offers": {
"@type": "Offer",
"price": "29",
"priceCurrency": "USD",
"availability": "https://schema.org/PreOrder",
"url": "https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml"
}
}
}
</script>
<style>
:root {
color-scheme: light;
--ink: #151515;
--muted: #5f5a52;
--line: #d8d3ca;
--paper: #fbfaf7;
--panel: #ffffff;
--accent: #0f766e;
--gold: #b45309;
--blue: #1d4ed8;
--soft: #f7f5f0;
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--ink);
background: var(--paper);
}
header, main, footer {
width: min(1180px, calc(100% - 40px));
margin: 0 auto;
}
header {
min-height: 72px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--line);
}
.brand {
font-weight: 800;
}
nav {
display: flex;
flex-wrap: wrap;
gap: 16px;
font-size: 14px;
}
a {
color: inherit;
text-decoration: none;
}
.hero {
padding: 64px 0 42px;
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
gap: 48px;
align-items: end;
}
.eyebrow {
color: var(--accent);
font-size: 14px;
font-weight: 800;
margin-bottom: 14px;
}
h1 {
font-size: clamp(42px, 7vw, 76px);
line-height: 0.98;
margin: 0 0 20px;
letter-spacing: 0;
}
.lead {
color: var(--muted);
font-size: 20px;
line-height: 1.5;
margin: 0;
max-width: 760px;
}
.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: 800;
}
.button.primary {
background: var(--ink);
color: #fff;
}
.summary-card {
background: var(--panel);
border: 1px solid var(--line);
border-radius: 8px;
padding: 24px;
box-shadow: 0 24px 80px rgba(21, 21, 21, 0.12);
}
.summary-card strong {
display: block;
font-size: 42px;
line-height: 1;
margin-bottom: 8px;
}
.summary-card span {
display: block;
color: var(--muted);
line-height: 1.45;
}
section {
padding: 34px 0;
border-top: 1px solid var(--line);
}
.section-head {
display: flex;
justify-content: space-between;
gap: 24px;
align-items: end;
margin-bottom: 18px;
}
h2 {
font-size: clamp(28px, 4vw, 46px);
margin: 0;
letter-spacing: 0;
}
.section-head p {
color: var(--muted);
line-height: 1.5;
max-width: 540px;
margin: 0;
}
.metrics {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 14px;
}
.metric {
border: 1px solid var(--line);
background: var(--panel);
border-radius: 8px;
padding: 18px;
min-height: 128px;
}
.metric strong {
display: block;
font-size: 34px;
line-height: 1;
margin-bottom: 10px;
}
.metric span {
color: var(--muted);
line-height: 1.45;
}
.board {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.panel {
border: 1px solid var(--line);
background: var(--panel);
border-radius: 8px;
overflow: hidden;
}
.panel-head {
display: flex;
justify-content: space-between;
gap: 16px;
align-items: center;
padding: 16px 18px;
background: var(--soft);
border-bottom: 1px solid var(--line);
}
.panel-head h3 {
margin: 0;
font-size: 19px;
}
.panel-head a {
color: var(--accent);
font-weight: 800;
font-size: 13px;
}
.table-wrap {
overflow-x: auto;
}
table {
width: 100%;
table-layout: fixed;
border-collapse: collapse;
}
th, td {
border-bottom: 1px solid var(--line);
padding: 12px 14px;
text-align: left;
vertical-align: top;
overflow-wrap: anywhere;
}
th {
font-size: 13px;
background: #fffdf9;
}
td {
color: var(--muted);
line-height: 1.4;
}
.status {
display: inline-flex;
align-items: center;
min-height: 26px;
border-radius: 999px;
border: 1px solid var(--line);
padding: 0 9px;
font-size: 13px;
font-weight: 800;
color: var(--accent);
}
.notice {
border-left: 4px solid var(--gold);
background: var(--panel);
color: var(--muted);
padding: 18px 20px;
line-height: 1.55;
}
footer {
color: var(--muted);
padding: 36px 0 48px;
}
@media (max-width: 900px) {
header {
align-items: flex-start;
flex-direction: column;
gap: 14px;
padding: 18px 0;
}
.hero, .board {
grid-template-columns: 1fr;
}
.hero {
padding-top: 44px;
}
.section-head {
display: block;
}
.section-head p {
margin-top: 10px;
}
.metrics {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 560px) {
.metrics {
grid-template-columns: 1fr;
}
table, thead, tbody, tr, th, td {
display: block;
}
thead {
display: none;
}
tr {
border-bottom: 1px solid var(--line);
padding: 10px 0;
}
td {
border-bottom: 0;
display: grid;
grid-template-columns: 112px minmax(0, 1fr);
gap: 12px;
padding: 8px 14px;
}
td::before {
content: attr(data-label);
color: var(--ink);
font-weight: 800;
font-size: 13px;
}
}
</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="workflow-picker.html">Picker</a>
<a href="notion-import-builder.html">Import</a>
<a href="ops-maturity-check.html">Maturity</a>
<a href="cost-leak-audit.html">Cost</a>
<a href="buyer-decision-matrix.html">Decision</a>
<a href="purchase-approval-brief.html">Approval</a>
<a href="buyer-intake.html">Intake</a>
<a href="run-log-builder.html">Builder</a>
<a href="sample-dashboard.html">Sample</a>
<a href="template-gallery.html">Gallery</a>
<a href="roi-calculator.html">ROI</a>
<a href="pricing.html">Pricing</a>
<a href="checkout-readiness.html">Checkout</a>
<a href="order-intent.html">Intent</a>
<a href="metrics/status.json">Metrics</a>
</nav>
</header>
<main>
<div class="hero">
<div>
<div class="eyebrow">Live public sample data</div>
<h1>Inspect the operating system before requesting access.</h1>
<p class="lead">This page loads the public CSV samples for the run log, cost tracker, agent registry, prompt library, verification ledger, and failure modes. It is preview data only; the paid ZIP remains private.</p>
<div class="actions">
<a class="button primary" href="order-intent.html">Prepare order intent</a>
<a class="button" href="ops-maturity-check.html">Maturity check</a>
<a class="button" href="run-log-builder.html">Run log builder</a>
<a class="button" href="pricing.html">Pricing</a>
<a class="button" href="roi-calculator.html">ROI calculator</a>
<a class="button" href="https://github.com/ivelly42/agent-ops-command-center/releases/tag/v5.42-preview">Preview release</a>
</div>
</div>
<aside class="summary-card" aria-label="Sample dashboard summary">
<strong id="sampleStatus">6</strong>
<span>Public CSV tables rendered into one browser dashboard.</span>
</aside>
</div>
<section>
<div class="section-head">
<h2>Sample Signals</h2>
<p>Fast buyer proof from public preview rows. Revenue is still counted only from checkout, receipt, payout, or seller-dashboard evidence.</p>
</div>
<div class="metrics" aria-label="Sample metrics">
<div class="metric">
<strong id="runCount">-</strong>
<span>Sample runs logged</span>
</div>
<div class="metric">
<strong id="passCount">-</strong>
<span>Runs with pass evidence</span>
</div>
<div class="metric">
<strong id="minutesSaved">-</strong>
<span>Human minutes saved in sample</span>
</div>
<div class="metric">
<strong id="directCost">-</strong>
<span>Direct sample cost</span>
</div>
<div class="metric">
<strong id="activeAgents">-</strong>
<span>Active agent roles</span>
</div>
<div class="metric">
<strong id="verificationChecks">-</strong>
<span>Verification checks</span>
</div>
<div class="metric">
<strong id="highFailures">-</strong>
<span>High-severity failure modes</span>
</div>
<div class="metric">
<strong id="promptScore">-</strong>
<span>Average prompt eval score</span>
</div>
</div>
</section>
<section>
<div class="section-head">
<h2>Sample Tables</h2>
<p>Each table links to the source CSV so a buyer can inspect the import shape before asking for the full pack.</p>
</div>
<div class="board" id="tables"></div>
</section>
<section>
<h2>What This Proves</h2>
<div class="notice">
This dashboard proves the public sample data shape and buyer workflow. It does not publish the paid ZIP, create a checkout, prove payment, or count as revenue.
</div>
<div class="actions">
<a class="button primary" href="https://github.com/ivelly42/agent-ops-command-center/issues/new?template=payment-ready.yml">Open order request</a>
<a class="button" href="ops-maturity-check.html">Maturity check</a>
<a class="button" href="run-log-builder.html">Run log builder</a>
<a class="button" href="template-gallery.html">Template gallery</a>
<a class="button" href="catalog.json">Catalog JSON</a>
<a class="button" href="metrics/status.json">Demand metrics</a>
</div>
</section>
</main>
<footer>
Public sample dashboard. Private paid ZIP. Revenue only after payment proof.
</footer>
<script>
const sources = [
{
title: "Run Log",
url: "sample/run_log_sample.csv",
fallback: `Date,Project,Objective,Agent,Inputs,Output Link,Files Changed,Verification,Result,Follow-up,Cost,Time Saved
2026-05-21,Example App,Fix checkout error,Codex Implementation Agent,Issue link and failing test,PR or local diff,src/checkout.ts,npm test -- checkout,Pass,Add regression note,$0.00,45m
2026-05-21,Example Site,Check mobile landing page,Browser QA Agent,Pages URL,Screenshot folder,None,Mobile screenshot pass,Pass,Publish screenshot,$0.00,20m`
},
{
title: "Cost Tracker",
url: "sample/cost_tracker_sample.csv",
fallback: `Date,Agent,Model,Task,Estimated Tokens,Direct Cost,Human Minutes Saved,ROI Notes
2026-05-21,Codex Implementation Agent,GPT-5.5,Small bug fix,25000,$0.00,45,Good ROI if verified
2026-05-21,Release Reviewer,Strong reasoning model,Pre-ship review,18000,$0.00,30,Good ROI if it catches one blocker
2026-05-21,Browser QA Agent,Fast browser agent,Responsive smoke test,8000,$0.00,20,Repeat for UI-heavy changes`
},
{
title: "Agent Registry",
url: "sample/agent_registry_sample.csv",
fallback: `Agent,Type,Best For,Avoid For,Default Model,Tools,Prompt Contract,Verification Needed,Owner,Status
Codex Implementation Agent,Coding,Small complete repo changes,Unbounded product strategy,GPT-5.5,Shell and file tools,Objective plus allowed scope plus stop conditions,Tests or build logs,Operator,Active
Browser QA Agent,QA,Frontend smoke testing and screenshots,Backend-only bugs,Fast browser agent,Browser and screenshot tools,URL plus flows plus expected states,Screenshot and pass/fail notes,Operator,Optional
Release Reviewer,Review,Pre-ship risk and missing checks,Feature ideation,Strong reasoning model,Git diff and test logs,Diff plus release criteria,Blocking findings list,Operator,Active`
},
{
title: "Prompt Library",
url: "sample/prompt_library_sample.csv",
fallback: `Prompt Name,Use Case,Current Version,Prompt Text,Last Changed,Change Reason,Known Failure,Eval Score
Implementation Brief,Coding,v1,"Objective; Done When; Allowed Scope; Stop Conditions; Verification.",2026-05-21,Initial version,Too broad if scope omitted,4
Review Brief,Code review,v1,"Find bugs first. Use file and line references. Keep summary short.",2026-05-21,Initial version,Can over-index on style,4
Release Gate,Shipping,v1,"List release criteria; map each to evidence; mark missing evidence as not done.",2026-05-21,Initial version,Can become checklist theater without real commands,5`
},
{
title: "Verification Ledger",
url: "sample/verification_ledger_sample.csv",
fallback: `Check,Command or Evidence,When Required,Pass Signal,Fail Signal,Owner
Build,npm run build,Release candidate,Build complete,Build failed,Operator
Pages smoke,curl -fsSL URL | rg "expected text",Static site changed,HTTP 200 plus expected text,404 or missing text,Operator
Release asset check,gh release view TAG --json assets,Release published,Expected asset uploaded,Asset missing or wrong file,Operator`
},
{
title: "Failure Modes",
url: "sample/failure_modes_sample.csv",
fallback: `Failure,Symptom,Root Cause,Detection,Fix,Prevention Rule,Severity,Last Seen
False completion,Agent says done without evidence,Verification was optional,No command output,Run exact check,No done without pass signal,High,2026-05-21
Scope drift,Unrelated files changed,Allowed scope absent,Diff includes unrelated paths,Revert only own unrelated edits,Write allowed files before edits,Medium,2026-05-21
Credential risk,Agent tries account or payment action,Stop condition missing,Login or payout screen appears,Pause and ask,Credentials and payments are hard stops,High,2026-05-21
Weak launch path,Product exists but no checkout,Sales channel not authenticated,Checkout URL missing,Create lead path and stop at payment setup,No revenue claim without dashboard proof,High,2026-05-21`
}
];
function parseCsv(text) {
const rows = [];
let row = [];
let value = "";
let inQuotes = false;
for (let index = 0; index < text.length; index += 1) {
const char = text[index];
const next = text[index + 1];
if (char === '"' && inQuotes && next === '"') {
value += '"';
index += 1;
} else if (char === '"') {
inQuotes = !inQuotes;
} else if (char === "," && !inQuotes) {
row.push(value);
value = "";
} else if ((char === "\n" || char === "\r") && !inQuotes) {
if (char === "\r" && next === "\n") index += 1;
row.push(value);
if (row.some((cell) => cell.trim() !== "")) rows.push(row);
row = [];
value = "";
} else {
value += char;
}
}
if (value || row.length) {
row.push(value);
rows.push(row);
}
const [headers, ...body] = rows;
return body.map((cells) => Object.fromEntries(headers.map((header, index) => [header, cells[index] || ""])));
}
function escapeHtml(value) {
return String(value).replace(/[&<>"']/g, (char) => ({
"&": "&",
"<": "<",
">": ">",
'"': """,
"'": "'"
})[char]);
}
function money(value) {
return `$${Number(value || 0).toFixed(2)}`;
}
function minutes(value) {
const match = String(value || "").match(/\d+/);
return match ? Number(match[0]) : 0;
}
async function loadSource(source) {
try {
const response = await fetch(source.url);
if (!response.ok) throw new Error(`HTTP ${response.status}`);
return parseCsv(await response.text());
} catch {
return parseCsv(source.fallback);
}
}
function renderTable(source, rows) {
const headers = Object.keys(rows[0] || {});
const visibleRows = rows.slice(0, 4);
return `
<article class="panel">
<div class="panel-head">
<h3>${escapeHtml(source.title)}</h3>
<a href="${escapeHtml(source.url)}">CSV source</a>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>${headers.slice(0, 4).map((header) => `<th>${escapeHtml(header)}</th>`).join("")}</tr>
</thead>
<tbody>
${visibleRows.map((row) => `
<tr>
${headers.slice(0, 4).map((header) => {
const value = row[header] || "";
const isStatus = ["Pass", "Active", "High"].includes(value);
return `<td data-label="${escapeHtml(header)}">${isStatus ? `<span class="status">${escapeHtml(value)}</span>` : escapeHtml(value)}</td>`;
}).join("")}
</tr>
`).join("")}
</tbody>
</table>
</div>
</article>
`;
}
async function render() {
const entries = await Promise.all(sources.map(async (source) => [source, await loadSource(source)]));
const data = Object.fromEntries(entries.map(([source, rows]) => [source.title, rows]));
const runRows = data["Run Log"];
const costRows = data["Cost Tracker"];
const agentRows = data["Agent Registry"];
const promptRows = data["Prompt Library"];
const verificationRows = data["Verification Ledger"];
const failureRows = data["Failure Modes"];
const saved = runRows.reduce((sum, row) => sum + minutes(row["Time Saved"]), 0);
const cost = costRows.reduce((sum, row) => sum + Number(String(row["Direct Cost"]).replace(/[^0-9.]/g, "") || 0), 0);
const promptAverage = promptRows.reduce((sum, row) => sum + Number(row["Eval Score"] || 0), 0) / promptRows.length;
document.getElementById("runCount").textContent = runRows.length;
document.getElementById("passCount").textContent = runRows.filter((row) => row.Result === "Pass").length;
document.getElementById("minutesSaved").textContent = `${saved}m`;
document.getElementById("directCost").textContent = money(cost);
document.getElementById("activeAgents").textContent = agentRows.filter((row) => row.Status === "Active").length;
document.getElementById("verificationChecks").textContent = verificationRows.length;
document.getElementById("highFailures").textContent = failureRows.filter((row) => row.Severity === "High").length;
document.getElementById("promptScore").textContent = promptAverage.toFixed(1);
document.getElementById("tables").innerHTML = entries.map(([source, rows]) => renderTable(source, rows)).join("");
}
render();
</script>
</body>
</html>