vibeostheog 0.19.7 → 0.19.8

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,17 @@
1
+ ## 0.19.8
2
+ - fix: shorten live footer alerts
3
+ - fix: add /g flag and \b word boundaries to ERROR_SIGNAL_WORDS regex
4
+ - build: refresh release-candidate bundle
5
+ Fix local blackbox tracker hydration
6
+ Add model refresh silence regression test
7
+ Fix blackbox session context
8
+ Fix thinking directive precedence
9
+ Merge pull request #58 from DrunkkToys/codex/fix-home-context
10
+ Fix session state home context
11
+ Merge pull request #57 from DrunkkToys/codex/fix-opencode-launch-config
12
+ Fix OpenCode launch config
13
+
14
+
1
15
  ## 0.19.7
2
16
  - feat: use native opencode model lists
3
17
  - fix: make OpenCode footer agnostic
package/README.md CHANGED
@@ -86,6 +86,7 @@ The most common controls are:
86
86
  - `trinity blackbox on|off|status|reset` - control the decision engine
87
87
  - `trinity guard` - refresh AGENTS.md and README.md checks
88
88
  - `trinity api-token <token>` - update the remote API token
89
+ - `trinity api-bootstrap-token <token>` - store an alpha bootstrap token and exchange it for a normal API token on alpha builds
89
90
 
90
91
  Additional reporting commands:
91
92
 
@@ -112,6 +113,7 @@ Savings are persisted in `~/.claude/delegation-state.json`.
112
113
  |---|---|---|
113
114
  | `VIBEOS_API_URL` | `https://api.vibetheog.com` | Remote API server URL |
114
115
  | `VIBEOS_API_TOKEN` | unset | vos_ffa6c7dacb244a03 |
116
+ | `VIBEOS_API_BOOTSTRAP_TOKEN` | unset | Alpha bootstrap token for initial auth exchange |
115
117
  | `VIBEOS_API_ENABLED` | `true` | Set to `false` for local-only mode |
116
118
  | `CLAUDE_CREDIT_PERCENT` | `100` | Credit override |
117
119
  | `CLAUDE_CONTEXT7_AVAILABLE` | unset | Enables context7 optimization |
@@ -126,7 +128,7 @@ Without a token, vibeOS keeps running in local-only mode with bundled algorithms
126
128
  - If the model will not switch, run `trinity rebuild` and then `trinity set brain|medium|cheap`.
127
129
  - If writes or edits are blocked, that is usually delegation enforcement working as intended on the brain tier.
128
130
  - If the footer is missing, check that the plugin is enabled and that the current OpenCode session is receiving assistant completions.
129
- - If the remote API is down or the token is invalid, use `trinity api-token <token>` or rely on local-only mode.
131
+ - If the remote API is down or the token is invalid, use `trinity api-token <token>` or `trinity api-bootstrap-token <token>` on alpha builds, or rely on local-only mode.
130
132
  - If the dashboard does not load, rebuild the plugin with `npm run build` and restart OpenCode.
131
133
  - If state or config looks inconsistent, run `trinity diagnose` and `trinity guard`.
132
134
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibeostheog",
3
- "version": "0.19.7",
3
+ "version": "0.19.8",
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",