vibeostheog 0.23.21 → 0.23.23
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 +10 -0
- package/package.json +1 -1
- package/src/lib/hooks/chat-transform.js +4 -2
- package/src/lib/hooks/footer.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.23.23
|
|
2
|
+
- fix: apiComputeControlVector overrides server tier_bias with local regime-driven value
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## 0.23.22
|
|
6
|
+
- fix: whitespace in vector_changed indicator (→ cheap)
|
|
7
|
+
v0.23.21: Split saveOptimizationMode try-catch — global save survives session write failures
|
|
8
|
+
v0.23.20: Fix chooseEpisodeMode overwriting branded modes with quality
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
## 0.23.19
|
|
2
12
|
- fix: ML-driven footer + 16 integration tests guarding blackbox, CV vectors, and tier pipeline
|
|
3
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibeostheog",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.23",
|
|
4
4
|
"description": "Cost-aware delegation enforcer for OpenCode. Tracks model usage, routes Task subagents to cheaper tiers, surfaces cumulative savings in chat. Includes research audit, reporting framework, project memory, progressive scratchpad decadence, and trinity CLI for brain/medium/cheap slot switching.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"release": "node scripts/release.mjs",
|
|
@@ -47,8 +47,10 @@ const correctionSeenKeys = new Set();
|
|
|
47
47
|
async function apiComputeControlVector(state, action, optimizationMode) {
|
|
48
48
|
try {
|
|
49
49
|
const res = await remoteCall("blackboxControlVector", [state, action, optimizationMode], null);
|
|
50
|
-
if (res?.control_vector)
|
|
51
|
-
|
|
50
|
+
if (res?.control_vector) {
|
|
51
|
+
const local = computeControlVector(state, action, optimizationMode);
|
|
52
|
+
return { ...res.control_vector, tier_bias: local.tier_bias };
|
|
53
|
+
}
|
|
52
54
|
}
|
|
53
55
|
catch { }
|
|
54
56
|
return computeControlVector(state, action, optimizationMode);
|
package/src/lib/hooks/footer.js
CHANGED
|
@@ -306,7 +306,7 @@ async function _appendFooter(input, output, directory) {
|
|
|
306
306
|
try {
|
|
307
307
|
const sel = loadSelection();
|
|
308
308
|
if (sel?.vector_changed_slot && sel?.vector_changed_at && (Date.now() - sel.vector_changed_at < 60000)) {
|
|
309
|
-
vibeLine += ` |
|
|
309
|
+
vibeLine += ` | → ${sel.vector_changed_slot}`;
|
|
310
310
|
}
|
|
311
311
|
}
|
|
312
312
|
catch { }
|