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 +4 -0
- package/package.json +1 -1
- package/src/index.js +1 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibeostheog",
|
|
3
|
-
"version": "0.15.
|
|
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) {
|