vibeostheog 0.15.6 → 0.15.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.15.7
2
+ - fix: auto mode now actually applies optimization mode from API response
3
+
4
+
1
5
  ## 0.15.6
2
6
  - fix: auto mode cache with TTL 60s, preserve last mode on API failure
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.15.6",
3
+ "version": "0.15.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",
package/src/index.js CHANGED
@@ -6878,6 +6878,7 @@ async function _appendFooter(input, output, directory3) {
6878
6878
  const autoStress = scoreStress(latestUserIntent || "");
6879
6879
  const autoActive = await apiAutoSelectMode(autoRegime, autoStress);
6880
6880
  const autoTag = { audit: "AUDIT", budget: "BUDGET", quality: "QUALITY", speed: "SPEED", longrun: "LONGRUN", balanced: "BALANCED" };
6881
+ saveOptimizationMode(autoActive);
6881
6882
  optTagFooter = `[AUTO\u2192${autoTag[autoActive] || autoActive.toUpperCase()}]`;
6882
6883
  const slot2 = autoActive === "quality" ? "brain" : autoActive === "speed" ? "medium" : "cheap";
6883
6884
  if (!_modelLocked) {