vibeostheog 0.19.6 → 0.19.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 +10 -0
- package/model-tiers.sample.json +4 -0
- package/package.json +1 -1
- package/src/index.js +609 -311
- package/src/lib/credit-api.js +6 -3
- package/src/lib/hooks/chat-transform.js +27 -9
- package/src/lib/hooks/footer.js +10 -14
- package/src/lib/hooks/session-compact.js +3 -3
- package/src/lib/hooks/tool-execute.js +15 -9
- package/src/lib/pricing.js +96 -18
- package/src/lib/reporting.js +26 -20
- package/src/lib/research-audit.js +4 -8
- package/src/lib/selection-manager.js +15 -7
- package/src/lib/state.js +86 -67
- package/src/lib/tdd-enforcer.js +6 -3
- package/src/lib/trinity-rebuild.js +56 -26
- package/src/lib/trinity-tool.js +107 -8
- package/src/lib/turn-classify.js +14 -10
- package/src/utils/timer.js +2 -2
- package/src/vibeOS-lib/flow-enforcer.js +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.19.7
|
|
2
|
+
- feat: use native opencode model lists
|
|
3
|
+
- fix: make OpenCode footer agnostic
|
|
4
|
+
- fix: make vibeOS compatibility paths dynamic
|
|
5
|
+
Merge pull request #56 from DrunkkToys/codex/agnostic-opencode-release
|
|
6
|
+
Merge pull request #55 from DrunkkToys/codex/agnostic-opencode-models
|
|
7
|
+
merge: origin/master into codex/agnostic-opencode-models
|
|
8
|
+
Bootstrap trinity tiers from OpenCode model
|
|
9
|
+
|
|
10
|
+
|
|
1
11
|
## 0.19.6
|
|
2
12
|
- feat: add OpenCode-style setup installer
|
|
3
13
|
- docs: align install flow with OpenCode npm plugin pattern
|
package/model-tiers.sample.json
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"selection": {
|
|
20
20
|
"_comment": "Used by `trinity auto`: pick `brain` slot when credit ≥ threshold, else `fallback` slot. Dropping to mid slot at low credit is more reliable than burning what's left on flaky brain calls. `enabled` toggles all VibeTheOG logic. `active_slot` records the last slot set by `trinity`.",
|
|
21
21
|
"credit_threshold_percent": 30,
|
|
22
|
+
"slot_order": ["brain", "medium", "cheap"],
|
|
22
23
|
"brain": "brain",
|
|
23
24
|
"fallback": "medium",
|
|
24
25
|
"enabled": true,
|
|
@@ -47,6 +48,9 @@
|
|
|
47
48
|
}
|
|
48
49
|
},
|
|
49
50
|
"pricing": {
|
|
51
|
+
"models": {
|
|
52
|
+
"provider/model-id": 0.001
|
|
53
|
+
},
|
|
50
54
|
"high": {
|
|
51
55
|
"input": 15.00,
|
|
52
56
|
"output": 75.00,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibeostheog",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.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",
|