vibeostheog 0.25.28 → 0.25.29

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.
Files changed (2) hide show
  1. package/dist/vibeOS.js +4 -2
  2. package/package.json +1 -1
package/dist/vibeOS.js CHANGED
@@ -5559,7 +5559,8 @@ async function remoteCall(method, args, fallbackFn) {
5559
5559
  syncApiTokenFromDisk();
5560
5560
  }
5561
5561
  if (tryResetFallbackCooldown()) {
5562
- console.debug("[vibeOS] API fallback cooldown expired \u2014 retrying API");
5562
+ if (process.env.VIBEOS_DEBUG)
5563
+ console.warn("[vibeOS] API fallback cooldown expired \u2014 retrying API");
5563
5564
  }
5564
5565
  if (!isApiEnabled() || _apiFallbackMode) {
5565
5566
  if (fallbackFn)
@@ -5586,7 +5587,8 @@ async function remoteCall(method, args, fallbackFn) {
5586
5587
  if (_apiFallbackMode) {
5587
5588
  _apiFallbackMode = false;
5588
5589
  _apiFallbackSince = null;
5589
- console.debug(`[vibeOS] API reconnected \u2014 ${method} OK`);
5590
+ if (process.env.VIBEOS_DEBUG)
5591
+ console.warn(`[vibeOS] API reconnected \u2014 ${method} OK`);
5590
5592
  }
5591
5593
  _apiFallbackMode = false;
5592
5594
  _apiFallbackSince = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.25.28",
3
+ "version": "0.25.29",
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",