vibeostheog 0.23.24 → 0.23.25
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 +4 -0
- package/package.json +1 -1
- package/src/lib/hooks/footer.js +6 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibeostheog",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.25",
|
|
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",
|
package/src/lib/hooks/footer.js
CHANGED
|
@@ -299,15 +299,18 @@ async function _appendFooter(input, output, directory) {
|
|
|
299
299
|
}
|
|
300
300
|
try {
|
|
301
301
|
const bb = _latestBlackboxState;
|
|
302
|
-
|
|
303
|
-
|
|
302
|
+
const regime = bb?.sub_regime || "INIT";
|
|
303
|
+
vibeLine += ` | ${regime}`;
|
|
304
304
|
}
|
|
305
305
|
catch { }
|
|
306
306
|
try {
|
|
307
307
|
const sel = loadSelection();
|
|
308
|
-
if (sel?.vector_changed_slot
|
|
308
|
+
if (sel?.vector_changed_slot) {
|
|
309
309
|
vibeLine += ` | → ${sel.vector_changed_slot}`;
|
|
310
310
|
}
|
|
311
|
+
if (sel?.optimization_mode && sel.optimization_mode !== "auto") {
|
|
312
|
+
vibeLine += ` | ${sel.optimization_mode}`;
|
|
313
|
+
}
|
|
311
314
|
}
|
|
312
315
|
catch { }
|
|
313
316
|
const footerText = stripped + `\n\n${vibeLine} —`;
|