omnilane 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +209 -0
- package/LICENSE +21 -0
- package/README.ja.md +345 -0
- package/README.ko.md +337 -0
- package/README.md +368 -0
- package/README.zh-CN.md +317 -0
- package/README.zh-TW.md +327 -0
- package/SECURITY.md +37 -0
- package/VERSION +1 -0
- package/bin/omnilane +72 -0
- package/completions/_omnilane +114 -0
- package/completions/omnilane.bash +123 -0
- package/local.sh.example +37 -0
- package/package.json +54 -0
- package/routing.local.yaml.example +41 -0
- package/routing.yaml +34 -0
- package/scripts/configure.sh +134 -0
- package/scripts/dispatch.sh +705 -0
- package/scripts/doctor.sh +166 -0
- package/scripts/jobs.sh +802 -0
- package/scripts/lib/common.sh +247 -0
- package/scripts/lib/i18n.sh +104 -0
- package/scripts/lib/job-timeout.pl +109 -0
- package/scripts/lib/job-worker.sh +23 -0
- package/scripts/release-audit.sh +314 -0
- package/scripts/runners/run-claude.sh +37 -0
- package/scripts/runners/run-codex.sh +51 -0
- package/scripts/runners/run-exec.sh +33 -0
- package/scripts/runners/run-gemini.sh +60 -0
- package/scripts/runners/run-grok.sh +56 -0
- package/scripts/runners/run-vote.sh +119 -0
- package/scripts/ui.py +1236 -0
- package/ui/app.js +1106 -0
- package/ui/index.html +192 -0
- package/ui/styles.css +1023 -0
package/ui/index.html
ADDED
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<meta name="color-scheme" content="light">
|
|
7
|
+
<title>Omnilane Live Board</title>
|
|
8
|
+
<!-- The server intentionally allow-lists three read-only assets; this prevents a noisy /favicon.ico probe without widening that surface. -->
|
|
9
|
+
<link rel="icon" href="/styles.css">
|
|
10
|
+
<link rel="stylesheet" href="/styles.css">
|
|
11
|
+
<script src="/app.js" defer></script>
|
|
12
|
+
</head>
|
|
13
|
+
<body data-mobile-view="list">
|
|
14
|
+
<div class="board-frame">
|
|
15
|
+
<header class="board-header">
|
|
16
|
+
<div class="board-identity" aria-label="Omnilane Live Board">
|
|
17
|
+
<strong>Omnilane</strong>
|
|
18
|
+
<span aria-hidden="true">/</span>
|
|
19
|
+
<span>Live jobs</span>
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
<div class="board-readouts">
|
|
23
|
+
<span class="read-only-tag">Read only</span>
|
|
24
|
+
<p class="job-count" id="job-count">0 jobs</p>
|
|
25
|
+
<div class="connection-status" id="connection-status" data-mode="waiting" role="status" aria-live="polite">
|
|
26
|
+
<span class="connection-lamp" aria-hidden="true"></span>
|
|
27
|
+
<span id="connection-label">Connecting</span>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</header>
|
|
31
|
+
|
|
32
|
+
<main class="board-layout">
|
|
33
|
+
<aside class="dispatch-index" aria-labelledby="dispatch-index-title">
|
|
34
|
+
<div class="index-heading">
|
|
35
|
+
<div>
|
|
36
|
+
<p class="section-label">Recent work</p>
|
|
37
|
+
<h1 id="dispatch-index-title">Task record</h1>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<div class="queue-controls">
|
|
42
|
+
<label class="search-control" for="job-search">
|
|
43
|
+
<span>Find a task</span>
|
|
44
|
+
<input id="job-search" type="search" autocomplete="off" spellcheck="false" placeholder="Task, ID, lane, model">
|
|
45
|
+
</label>
|
|
46
|
+
|
|
47
|
+
<fieldset class="status-filter" id="status-filter">
|
|
48
|
+
<legend>Show</legend>
|
|
49
|
+
<div class="filter-options">
|
|
50
|
+
<button type="button" class="filter-button is-active" data-filter="all" aria-pressed="true">All</button>
|
|
51
|
+
<button type="button" class="filter-button" data-filter="active" aria-pressed="false">Active</button>
|
|
52
|
+
<button type="button" class="filter-button" data-filter="succeeded" aria-pressed="false">Done</button>
|
|
53
|
+
<button type="button" class="filter-button" data-filter="issues" aria-pressed="false">Issues</button>
|
|
54
|
+
</div>
|
|
55
|
+
</fieldset>
|
|
56
|
+
</div>
|
|
57
|
+
|
|
58
|
+
<ol class="job-list" id="job-list" aria-label="Recent tasks"></ol>
|
|
59
|
+
<p class="list-message" id="list-message">Waiting for tasks.</p>
|
|
60
|
+
</aside>
|
|
61
|
+
|
|
62
|
+
<section class="job-inspector" aria-label="Selected task detail">
|
|
63
|
+
<button type="button" class="mobile-back" id="mobile-back" hidden>
|
|
64
|
+
<span aria-hidden="true">←</span>
|
|
65
|
+
Back to tasks
|
|
66
|
+
</button>
|
|
67
|
+
|
|
68
|
+
<div class="inspector-state" id="inspector-state">
|
|
69
|
+
<p class="state-code" id="state-code">Local · read only</p>
|
|
70
|
+
<h2 id="state-title">Connecting to the job board</h2>
|
|
71
|
+
<p id="state-message">The newest task will appear here.</p>
|
|
72
|
+
</div>
|
|
73
|
+
|
|
74
|
+
<article class="job-detail" id="job-detail" hidden>
|
|
75
|
+
<header class="job-titlebar">
|
|
76
|
+
<div class="selection-heading">
|
|
77
|
+
<p class="section-label">Selected task</p>
|
|
78
|
+
<h2 class="selected-job-id" id="selected-job-id">—</h2>
|
|
79
|
+
<p class="selected-time" id="selected-job-time">Started time unavailable</p>
|
|
80
|
+
</div>
|
|
81
|
+
<div class="title-actions">
|
|
82
|
+
<span class="state-pill" id="selected-job-state">Unknown</span>
|
|
83
|
+
<button
|
|
84
|
+
type="button"
|
|
85
|
+
class="compare-toggle"
|
|
86
|
+
id="compare-toggle"
|
|
87
|
+
aria-controls="compare-panel"
|
|
88
|
+
aria-pressed="false"
|
|
89
|
+
disabled
|
|
90
|
+
>Pin for compare</button>
|
|
91
|
+
<p class="compare-reference-label" id="compare-reference-label" aria-live="polite">No reference pinned</p>
|
|
92
|
+
</div>
|
|
93
|
+
</header>
|
|
94
|
+
|
|
95
|
+
<section class="comparison-section" id="compare-panel" aria-labelledby="compare-heading" hidden>
|
|
96
|
+
<div class="comparison-heading">
|
|
97
|
+
<div>
|
|
98
|
+
<p class="section-label">Reference snapshot</p>
|
|
99
|
+
<h3 id="compare-heading">Route and result comparison</h3>
|
|
100
|
+
</div>
|
|
101
|
+
<button type="button" class="compare-clear" id="compare-clear">Clear reference</button>
|
|
102
|
+
</div>
|
|
103
|
+
|
|
104
|
+
<div class="comparison-grid">
|
|
105
|
+
<article class="comparison-column is-reference" aria-labelledby="compare-reference-id">
|
|
106
|
+
<p class="comparison-role">Pinned reference</p>
|
|
107
|
+
<h4 id="compare-reference-id">—</h4>
|
|
108
|
+
<dl class="comparison-route">
|
|
109
|
+
<div><dt>Lane</dt><dd id="compare-reference-lane">—</dd></div>
|
|
110
|
+
<div><dt>Vendor</dt><dd id="compare-reference-vendor">—</dd></div>
|
|
111
|
+
<div><dt>Model</dt><dd id="compare-reference-model">—</dd></div>
|
|
112
|
+
<div><dt>State</dt><dd id="compare-reference-state">—</dd></div>
|
|
113
|
+
</dl>
|
|
114
|
+
<p class="comparison-output-label">Public result</p>
|
|
115
|
+
<pre class="comparison-output" id="compare-reference-output" tabindex="0"></pre>
|
|
116
|
+
</article>
|
|
117
|
+
|
|
118
|
+
<article class="comparison-column is-current" aria-labelledby="compare-current-id">
|
|
119
|
+
<p class="comparison-role">Current selection</p>
|
|
120
|
+
<h4 id="compare-current-id">—</h4>
|
|
121
|
+
<dl class="comparison-route">
|
|
122
|
+
<div><dt>Lane</dt><dd id="compare-current-lane">—</dd></div>
|
|
123
|
+
<div><dt>Vendor</dt><dd id="compare-current-vendor">—</dd></div>
|
|
124
|
+
<div><dt>Model</dt><dd id="compare-current-model">—</dd></div>
|
|
125
|
+
<div><dt>State</dt><dd id="compare-current-state">—</dd></div>
|
|
126
|
+
</dl>
|
|
127
|
+
<p class="comparison-output-label">Public result</p>
|
|
128
|
+
<pre class="comparison-output" id="compare-current-output" tabindex="0"></pre>
|
|
129
|
+
</article>
|
|
130
|
+
</div>
|
|
131
|
+
</section>
|
|
132
|
+
|
|
133
|
+
<section class="content-section task-section" aria-labelledby="request-heading">
|
|
134
|
+
<div class="section-heading">
|
|
135
|
+
<div>
|
|
136
|
+
<p class="section-label">Task</p>
|
|
137
|
+
<h3 id="request-heading">What the model was asked</h3>
|
|
138
|
+
</div>
|
|
139
|
+
<div class="content-markers" id="request-markers" aria-live="polite"></div>
|
|
140
|
+
</div>
|
|
141
|
+
<p class="content-empty" id="request-empty" hidden></p>
|
|
142
|
+
<pre class="plain-content" id="request-content" tabindex="0"></pre>
|
|
143
|
+
</section>
|
|
144
|
+
|
|
145
|
+
<section class="content-section result-section" aria-labelledby="result-heading">
|
|
146
|
+
<div class="section-heading">
|
|
147
|
+
<div>
|
|
148
|
+
<p class="section-label">Output</p>
|
|
149
|
+
<h3 id="result-heading">Public result</h3>
|
|
150
|
+
</div>
|
|
151
|
+
<div class="content-markers" id="result-markers" aria-live="polite"></div>
|
|
152
|
+
</div>
|
|
153
|
+
<p class="content-empty" id="result-empty" hidden></p>
|
|
154
|
+
<pre class="plain-content result-content" id="result-content" tabindex="0"></pre>
|
|
155
|
+
</section>
|
|
156
|
+
|
|
157
|
+
<section class="routing-section" aria-labelledby="route-heading">
|
|
158
|
+
<div class="section-heading">
|
|
159
|
+
<div>
|
|
160
|
+
<p class="section-label">Routing</p>
|
|
161
|
+
<h3 id="route-heading">Model path</h3>
|
|
162
|
+
</div>
|
|
163
|
+
</div>
|
|
164
|
+
<dl class="routing-list" id="route-track" data-state="starting">
|
|
165
|
+
<div><dt>Lane</dt><dd id="route-lane">—</dd></div>
|
|
166
|
+
<div><dt>Vendor</dt><dd id="route-vendor">—</dd></div>
|
|
167
|
+
<div><dt>Model</dt><dd id="route-model">—</dd></div>
|
|
168
|
+
<div><dt>State</dt><dd id="route-state">—</dd></div>
|
|
169
|
+
</dl>
|
|
170
|
+
</section>
|
|
171
|
+
|
|
172
|
+
<details class="technical-details">
|
|
173
|
+
<summary>Technical metadata</summary>
|
|
174
|
+
<dl class="job-facts" aria-label="Task metadata">
|
|
175
|
+
<div class="fact"><dt>Effort</dt><dd id="fact-effort">—</dd></div>
|
|
176
|
+
<div class="fact"><dt>Mode</dt><dd id="fact-mode">—</dd></div>
|
|
177
|
+
<div class="fact"><dt>Watchdog</dt><dd id="fact-timeout">—</dd></div>
|
|
178
|
+
<div class="fact"><dt>Candidate</dt><dd id="fact-candidate">—</dd></div>
|
|
179
|
+
<div class="fact fact-wide"><dt>Started</dt><dd id="fact-started">—</dd></div>
|
|
180
|
+
<div class="fact fact-wide"><dt>Workdir</dt><dd id="fact-workdir">—</dd></div>
|
|
181
|
+
</dl>
|
|
182
|
+
</details>
|
|
183
|
+
</article>
|
|
184
|
+
</section>
|
|
185
|
+
</main>
|
|
186
|
+
</div>
|
|
187
|
+
|
|
188
|
+
<noscript>
|
|
189
|
+
<p class="noscript-message">JavaScript is required to read this local board.</p>
|
|
190
|
+
</noscript>
|
|
191
|
+
</body>
|
|
192
|
+
</html>
|