vibeostheog 0.23.6 → 0.23.7

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.7
2
+ - fix: footer brand uses raw optModeFooter not normalized optMode
3
+
4
+
1
5
  ## 0.23.6
2
6
  - fix: trinity mode persistence — write to sid+_opt key, respect user's explicit mode
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.23.6",
3
+ "version": "0.23.7",
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",
@@ -283,7 +283,7 @@ async function _appendFooter(input, output, directory) {
283
283
  const ltTotal = ltTasks + ltCache;
284
284
  const modeCapitalized = (mode) => mode.charAt(0).toUpperCase() + mode.slice(1);
285
285
  const optMode = (resolvedMode || "budget").toLowerCase();
286
- const vibeBrand = optMode === "vibemax" ? "VibeMaX" : optMode === "vibeultrax" ? "VibeUltraX" : optMode === "quality" ? "VibeQMaX" : "VibeMaX";
286
+ const vibeBrand = optModeFooter === "vibeultrax" ? "VibeUltraX" : (optModeFooter === "vibeqmax" || optModeFooter === "quality") ? "VibeQMaX" : "VibeMaX";
287
287
  const modeLabel = modeCapitalized(optMode);
288
288
  const qualityIcon = execution.quality === "brain" ? "🧠" : execution.quality === "medium" ? "⚙" : execution.quality === "free" ? "🎁" : "⚡";
289
289
  const flashIcon = isApiConnected() ? " ⚡" : "";