-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
569 lines (501 loc) · 14.6 KB
/
Copy pathindex.html
File metadata and controls
569 lines (501 loc) · 14.6 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Orbit - Mission Control for AI Coding Agents</title>
<meta
name="description"
content="Orbit is a validation harness for AI coding agents: bounded tasks, real validation gates, review artifacts, retries, and durable progress logs."
/>
<style>
:root {
color-scheme: dark light;
--ink: #08111d;
--panel: #0d1928;
--line: rgba(114, 177, 242, 0.28);
--blue: #62b7ff;
--green: #5dda8f;
--white: #f7fbff;
--muted: #9fb0c2;
--paper: #f5f8fc;
--paper-ink: #13202f;
--paper-muted: #526174;
--radius: 8px;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family:
Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", sans-serif;
background: var(--ink);
color: var(--white);
}
a {
color: inherit;
}
.page {
min-height: 100vh;
overflow-x: hidden;
}
.hero {
position: relative;
min-height: 86vh;
display: grid;
align-items: center;
isolation: isolate;
background:
linear-gradient(90deg, rgba(8, 17, 29, 0.96) 0%, rgba(8, 17, 29, 0.78) 38%, rgba(8, 17, 29, 0.22) 74%),
linear-gradient(180deg, rgba(8, 17, 29, 0.12) 0%, rgba(8, 17, 29, 0.88) 100%),
url("media/orbit.png") center / cover no-repeat;
}
.hero::after {
content: "";
position: absolute;
inset: auto 0 0;
height: 32%;
background: linear-gradient(180deg, rgba(8, 17, 29, 0), var(--ink));
z-index: -1;
}
.nav {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 2;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 26px clamp(20px, 5vw, 72px);
}
.brand {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 15px;
font-weight: 760;
letter-spacing: 0;
}
.brand-mark {
width: 12px;
height: 12px;
border: 2px solid var(--blue);
border-radius: 50%;
box-shadow: 0 0 18px rgba(98, 183, 255, 0.9);
}
.nav-links {
display: flex;
align-items: center;
gap: 20px;
color: #cfdaea;
font-size: 14px;
}
.nav-links a {
text-decoration: none;
}
.nav-links a:hover {
color: var(--white);
}
.hero-inner {
width: min(1120px, calc(100% - 40px));
margin: 0 auto;
padding-top: 86px;
padding-bottom: 42px;
}
.hero-copy {
max-width: 620px;
}
h1 {
margin: 0;
font-size: clamp(46px, 6.3vw, 82px);
line-height: 0.96;
letter-spacing: 0;
font-weight: 820;
}
.lede {
max-width: 560px;
margin: 24px 0 0;
color: #c9d5e4;
font-size: clamp(18px, 2.1vw, 23px);
line-height: 1.45;
}
.actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 30px;
}
.button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0 18px;
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: var(--radius);
font-size: 15px;
font-weight: 720;
text-decoration: none;
transition:
transform 160ms ease,
border-color 160ms ease,
background 160ms ease;
}
.button:hover {
transform: translateY(-1px);
}
.button.primary {
background: var(--white);
color: #0a1725;
border-color: var(--white);
}
.button.secondary {
background: rgba(13, 25, 40, 0.72);
color: var(--white);
}
.proof {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1px;
margin-top: 42px;
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
max-width: 760px;
background: var(--line);
}
.proof div {
min-height: 92px;
padding: 18px;
background: rgba(9, 20, 34, 0.74);
}
.proof strong {
display: block;
margin-bottom: 7px;
font-size: 14px;
}
.proof span {
color: var(--muted);
font-size: 13px;
line-height: 1.4;
}
.section {
padding: 82px clamp(20px, 5vw, 72px);
}
.section.light {
background: var(--paper);
color: var(--paper-ink);
}
.section.dark {
background:
radial-gradient(circle at 12% 0%, rgba(98, 183, 255, 0.16), transparent 30%),
var(--ink);
}
.section-inner {
width: min(1120px, 100%);
margin: 0 auto;
}
.split {
display: grid;
grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
gap: clamp(34px, 7vw, 84px);
align-items: start;
}
h2 {
margin: 0;
font-size: clamp(34px, 5vw, 64px);
line-height: 1;
letter-spacing: 0;
}
.section-copy {
margin: 20px 0 0;
color: var(--paper-muted);
font-size: 18px;
line-height: 1.6;
}
.command {
margin: 0;
padding: 22px;
border-radius: var(--radius);
border: 1px solid #d8e2ef;
background: #ffffff;
color: #1d2a3a;
overflow-x: auto;
font-size: 14px;
line-height: 1.7;
box-shadow: 0 18px 48px rgba(22, 39, 64, 0.08);
}
.command code {
font-family:
"SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}
.artifact-list {
display: grid;
gap: 14px;
margin-top: 28px;
}
.artifact {
display: grid;
grid-template-columns: 150px 1fr;
gap: 18px;
align-items: baseline;
padding: 18px 0;
border-top: 1px solid rgba(19, 32, 47, 0.13);
}
.artifact code {
color: #0e5da7;
font-size: 14px;
}
.artifact span {
color: var(--paper-muted);
line-height: 1.5;
}
.use-cases {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
margin-top: 36px;
}
.use-case {
min-height: 178px;
padding: 22px;
border: 1px solid rgba(98, 183, 255, 0.22);
border-radius: var(--radius);
background: rgba(14, 30, 49, 0.72);
}
.use-case h3 {
margin: 0 0 12px;
font-size: 19px;
}
.use-case p {
margin: 0;
color: #aebed0;
line-height: 1.55;
}
.contribute {
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
border-top: 1px solid rgba(255, 255, 255, 0.16);
padding-top: 30px;
}
.contribute p {
max-width: 660px;
margin: 10px 0 0;
color: #aebed0;
line-height: 1.55;
}
footer {
padding: 30px clamp(20px, 5vw, 72px);
background: #050b13;
color: #7f91a7;
font-size: 14px;
}
footer div {
width: min(1120px, 100%);
margin: 0 auto;
}
@media (max-width: 820px) {
.hero {
min-height: auto;
padding-bottom: 52px;
background:
linear-gradient(180deg, rgba(8, 17, 29, 0.84), rgba(8, 17, 29, 0.96)),
url("media/orbit.png") center top / auto 58% no-repeat;
}
.nav {
position: relative;
padding: 18px 20px;
}
.nav-links {
gap: 12px;
font-size: 13px;
}
.nav-links a:nth-child(2) {
display: none;
}
.hero-inner {
width: min(100% - 40px, 640px);
padding-top: 190px;
}
h1 {
font-size: clamp(44px, 16vw, 72px);
}
.proof,
.use-cases,
.split {
grid-template-columns: 1fr;
}
.proof {
margin-top: 38px;
}
.artifact {
grid-template-columns: 1fr;
gap: 8px;
}
.contribute {
align-items: flex-start;
flex-direction: column;
}
}
@media (max-width: 520px) {
.nav {
align-items: flex-start;
flex-direction: column;
gap: 12px;
}
.hero-inner {
padding-top: 168px;
}
.actions {
flex-direction: column;
}
.button {
width: 100%;
}
.section {
padding-top: 62px;
padding-bottom: 62px;
}
}
</style>
</head>
<body>
<main class="page">
<section class="hero" aria-labelledby="hero-title">
<nav class="nav" aria-label="Primary navigation">
<a class="brand" href="https://github.com/human-again/orbit">
<span class="brand-mark" aria-hidden="true"></span>
<span>Orbit</span>
</a>
<div class="nav-links">
<a href="#quickstart">Quickstart</a>
<a href="#artifacts">Artifacts</a>
<a href="https://github.com/human-again/orbit/issues">Contribute</a>
</div>
</nav>
<div class="hero-inner">
<div class="hero-copy">
<h1 id="hero-title">Mission control for AI coding agents.</h1>
<p class="lede">
Orbit turns agent work into bounded, validated, auditable loops:
one task, real checks, durable artifacts, and a progress trail
humans can review.
</p>
<div class="actions" aria-label="Primary actions">
<a class="button primary" href="https://github.com/human-again/orbit">View on GitHub</a>
<a class="button secondary" href="#quickstart">Run the demo</a>
</div>
</div>
<div class="proof" aria-label="Orbit proof points">
<div>
<strong>Bounded tasks</strong>
<span>Dependency-aware backlog selection keeps each orbit focused.</span>
</div>
<div>
<strong>Validation gates</strong>
<span>Tests, lint, and type checks decide whether work advances.</span>
</div>
<div>
<strong>Review artifacts</strong>
<span>Every run leaves inspectable JSON and progress evidence.</span>
</div>
<div>
<strong>Agent-neutral</strong>
<span>Use Claude, Codex, Cursor, or any JSON-speaking CLI.</span>
</div>
</div>
</div>
</section>
<section class="section light" id="quickstart">
<div class="section-inner split">
<div>
<h2>Run a local orbit in minutes.</h2>
<p class="section-copy">
The deterministic replay demo needs no API key. It shows Orbit
selecting a task, running an agent path, validating the result,
and recording the evidence.
</p>
</div>
<pre class="command"><code>git clone https://github.com/human-again/orbit
cd orbit
python -m venv .venv
.venv/bin/pip install pytest pillow
MOCK=1 ./replay.sh auth-rescue</code></pre>
</div>
</section>
<section class="section light" id="artifacts">
<div class="section-inner split">
<div>
<h2>If the agent cannot prove it, the orbit does not close.</h2>
<p class="section-copy">
Orbit records the evidence that matters: what the agent returned,
what validation proved, how the run scored, and what changed next.
</p>
</div>
<div class="artifact-list">
<div class="artifact">
<code>agent-result.json</code>
<span>Structured status, changed files, notes, and raw agent output.</span>
</div>
<div class="artifact">
<code>evaluation.json</code>
<span>Rubric scoring for task focus, completion, diff signal, and validation.</span>
</div>
<div class="artifact">
<code>review.json</code>
<span>Accept, iterate, or stop recommendation for the completed orbit.</span>
</div>
<div class="artifact">
<code>progress.md</code>
<span>Human-readable mission log with validation status and next steps.</span>
</div>
</div>
</div>
</section>
<section class="section dark">
<div class="section-inner">
<h2>Built for the messy middle of agentic development.</h2>
<div class="use-cases">
<article class="use-case">
<h3>Self-healing repos</h3>
<p>Give Orbit failing tests or lint issues and require proof before a task is marked complete.</p>
</article>
<article class="use-case">
<h3>Backlog execution</h3>
<p>Break work into dependency-ordered tasks and let the harness advance one verified orbit at a time.</p>
</article>
<article class="use-case">
<h3>Adapter experiments</h3>
<p>Swap coding agents behind the same contract and compare artifacts instead of anecdotes.</p>
</article>
</div>
</div>
</section>
<section class="section dark">
<div class="section-inner contribute">
<div>
<h2>Contribute an adapter, demo, or mission template.</h2>
<p>
Orbit is intentionally small. The best contributions make the
harness easier to verify, easier to replay, or easier to connect
to another coding-agent workflow.
</p>
</div>
<a class="button primary" href="https://github.com/human-again/orbit/issues">Find starter issues</a>
</div>
</section>
</main>
<footer>
<div>MIT licensed. Built for traceable, repeatable AI coding workflows.</div>
</footer>
</body>
</html>