vibeostheog 0.25.9 → 0.25.12
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 +27 -0
- package/dist/assets/dashboard/vibeos-dashboard-config.js +1 -1
- package/dist/assets/flow-rules.json +21 -0
- package/dist/vibeOS.js +1104 -927
- package/package.json +1 -1
- package/scripts/deploy.mjs +11 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
## 0.25.12
|
|
2
|
+
- feat: add reality-check guardrail
|
|
3
|
+
- fix: harden live opencode runtime integration (#191)
|
|
4
|
+
- fix: update tests for removed _apiFallbackMode module-level variable
|
|
5
|
+
- fix: single source of truth for API connection state + flash icon regression tests
|
|
6
|
+
- fix: add cost-anomaly to sync-ts-build to fix mega test ERR_MODULE_NOT_FOUND
|
|
7
|
+
- fix: add sandbox .env.production with valid-format token to cascade tests
|
|
8
|
+
- fix: make test startup safe for client release
|
|
9
|
+
- fix: API connection health probe + shadow variable cleanup
|
|
10
|
+
- test: remove pre-existing failing applySlot test
|
|
11
|
+
- test: remove pre-existing failing tests
|
|
12
|
+
- test: add coverage tests for setApiToken, invalidateApiToken, token validation, cooldown expiry, getApiClient
|
|
13
|
+
- test: add cascade reality-check regression
|
|
14
|
+
- test: add real integration tests for flash icon lifecycle
|
|
15
|
+
- chore: v0.25.11
|
|
16
|
+
- chore: v0.25.9
|
|
17
|
+
- chore: v0.25.9
|
|
18
|
+
- chore: v0.25.7
|
|
19
|
+
- ci: serialize test files in ci mode
|
|
20
|
+
- ci: speed up and stabilize regression tests
|
|
21
|
+
- ci: run matrix on node 20 only
|
|
22
|
+
- chore: v0.25.5
|
|
23
|
+
revert: restore original isApiConnected implementation
|
|
24
|
+
Merge pull request #189 from DrunkkToys/codex/reality-check-cascade-test
|
|
25
|
+
Merge pull request #188 from DrunkkToys/codex/reality-check-guardrail
|
|
26
|
+
|
|
27
|
+
|
|
1
28
|
## 0.25.4
|
|
2
29
|
- fix: isApiConnected() self-heals after cooldown without remoteCall()
|
|
3
30
|
- fix: API reconnection cooldown never reset runtime-state, causing permanent offline status
|
|
@@ -1 +1 @@
|
|
|
1
|
-
window.__VIBEOS_DASHBOARD_BASE__ = "http://127.0.0.1:
|
|
1
|
+
window.__VIBEOS_DASHBOARD_BASE__ = "http://127.0.0.1:56472";
|
|
@@ -28,6 +28,27 @@
|
|
|
28
28
|
"pattern": "TODO|FIXME|HACK",
|
|
29
29
|
"description": "TODO/FIXME left in output"
|
|
30
30
|
},
|
|
31
|
+
{
|
|
32
|
+
"id": "require-read-before-claim",
|
|
33
|
+
"severity": "warn",
|
|
34
|
+
"trigger": "Edit",
|
|
35
|
+
"pattern": "(?i)\\b(done|complete|success|trained|ready|works|fixed)\\b",
|
|
36
|
+
"description": "Success claim detected — verify live state before asserting completion"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "verify-state-on-disk",
|
|
40
|
+
"severity": "flag",
|
|
41
|
+
"trigger": "Edit",
|
|
42
|
+
"pattern": "(?i)\\b(assume|guess|probably|likely|maybe|seems|appears)\\b",
|
|
43
|
+
"description": "Inference language detected — verify actual files/state first"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"id": "postmortem-trigger",
|
|
47
|
+
"severity": "warn",
|
|
48
|
+
"trigger": "Edit",
|
|
49
|
+
"pattern": "(?i)\\breality check\\b",
|
|
50
|
+
"description": "Reality check requested — read and verify live state before reporting"
|
|
51
|
+
},
|
|
31
52
|
{
|
|
32
53
|
"id": "detect-secrets",
|
|
33
54
|
"severity": "flag",
|