-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
630 lines (595 loc) · 29.7 KB
/
Copy pathindex.html
File metadata and controls
630 lines (595 loc) · 29.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PR Pilot — Autonomous Code Review</title>
<meta name="description" content="Five AI agents handle your entire PR review pipeline. No humans in the loop.">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;500;600&family=Source+Code+Pro:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--purple: #533afd;
--purple-hover: #4434d4;
--navy: #061b31;
--slate: #64748d;
--dark-slate: #273951;
--white: #ffffff;
--border: #e5edf5;
--border-purple: #b9b9f9;
--brand-dark: #1c1e54;
--green: #15be53;
--green-text: #108c3d;
--ruby: #ea2261;
--magenta: #f96bee;
--shadow-blue: rgba(50,50,93,0.25);
--shadow-black: rgba(0,0,0,0.1);
--shadow-ambient: rgba(23,23,23,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
color: var(--slate);
background: var(--white);
-webkit-font-smoothing: antialiased;
font-size: 16px;
font-weight: 300;
line-height: 1.4;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
/* ── Nav ──────────────────────────────── */
nav {
position: sticky; top: 0; z-index: 100;
background: rgba(255,255,255,0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
}
.nav-inner {
max-width: 1080px; margin: 0 auto;
display: flex; justify-content: space-between; align-items: center;
padding: 14px 32px;
}
.logo { font-size: 18px; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; }
.logo span { color: var(--purple); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--navy); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--purple); }
.btn-nav {
background: var(--purple); color: var(--white); border: none;
padding: 8px 16px; border-radius: 4px; font-size: 14px; font-weight: 400;
cursor: pointer; text-decoration: none; transition: background 0.15s;
font-family: inherit;
}
.btn-nav:hover { background: var(--purple-hover); }
/* ── Hero ─────────────────────────────── */
.hero { padding: 100px 0 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
width: 800px; height: 600px;
background: radial-gradient(ellipse, rgba(83,58,253,0.08) 0%, transparent 70%);
pointer-events: none;
}
.hero h1 {
font-size: 52px; font-weight: 300; letter-spacing: -1.2px; line-height: 1.08;
color: var(--navy); max-width: 750px; margin: 0 auto 20px; position: relative;
}
.hero h1 span { color: var(--purple); }
.hero p {
font-size: 18px; font-weight: 300; line-height: 1.45; color: var(--slate);
max-width: 560px; margin: 0 auto 36px; position: relative;
}
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-primary {
background: var(--purple); color: var(--white); border: none;
padding: 12px 24px; border-radius: 4px; font-size: 16px; font-weight: 400;
cursor: pointer; text-decoration: none; transition: background 0.15s; font-family: inherit;
box-shadow: var(--shadow-blue) 0px 6px 12px -6px;
}
.btn-primary:hover { background: var(--purple-hover); }
.btn-ghost {
background: transparent; color: var(--purple); border: 1px solid var(--border-purple);
padding: 12px 24px; border-radius: 4px; font-size: 16px; font-weight: 400;
cursor: pointer; text-decoration: none; transition: all 0.15s; font-family: inherit;
}
.btn-ghost:hover { background: rgba(83,58,253,0.04); }
/* ── Pipeline visual ──────────────────── */
.pipeline-section { padding: 80px 0; border-top: 1px solid var(--border); }
.section-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); margin-bottom: 12px; }
.section-heading { font-size: 32px; font-weight: 300; letter-spacing: -0.64px; line-height: 1.1; color: var(--navy); margin-bottom: 48px; max-width: 600px; }
.pipeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.agent-card {
padding: 28px 20px; border: 1px solid var(--border); border-right: none; position: relative;
transition: box-shadow 0.2s;
}
.agent-card:first-child { border-radius: 8px 0 0 8px; }
.agent-card:last-child { border-radius: 0 8px 8px 0; border-right: 1px solid var(--border); }
.agent-card:hover {
box-shadow: var(--shadow-blue) 0px 20px 30px -20px, var(--shadow-black) 0px 12px 24px -12px;
z-index: 1;
}
.agent-num { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.agent-name { font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.agent-role { font-size: 13px; color: var(--slate); line-height: 1.5; font-weight: 300; }
.agent-color-1 .agent-num, .agent-color-1 .agent-name { color: var(--purple); }
.agent-color-2 .agent-num, .agent-color-2 .agent-name { color: var(--green-text); }
.agent-color-3 .agent-num, .agent-color-3 .agent-name { color: #a371f7; }
.agent-color-4 .agent-num, .agent-color-4 .agent-name { color: #d29922; }
.agent-color-5 .agent-num, .agent-color-5 .agent-name { color: var(--ruby); }
/* ── Features ─────────────────────────── */
.features { padding: 80px 0; border-top: 1px solid var(--border); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
padding: 28px; border: 1px solid var(--border); border-radius: 8px;
transition: box-shadow 0.2s;
}
.feature-card:hover {
box-shadow: var(--shadow-blue) 0px 30px 45px -30px, var(--shadow-black) 0px 18px 36px -18px;
}
.feature-icon { font-size: 24px; margin-bottom: 12px; }
.feature-card h3 { font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.02em; }
.feature-card p { font-size: 14px; color: var(--slate); line-height: 1.6; }
/* ── Review Example ───────────────────── */
.review-showcase { padding: 80px 0; background: var(--brand-dark); color: var(--white); }
.review-showcase .section-heading { color: var(--white); }
.review-box {
background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
border-radius: 8px; padding: 32px; max-width: 720px; margin: 0 auto;
font-family: 'Source Code Pro', monospace; font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.85);
}
.review-box .agent-line { margin-bottom: 2px; }
.review-box .label { color: rgba(255,255,255,0.45); }
.review-box .finding { color: var(--ruby); }
.review-box .pass { color: var(--green); }
.review-box .decision { color: #fbbf24; }
/* ── Pricing ──────────────────────────── */
.pricing { padding: 80px 0; border-top: 1px solid var(--border); text-align: center; }
.pricing .section-heading { margin: 0 auto 8px; }
.pricing-sub { font-size: 16px; color: var(--slate); margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 850px; margin: 0 auto; }
.price-card {
background: var(--white); border: 1px solid var(--border); border-radius: 8px;
padding: 36px 28px; text-align: left;
transition: box-shadow 0.2s;
}
.price-card.featured {
border-color: var(--purple);
box-shadow: var(--shadow-blue) 0px 30px 45px -30px, var(--shadow-black) 0px 18px 36px -18px;
}
.price-card .plan { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate); margin-bottom: 8px; }
.price-card .price { font-size: 40px; font-weight: 300; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 2px; }
.price-card .period { font-size: 14px; color: var(--slate); display: block; margin-bottom: 20px; }
.price-card ul { list-style: none; font-size: 14px; color: var(--slate); line-height: 2.2; margin-bottom: 28px; }
.price-card ul li::before { content: '✓ '; color: var(--green); font-weight: 600; }
.btn-price {
display: block; width: 100%; text-align: center; padding: 11px 0; border-radius: 4px;
font-size: 14px; font-weight: 400; cursor: pointer; text-decoration: none; transition: all 0.15s;
border: 1px solid var(--border-purple); color: var(--purple); background: transparent;
font-family: inherit;
}
.btn-price:hover { background: rgba(83,58,253,0.05); }
.btn-price.filled { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-price.filled:hover { background: var(--purple-hover); }
/* ── Social proof ─────────────────────── */
.social-proof { padding: 80px 0; border-top: 1px solid var(--border); text-align: center; }
.stats { display: flex; gap: 48px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .value { font-size: 48px; font-weight: 300; color: var(--navy); letter-spacing: -0.03em; }
.stat .label { font-size: 14px; color: var(--slate); margin-top: 4px; }
/* ── Footer ───────────────────────────── */
footer {
background: var(--brand-dark); color: rgba(255,255,255,0.6);
padding: 48px 0; font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.footer-grid a { color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 6px; font-weight: 300; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 13px; }
/* ── Interactive Emulator ──────────────── */
.emulator-section { padding: 40px 0 80px; border-top: 1px solid var(--border); }
.emulator-container {
display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px;
background: #0d1117; border: 1px solid var(--border); border-radius: 12px;
padding: 32px; box-shadow: var(--shadow-blue) 0px 30px 60px -15px;
max-width: 1000px; margin: 0 auto;
}
.emulator-controls { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.emulator-title { font-size: 24px; font-weight: 400; color: var(--white); letter-spacing: -0.5px; }
.emulator-sub { font-size: 14px; color: var(--slate); line-height: 1.5; }
.emulator-buttons { display: flex; flex-direction: column; gap: 10px; }
.btn-emu {
background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
color: var(--white); padding: 14px 20px; border-radius: 6px; text-align: left;
cursor: pointer; font-size: 14px; font-weight: 500; transition: all 0.15s;
font-family: inherit; display: flex; justify-content: space-between; align-items: center;
}
.btn-emu:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.btn-emu.active {
background: rgba(83,58,253,0.15); border-color: var(--purple);
box-shadow: 0 0 0 1px var(--purple);
}
.btn-emu .badge {
font-size: 11px; padding: 2px 6px; border-radius: 4px; font-weight: 600;
}
.btn-emu.active .badge-sqli { background: rgba(248,81,73,0.2); color: var(--ruby); }
.btn-emu.active .badge-perf { background: rgba(210,153,34,0.2); color: #d29922; }
.btn-emu.active .badge-style { background: rgba(88,166,255,0.2); color: var(--purple); }
.emulator-screen {
background: #090d13; border: 1px solid rgba(255,255,255,0.05);
border-radius: 8px; padding: 24px; min-height: 380px; max-height: 380px;
font-family: 'Source Code Pro', monospace; font-size: 12px; line-height: 1.6;
overflow-y: auto; color: rgba(255,255,255,0.85); display: flex; flex-direction: column;
}
.emu-line { margin-bottom: 2px; opacity: 0; transform: translateY(5px); animation: fadeInUp 0.25s forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.emu-dim { color: #484f58; }
.emu-info { color: #58a6ff; }
.emu-success { color: #3fb950; }
.emu-warn { color: #d29922; }
.emu-error { color: #f85149; }
.emu-purple { color: #a371f7; }
@media (max-width: 768px) {
.emulator-container { grid-template-columns: 1fr; padding: 20px; }
.hero h1 { font-size: 32px; letter-spacing: -0.64px; }
.pipeline { grid-template-columns: 1fr; }
.agent-card { border-right: 1px solid var(--border); border-bottom: none; border-radius: 0 !important; }
.agent-card:first-child { border-radius: 8px 8px 0 0 !important; }
.agent-card:last-child { border-radius: 0 0 8px 8px !important; border-bottom: 1px solid var(--border); }
.feature-grid, .pricing-grid { grid-template-columns: 1fr; }
.stats { flex-direction: column; gap: 24px; }
.footer-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<nav>
<div class="nav-inner">
<div class="logo">PR <span>Pilot</span></div>
<div class="nav-links">
<a href="#how">How it works</a>
<a href="#pricing">Pricing</a>
<a href="https://github.com/tcconnally/pr-pilot">GitHub</a>
<a href="#pricing" class="btn-nav">Start free trial</a>
</div>
</div>
</nav>
<!-- Hero -->
<section class="hero">
<div class="container">
<h1>Code review that <span>runs itself.</span></h1>
<p>Five AI agents autonomously review every pull request, find bugs, generate fixes, and decide what to ship. You just merge.</p>
<div class="hero-buttons">
<a href="#pricing" class="btn-primary">Start free trial</a>
<a href="https://github.com/tcconnally/pr-pilot" class="btn-ghost">View on GitHub</a>
</div>
</div>
</section>
<!-- Interactive Emulator Section -->
<section class="emulator-section">
<div class="container">
<div class="emulator-container">
<div class="emulator-controls">
<h2 class="emulator-title">Watch the agents run live</h2>
<p class="emulator-sub">Select a common vulnerability below to watch our 5-agent pipeline review, patch, test, and verify it in real-time.</p>
<div class="emulator-buttons">
<button class="btn-emu active" onclick="runDemo('sqli')">
<span>SQL Injection</span>
<span class="badge badge-sqli">Security</span>
</button>
<button class="btn-emu" onclick="runDemo('perf')">
<span>Blocking Sleep (Sync)</span>
<span class="badge badge-perf">Performance</span>
</button>
<button class="btn-emu" onclick="runDemo('style')">
<span>Nested Function Imports</span>
<span class="badge badge-style">Style</span>
</button>
</div>
</div>
<div class="emulator-screen" id="emu-screen">
<!-- Lines injected dynamically -->
</div>
</div>
</div>
</section>
<!-- Pipeline -->
<section class="pipeline-section" id="how">
<div class="container">
<div class="section-label">The Pipeline</div>
<div class="section-heading">Five agents. One PR. Zero humans.</div>
<div class="pipeline">
<div class="agent-card agent-color-1">
<div class="agent-num">Agent 1</div>
<div class="agent-name">Reviewer</div>
<div class="agent-role">Analyzes every changed file for bugs, security issues, and performance regressions.</div>
</div>
<div class="agent-card agent-color-2">
<div class="agent-num">Agent 2</div>
<div class="agent-name">Fixer</div>
<div class="agent-role">Generates minimal, correct patches for every issue found. Follows your project style.</div>
</div>
<div class="agent-card agent-color-3">
<div class="agent-num">Agent 3</div>
<div class="agent-name">Tester</div>
<div class="agent-role">Detects your test framework and writes unit tests for changed code paths.</div>
</div>
<div class="agent-card agent-color-4">
<div class="agent-num">Agent 4</div>
<div class="agent-name">Verifier</div>
<div class="agent-role">Validates every fix and test. Confirms no regressions, no broken builds.</div>
</div>
<div class="agent-card agent-color-5">
<div class="agent-num">Agent 5</div>
<div class="agent-name">Escalator</div>
<div class="agent-role">The final decision. Auto-approves safe changes. Escalates only the hard ones.</div>
</div>
</div>
</div>
</section>
<!-- Features -->
<section class="features">
<div class="container">
<div class="section-label">Why PR Pilot</div>
<div class="section-heading">Enterprise-grade quality for every team.</div>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon">🔒</div>
<h3>Security first</h3>
<p>Catches SQL injection, XSS, leaked credentials, and dependency vulnerabilities before they reach production.</p>
</div>
<div class="feature-card">
<div class="feature-icon">⚡</div>
<h3>Under 90 seconds</h3>
<p>The full 5-agent pipeline completes in ~90 seconds. Review, fix, test, verify, decide — all before you check your notifications.</p>
</div>
<div class="feature-card">
<div class="feature-icon">📋</div>
<h3>Full audit trail</h3>
<p>Every agent decision is logged with timestamp, reasoning, and confidence score. Prove compliance to auditors.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔌</div>
<h3>Zero config</h3>
<p>Add one workflow file to your repo. PR Pilot detects your language, framework, and conventions automatically.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🤖</div>
<h3>90%+ autonomous</h3>
<p>Standard reviews are fully autonomous. The Escalator only flags humans for genuinely complex or high-risk changes.</p>
</div>
<div class="feature-card">
<div class="feature-icon">💻</div>
<h3>Your stack, your rules</h3>
<p>Python, JavaScript, Go, Rust, and more. Add project-specific rules via `.pr-pilot/config.yaml`.</p>
</div>
</div>
</div>
</section>
<!-- Review Showcase -->
<section class="review-showcase">
<div class="container">
<div class="section-heading">What a review looks like</div>
<div class="review-box">
<div class="agent-line"><span class="label">chain_started</span> pr=42 repo=acme/api</div>
<div class="agent-line"> </div>
<div class="agent-line"><span class="label">[Reviewer]</span> 3 findings <span class="finding">[CRITICAL] SQL injection in delete_user</span></div>
<div class="agent-line"><span class="label">[Reviewer]</span> <span class="finding">[HIGH] Blocking sleep in get_users</span></div>
<div class="agent-line"><span class="label">[Fixer]</span> <span class="pass">3 patches generated</span> — parameterized query, async refactor</div>
<div class="agent-line"><span class="label">[Tester]</span> <span class="pass">8 unit tests written</span> — pytest, edge cases covered</div>
<div class="agent-line"><span class="label">[Verifier]</span> <span class="pass">All checks passed</span> — no regressions</div>
<div class="agent-line"><span class="label">[Escalator]</span> <span class="decision">REQUEST CHANGES</span> (94% confidence) — apply fixes, re-verify</div>
<div class="agent-line"> </div>
<div class="agent-line"><span class="label">chain_complete</span> <span class="pass">94s autonomous=true</span></div>
</div>
</div>
</section>
<!-- Social Proof -->
<section class="social-proof">
<div class="container">
<div class="section-label">Live Metrics</div>
<div class="section-heading">PR Pilot reviews its own pull requests.</div>
<div class="stats">
<div class="stat"><div class="value">5</div><div class="label">Autonomous agents</div></div>
<div class="stat"><div class="value">94s</div><div class="label">Average pipeline</div></div>
<div class="stat"><div class="value">0</div><div class="label">Humans in the loop</div></div>
</div>
</div>
</section>
<!-- Pricing -->
<section class="pricing" id="pricing">
<div class="container">
<div class="section-label">Pricing</div>
<div class="section-heading">Start free. Stay in control.</div>
<p class="pricing-sub">14-day trial. No credit card required. Cancel anytime.</p>
<div class="pricing-grid">
<div class="price-card">
<div class="plan">Starter</div>
<div class="price">$49<span class="period">/month</span></div>
<ul>
<li>Up to 3 repositories</li>
<li>500 reviews per month</li>
<li>Full 5-agent pipeline</li>
<li>GitHub integration</li>
</ul>
<button class="btn-price" onclick="checkout('starter')">Start free trial</button>
</div>
<div class="price-card featured">
<div class="plan">Team</div>
<div class="price">$99<span class="period">/month</span></div>
<ul>
<li>Up to 10 repositories</li>
<li>Unlimited reviews</li>
<li>Full 5-agent pipeline</li>
<li>Priority support</li>
</ul>
<button class="btn-price filled" onclick="checkout('team')">Start free trial</button>
</div>
<div class="price-card">
<div class="plan">Business</div>
<div class="price">$199<span class="period">/month</span></div>
<ul>
<li>Up to 25 repositories</li>
<li>Unlimited reviews</li>
<li>Full 5-agent pipeline</li>
<li>Priority support + SLA</li>
</ul>
<button class="btn-price" onclick="checkout('business')">Start free trial</button>
</div>
</div>
<p style="margin-top:20px;font-size:13px;color:var(--slate);">All plans include a 14-day free trial. No credit card required to start.</p>
</div>
</section>
<footer>
<div class="container">
<div class="footer-grid">
<div>
<h4>PR Pilot</h4>
<p style="line-height:1.8;">AI-native code quality for teams that ship. Built for the Gemini XPRIZE.</p>
</div>
<div>
<h4>Product</h4>
<a href="#how">How it works</a>
<a href="#pricing">Pricing</a>
<a href="https://github.com/tcconnally/pr-pilot">GitHub</a>
</div>
<div>
<h4>Legal</h4>
<a href="#">Privacy Policy</a>
<a href="#">Terms of Service</a>
<a href="https://github.com/tcconnally/pr-pilot/blob/main/LICENSE">MIT License</a>
</div>
</div>
<div class="footer-bottom">
© 2026 PR Pilot. Built for the Gemini XPRIZE.
</div>
</div>
</footer>
<script>
// Stripe checkout — Payment Links (no backend required)
const PAYMENT_LINKS = {
starter: 'https://buy.stripe.com/eVqaEX8oQ4fC2sX66Z7N600',
team: 'https://buy.stripe.com/7sY28r34wcM82sXbrj7N601',
business: 'https://buy.stripe.com/eVqfZhawYfYk7Nh1QJ7N602',
};
function checkout(plan) {
const url = PAYMENT_LINKS[plan];
if (url) {
window.open(url, '_blank');
}
}
// ── Interactive Web Emulator ──────────────────────────────────────────
const DEMOS = {
sqli: [
{ text: '[PR Pilot] chain_started chain_id=pr-12-sqli repo=acme/api', cls: 'emu-dim' },
{ text: '── Agent 1: REVIEWER ──', cls: 'emu-info' },
{ text: ' Analyzing diff: app.py (+4, -1)', cls: 'emu-dim' },
{ text: ' ⚠ [CRITICAL] security: SQL injection in delete_user(). Raw f-string inside query.', cls: 'emu-error' },
{ text: ' ✓ reviewer complete (elapsed=14s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 2: FIXER ──', cls: 'emu-success' },
{ text: ' Generating patch...', cls: 'emu-dim' },
{ text: ' ✓ Patch generated: Replace f-string with parameterized query.', cls: 'emu-success' },
{ text: ' ✓ fixer complete (elapsed=18s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 3: TESTER ──', cls: 'emu-purple' },
{ text: ' Detected pytest framework.', cls: 'emu-dim' },
{ text: ' Wrote 4 tests (test_delete_user, edge_cases, malicious_input).', cls: 'emu-purple' },
{ text: ' ✓ tester complete (elapsed=15s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 4: VERIFIER ──', cls: 'emu-warn' },
{ text: ' Running generated tests on patch...', cls: 'emu-dim' },
{ text: ' ✓ All 4 tests passed, zero syntax or regression issues.', cls: 'emu-success' },
{ text: ' ✓ verifier complete (elapsed=14s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 5: ESCALATOR ──', cls: 'emu-info' },
{ text: ' Decision: AUTO APPROVE (confidence 98%)', cls: 'emu-success' },
{ text: ' Reasoning: Fix is completely correct, verified, and well-covered.', cls: 'emu-dim' },
{ text: ' [review] Posted approval & fixes to PR #12.', cls: 'emu-success' },
{ text: '[PR Pilot] chain_complete decision=auto_approve duration=81s', cls: 'emu-info' }
],
perf: [
{ text: '[PR Pilot] chain_started chain_id=pr-13-perf repo=acme/api', cls: 'emu-dim' },
{ text: '── Agent 1: REVIEWER ──', cls: 'emu-info' },
{ text: ' Analyzing diff: views.py (+6, -1)', cls: 'emu-dim' },
{ text: ' ⚠ [HIGH] performance: time.sleep(5) inside get_users() blocks thread.', cls: 'emu-warn' },
{ text: ' ✓ reviewer complete (elapsed=13s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 2: FIXER ──', cls: 'emu-success' },
{ text: ' Generating patch...', cls: 'emu-dim' },
{ text: ' ✓ Patch generated: Refactor blocking sleep into async sleep (asyncio.sleep).', cls: 'emu-success' },
{ text: ' ✓ fixer complete (elapsed=16s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 3: TESTER ──', cls: 'emu-purple' },
{ text: ' Detected pytest-asyncio framework.', cls: 'emu-dim' },
{ text: ' Wrote 3 async tests (test_async_sleep_concurrency).', cls: 'emu-purple' },
{ text: ' ✓ tester complete (elapsed=16s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 4: VERIFIER ──', cls: 'emu-warn' },
{ text: ' Running generated tests...', cls: 'emu-dim' },
{ text: ' ✓ Verification passed, non-blocking views confirmed.', cls: 'emu-success' },
{ text: ' ✓ verifier complete (elapsed=15s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 5: ESCALATOR ──', cls: 'emu-info' },
{ text: ' Decision: AUTO APPROVE (confidence 95%)', cls: 'emu-success' },
{ text: ' [review] Posted approval & fixes to PR #13.', cls: 'emu-success' },
{ text: '[PR Pilot] chain_complete decision=auto_approve duration=80s', cls: 'emu-info' }
],
style: [
{ text: '[PR Pilot] chain_started chain_id=pr-14-style repo=acme/api', cls: 'emu-dim' },
{ text: '── Agent 1: REVIEWER ──', cls: 'emu-info' },
{ text: ' Analyzing diff: utils.py (+3, -0)', cls: 'emu-dim' },
{ text: ' ⚠ [LOW] style: Nested import statement "import math" inside get_circle_area().', cls: 'emu-warn' },
{ text: ' ✓ reviewer complete (elapsed=11s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 2: FIXER ──', cls: 'emu-success' },
{ text: ' Generating patch...', cls: 'emu-dim' },
{ text: ' ✓ Patch generated: Move import statement to the top of the file per PEP 8.', cls: 'emu-success' },
{ text: ' ✓ fixer complete (elapsed=12s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 3: TESTER ──', cls: 'emu-purple' },
{ text: ' Wrote 2 style/regression tests (test_import_position).', cls: 'emu-purple' },
{ text: ' ✓ tester complete (elapsed=11s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 4: VERIFIER ──', cls: 'emu-warn' },
{ text: ' ✓ Verification passed, import matches style specifications.', cls: 'emu-success' },
{ text: ' ✓ verifier complete (elapsed=12s)', cls: 'emu-dim' },
{ text: '', cls: '' },
{ text: '── Agent 5: ESCALATOR ──', cls: 'emu-info' },
{ text: ' Decision: AUTO APPROVE (confidence 100%)', cls: 'emu-success' },
{ text: ' [review] Posted approval & fixes to PR #14.', cls: 'emu-success' },
{ text: '[PR Pilot] chain_complete decision=auto_approve duration=58s', cls: 'emu-info' }
]
};
let currentTimer = null;
function runDemo(type) {
// Clear active tab
document.querySelectorAll('.btn-emu').forEach(btn => btn.classList.remove('active'));
// Set active tab
event.currentTarget.classList.add('active');
// Clear previous timers
if (currentTimer) clearTimeout(currentTimer);
const screen = document.getElementById('emu-screen');
screen.innerHTML = '';
const lines = DEMOS[type] || [];
let lineIdx = 0;
function typeLine() {
if (lineIdx < lines.length) {
const l = lines[lineIdx];
const div = document.createElement('div');
div.className = 'emu-line ' + (l.cls || '');
div.textContent = l.text || ' ';
screen.appendChild(div);
screen.scrollTop = screen.scrollHeight;
lineIdx++;
currentTimer = setTimeout(typeLine, l.text === '' ? 200 : 500);
}
}
typeLine();
}
// Run default SQLi demo on load
window.addEventListener('DOMContentLoaded', () => {
const sqliBtn = document.querySelector('.btn-emu');
if (sqliBtn) sqliBtn.click();
});
</script>
</body>
</html>