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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.23.25
2
+ - fix: footer always shows regime + vector_changed + optimization_mode — no expiry, no hidden conditions
3
+
4
+
1
5
  ## 0.23.24
2
6
  - fix: ML-driven tier pipeline end-to-end
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.23.24",
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",
@@ -299,15 +299,18 @@ async function _appendFooter(input, output, directory) {
299
299
  }
300
300
  try {
301
301
  const bb = _latestBlackboxState;
302
- if (bb?.sub_regime)
303
- vibeLine += ` | ${bb.sub_regime}`;
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 && sel?.vector_changed_at && (Date.now() - sel.vector_changed_at < 60000)) {
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} —`;