vibeostheog 0.25.0 → 0.25.2
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 +25 -0
- package/dist/assets/dashboard/index.html +14 -2
- package/dist/vibeOS.js +1141 -675
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## 0.25.2
|
|
2
|
+
- fix: keep the dashboard MCP server alive
|
|
3
|
+
- docs: README rewrite for Innocence v0.25.0 (UX + ML narrative)
|
|
4
|
+
- test: cover INIT footer icon in e2e
|
|
5
|
+
- test: production-proof regression suite — cleanup 37 dead files, add 11 real-world tests
|
|
6
|
+
Merge pull request #170 from DrunkkToys/codex/dashboard-watchdog
|
|
7
|
+
Fix dashboard local connectivity
|
|
8
|
+
Surface backend version in client status
|
|
9
|
+
Merge pull request #169 from DrunkkToys/codex/clean-production-claim
|
|
10
|
+
Add main-suite cascade regression
|
|
11
|
+
Use experiment router for qmax and ultrax
|
|
12
|
+
Split branded mode roots
|
|
13
|
+
Add production claim verification guard
|
|
14
|
+
Revert "Merge pull request #168 from DrunkkToys/codex/init-footer-icon-regression"
|
|
15
|
+
Merge pull request #168 from DrunkkToys/codex/init-footer-icon-regression
|
|
16
|
+
Refine footer cost storytelling
|
|
17
|
+
Add production claim verification guard
|
|
18
|
+
Strengthen cascade pipeline integration coverage (#167)
|
|
19
|
+
Strengthen cascade pipeline integration coverage
|
|
20
|
+
Merge pull request #166 from DrunkkToys/codex/init-footer-icon-regression
|
|
21
|
+
Clarify vibeqmax mode analysis
|
|
22
|
+
Merge pull request #165 from DrunkkToys/codex/init-footer-icon-regression
|
|
23
|
+
Merge remote-tracking branch 'origin/master' into codex/init-footer-icon-regression
|
|
24
|
+
|
|
25
|
+
|
|
1
26
|
## 0.24.31
|
|
2
27
|
- fix: make footer state truthful
|
|
3
28
|
- fix: quiet greetings should not inherit stale tdd tags
|
|
@@ -208,7 +208,17 @@ textarea{min-height:80px;resize:vertical}
|
|
|
208
208
|
<div class="last-update" id="lastUpdate"></div>
|
|
209
209
|
|
|
210
210
|
<script>
|
|
211
|
-
|
|
211
|
+
function resolveBase() {
|
|
212
|
+
const params = new URLSearchParams(location.search);
|
|
213
|
+
const paramBase = params.get('base');
|
|
214
|
+
if (paramBase) return paramBase.replace(/\/$/, '');
|
|
215
|
+
try {
|
|
216
|
+
const stored = localStorage.getItem('vibeos-dashboard-base');
|
|
217
|
+
if (stored) return stored.replace(/\/$/, '');
|
|
218
|
+
} catch (_) {}
|
|
219
|
+
return location.protocol === 'file:' ? 'http://127.0.0.1:3001' : '';
|
|
220
|
+
}
|
|
221
|
+
const BASE = resolveBase();
|
|
212
222
|
let lastStatus = null;
|
|
213
223
|
let lastSavings = null;
|
|
214
224
|
|
|
@@ -248,6 +258,7 @@ async function refreshAll() {
|
|
|
248
258
|
renderStatus(status);
|
|
249
259
|
renderSavings(savings);
|
|
250
260
|
renderModelInfo(status);
|
|
261
|
+
renderBackendInfo(status);
|
|
251
262
|
setConnection(status);
|
|
252
263
|
document.getElementById('lastUpdate').textContent = 'Last updated: ' + new Date().toLocaleTimeString();
|
|
253
264
|
} catch (e) {
|
|
@@ -305,6 +316,7 @@ function renderBackendInfo(s) {
|
|
|
305
316
|
const el = document.getElementById('backendInfo');
|
|
306
317
|
el.innerHTML = `
|
|
307
318
|
<div class="row"><span class="label">Connected</span><span class="value ${s.backend_connected ? 'green' : 'red'}">${s.backend_connected ? 'Yes' : 'No'}</span></div>
|
|
319
|
+
<div class="row"><span class="label">Backend Version</span><span class="value">${s.backend_version || '-'}</span></div>
|
|
308
320
|
<div class="row"><span class="label">Health URL</span><span class="value" style="font-size:12px">${s.backend_health_url || '-'}</span></div>
|
|
309
321
|
`;
|
|
310
322
|
}
|
|
@@ -470,7 +482,7 @@ setInterval(refreshAll, 10000);
|
|
|
470
482
|
setInterval(fetchBlackbox, 15000);
|
|
471
483
|
async function fetchBlackbox() {
|
|
472
484
|
try {
|
|
473
|
-
const resp = await fetch('/blackbox');
|
|
485
|
+
const resp = await fetch(BASE + '/blackbox');
|
|
474
486
|
if (!resp.ok) return;
|
|
475
487
|
const data = await resp.json();
|
|
476
488
|
updateBlackboxPanel(data);
|