vibeostheog 0.25.2 → 0.25.4
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 +31 -0
- package/dist/assets/dashboard/index.html +10 -1
- package/dist/assets/dashboard/vibeos-dashboard-config.js +1 -0
- package/dist/vibeOS.js +4762 -4567
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
## 0.25.4
|
|
2
|
+
- fix: isApiConnected() self-heals after cooldown without remoteCall()
|
|
3
|
+
- fix: API reconnection cooldown never reset runtime-state, causing permanent offline status
|
|
4
|
+
Merge pull request #183 from DrunkkToys/fix/api-reconnection-cooldown
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## 0.25.3
|
|
8
|
+
- fix: model lock now blocks auto-reconcile and cascade slot rewrites
|
|
9
|
+
- fix: reduce pattern learner noise with self-pair exclusion, sessions threshold, quality gate (#171)
|
|
10
|
+
- feat: real cascade pipeline integration tests (21 tests)
|
|
11
|
+
- fix: blackbox infinite loop, detect-secrets dedup, TDD context gate, delegation savings threshold (#172)
|
|
12
|
+
- fix: prefer trinity slot in footer over stale OpenCode config
|
|
13
|
+
- test: real integration tests for quality pipeline fixes (PRs #171 + #172) (#173)
|
|
14
|
+
- fix: isolate flow-rules.json from test pollution via VIBEOS_FLOW_RULES_PATH env var (#174)
|
|
15
|
+
- test: replace toy integration tests with real behavior assertions (v2) (#175)
|
|
16
|
+
- test: fix 5 worst toy test files - add real assertions (#176)
|
|
17
|
+
- fix: use learned cascade routing in vibeultrax (#177)
|
|
18
|
+
- fix(api-client): auto-reset fallback mode after 60s cooldown
|
|
19
|
+
- Harden live cascade and dashboard startup
|
|
20
|
+
- Merge pull request #178 from DrunkkToys/codex/unified-cascade-hardening
|
|
21
|
+
- Clarify footer brand and regime label
|
|
22
|
+
- Merge pull request #179 from DrunkkToys/codex/footer-brand-separator
|
|
23
|
+
- Keep MCP server up for users
|
|
24
|
+
- Consolidate cascade coverage into one suite
|
|
25
|
+
- Merge pull request #180 from DrunkkToys/codex/cascade-single-suite
|
|
26
|
+
- Integrate vibeultrax coverage into cascade suite
|
|
27
|
+
- Merge pull request #181 from DrunkkToys/codex/cascade-integrate-vibeultrax
|
|
28
|
+
- Add empirical anti-lie guardrail
|
|
29
|
+
- Merge pull request #182 from DrunkkToys/codex/anti-lie-guardrail
|
|
30
|
+
|
|
31
|
+
|
|
1
32
|
## 0.25.2
|
|
2
33
|
- fix: keep the dashboard MCP server alive
|
|
3
34
|
- docs: README rewrite for Innocence v0.25.0 (UX + ML narrative)
|
|
@@ -207,16 +207,25 @@ textarea{min-height:80px;resize:vertical}
|
|
|
207
207
|
|
|
208
208
|
<div class="last-update" id="lastUpdate"></div>
|
|
209
209
|
|
|
210
|
+
<script src="./vibeos-dashboard-config.js"></script>
|
|
210
211
|
<script>
|
|
211
212
|
function resolveBase() {
|
|
212
213
|
const params = new URLSearchParams(location.search);
|
|
213
214
|
const paramBase = params.get('base');
|
|
214
215
|
if (paramBase) return paramBase.replace(/\/$/, '');
|
|
216
|
+
try {
|
|
217
|
+
const runtimeBase = window.__VIBEOS_DASHBOARD_BASE__;
|
|
218
|
+
if (runtimeBase) {
|
|
219
|
+
const normalized = String(runtimeBase).replace(/\/$/, '');
|
|
220
|
+
localStorage.setItem('vibeos-dashboard-base', normalized);
|
|
221
|
+
return normalized;
|
|
222
|
+
}
|
|
223
|
+
} catch (_) {}
|
|
215
224
|
try {
|
|
216
225
|
const stored = localStorage.getItem('vibeos-dashboard-base');
|
|
217
226
|
if (stored) return stored.replace(/\/$/, '');
|
|
218
227
|
} catch (_) {}
|
|
219
|
-
return
|
|
228
|
+
return '';
|
|
220
229
|
}
|
|
221
230
|
const BASE = resolveBase();
|
|
222
231
|
let lastStatus = null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
window.__VIBEOS_DASHBOARD_BASE__ = "http://127.0.0.1:55477";
|