vibeostheog 0.15.1 → 0.15.3

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 (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +5 -11
  3. package/src/index.js +1378 -702
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## 0.15.3
2
+ - fix: remove sticky fallback flag that kills auto mode after single API failure
3
+ - refactor: architecture simplification and scale readiness
4
+ - docs: update vibeOS skills to match current plugin behavior
5
+ - docs: update vibeOS skills to match current plugin behavior
6
+ - chore: finalize cleanup
7
+ - chore: update import paths for vibeOScore monorepo migration
8
+ Merge pull request #32 from DrunkkToys/refactor/architecture-simplify-scale
9
+
10
+
11
+ ## 0.15.2
12
+ - fix: add missing mergeProjectBucket re-export in state module
13
+ - fix: update pricing.js import assertion to handle additional state imports
14
+ - refactor: extract text-compress, pattern-helpers, consolidate duplicates
15
+ - docs: add mandatory prompt execution directive to LIVE_DEBUG
16
+ - chore: sync compiled output after state module fix
17
+ - chore: update gitignore and untrack internal dev artifacts
18
+ Merge pull request #29 from DrunkkToys/refactor/extract-text-compress-pattern-helpers-consolidate
19
+
20
+
1
21
  ## 0.15.0
2
22
  - fix: autoconfig write bug, API fallback short-circuit, constants extraction (#27)
3
23
  - fix: add blackboxSelectMode client method for footer auto-mode routing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.15.1",
3
+ "version": "0.15.3",
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",
@@ -21,12 +21,7 @@
21
21
  "codex:hook:summary": "bash plugins/vibetheog-codex/hooks/post-command-summary.sh",
22
22
  "precommit": "node scripts/pre-commit.mjs",
23
23
  "audit-state": "node scripts/audit-state.mjs",
24
- "migrate-ledger": "node scripts/migrate-ledger.mjs",
25
- "build:dashboard": "cd src/dashboard && npm install && npm run build",
26
- "dev:dashboard": "cd src/dashboard && npm run dev",
27
- "dashboard": "node scripts/dashboard-server.mjs",
28
- "test:e2e": "node --test tests/dashboard-buttons.e2e.test.mjs",
29
- "test:dashboard": "node --test tests/test_dashboard.test.mjs"
24
+ "migrate-ledger": "node scripts/migrate-ledger.mjs"
30
25
  },
31
26
  "type": "module",
32
27
  "exports": {
@@ -69,9 +64,8 @@
69
64
  "@types/node": "^22.15.30",
70
65
  "esbuild": "^0.28.0",
71
66
  "express": "^5.2.1",
72
- "typescript": "^5.9.3"
67
+ "typescript": "^5.9.3",
68
+ "vibeOScore": "file:../vibeOScore"
73
69
  },
74
- "dependencies": {
75
- "solid-js": "^1.9.13"
76
- }
70
+ "dependencies": {}
77
71
  }