vibeostheog 0.23.30 → 0.23.31

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.31
2
+ - fix: agent_mode regime-driven not mode-driven — plan only for REFINING/CONVERGING/CLOSED with low stress
3
+
4
+
1
5
  ## 0.23.30
2
6
  - test: 27 integration tests — patterns/telemetry BE sync + footer ML-driven display + CI wired
3
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.23.30",
3
+ "version": "0.23.31",
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",
@@ -110,7 +110,7 @@ function computeControlVector(_state, _action, _optimizationMode) {
110
110
  stress_multiplier: 1.0,
111
111
  context7_urgency: isStrict ? "required" : "preferred",
112
112
  wbp_verbosity: isStrict ? "verbose" : isRelaxed ? "minimal" : "normal",
113
- agent_mode: isStrict ? "plan" : "auto",
113
+ agent_mode: (subRegime === "REFINING" || subRegime === "CONVERGING" || subRegime === "CLOSED") && stress <= 1.5 ? "plan" : undefined,
114
114
  optimization_mode: mode,
115
115
  directives: [],
116
116
  };