vibeostheog 0.24.18 → 0.24.19

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,8 @@
1
+ ## 0.24.19
2
+ - test: cover cold start maintenance user flow (#144)
3
+ Prune stale active jobs and stabilize report tests
4
+
5
+
1
6
  ## 0.24.18
2
7
  - fix: keep Return codename through 0.24 patch releases (#143)
3
8
  - fix: preserve live metrics context in reports (#137)
package/dist/vibeOS.js CHANGED
@@ -4337,7 +4337,7 @@ function loadActiveJobs() {
4337
4337
  const now = Date.now();
4338
4338
  for (const [key, value] of Object.entries(raw || {})) {
4339
4339
  const norm = _normalizeActiveJobRecord(value, now, true);
4340
- if (!norm.record) {
4340
+ if (!norm.record || norm.stale && norm.record.status === "completed" && norm.record.completedAt) {
4341
4341
  changed = true;
4342
4342
  continue;
4343
4343
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.24.18",
3
+ "version": "0.24.19",
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",