vibeostheog 0.15.9 → 0.15.11
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 +15 -0
- package/package.json +2 -2
- package/src/index.js +286 -950
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## 0.15.11
|
|
2
|
+
- fix: externalize vibeOScore in esbuild for CI build
|
|
3
|
+
- fix: rebuild index.js with guarded __dirname for ESM compat
|
|
4
|
+
- fix: make scratchpad cache per-session, remove global dir fallback
|
|
5
|
+
- fix: set real model in opencode.json, fix duplicate import in api-client.ts
|
|
6
|
+
- chore: gitignore saveOS-AUDIT-REPORT.md and vibeOS.cjs
|
|
7
|
+
- chore: sync compiled index.js with latest build
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## 0.15.10
|
|
11
|
+
- fix: prevent empty footer from message.updated blocking text.complete
|
|
12
|
+
- fix: prevent empty footer from message.updated blocking text.complete
|
|
13
|
+
- fix: deploy copies .env.production alongside plugin
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
## 0.15.9
|
|
2
17
|
- fix: VIBEOS_API_TOKEN lookup from __dirname, ~/.claude/, ~/, cwd/
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibeostheog",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.11",
|
|
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",
|
|
7
7
|
"release:patch": "node scripts/release.mjs patch --yes",
|
|
8
8
|
"release:minor": "node scripts/release.mjs minor --yes",
|
|
9
9
|
"release:major": "node scripts/release.mjs major --yes",
|
|
10
|
-
"build": "tsc -p tsconfig.json --noEmit && npx esbuild src/index.ts --bundle --outfile=src/index.js --platform=node --format=esm --target=node22 --external:node:* && node scripts/deploy.mjs",
|
|
10
|
+
"build": "tsc -p tsconfig.json --noEmit && npx esbuild src/index.ts --bundle --outfile=src/index.js --platform=node --format=esm --target=node22 --external:node:* --external:vibeOScore && node scripts/deploy.mjs",
|
|
11
11
|
"deploy": "node scripts/deploy.mjs",
|
|
12
12
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
13
13
|
"checkpoint:validate": "node scripts/checkpoint-validate.mjs",
|