vibeostheog 0.25.51 → 0.25.53
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/.opencode/skills/vibe/SKILL.md +27 -0
- package/CHANGELOG.md +64 -0
- package/README.md +36 -23
- package/dist/assets/dashboard/index.html +14 -0
- package/dist/assets/dashboard/vibeos-dashboard-config.js +1 -1
- package/dist/vibeOS.js +2224 -834
- package/package.json +2 -1
- package/scripts/deploy.mjs +10 -0
- package/scripts/lib/vibe-skill.mjs +44 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vibe
|
|
3
|
+
description: Use when the user asks for the primary vibeOS entrypoint, says /vibe, wants a fast dashboard/status check, or wants to control sessions, templates, model slots, TDD, flow, blackbox, reports, or diagnostics through vibeOS.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# /vibe
|
|
7
|
+
|
|
8
|
+
Use this as the default workspace command for vibeOS.
|
|
9
|
+
|
|
10
|
+
## Route quickly
|
|
11
|
+
|
|
12
|
+
- `vibe status` for the one-line system summary
|
|
13
|
+
- `vibe dashboard` for the live dashboard URL and browser view
|
|
14
|
+
- `vibe help` when the user wants the available command surface
|
|
15
|
+
|
|
16
|
+
## What belongs here
|
|
17
|
+
|
|
18
|
+
- Session orchestration and session templates
|
|
19
|
+
- Model slots, mode, lock, enforcement, flow, and TDD controls
|
|
20
|
+
- Blackbox, patterns, reports, and diagnostics
|
|
21
|
+
- Remote API-backed features when available
|
|
22
|
+
|
|
23
|
+
## Working rules
|
|
24
|
+
|
|
25
|
+
- Keep the implementation device-agnostic so it works for every user who installs the plugin.
|
|
26
|
+
- Prefer the built-in `vibe` and `trinity` command surface over shell workarounds.
|
|
27
|
+
- Treat the dashboard as the canonical UI for session-level control when the user asks for a visual view.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,67 @@
|
|
|
1
|
+
## 0.25.53
|
|
2
|
+
- fix: add project/blackbox cards to home summary, fix template source detection, expand recommendations (#302)
|
|
3
|
+
Merge release v0.25.52 into master
|
|
4
|
+
Fix backend-authoritative slot sync (#301)
|
|
5
|
+
Make vibeultrax start on cheap (#300)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## 0.25.52
|
|
9
|
+
- feat: ship universal /vibe command
|
|
10
|
+
- feat: add stable dashboard command alias
|
|
11
|
+
- fix: publish dashboard url and harden cascade proof (#290)
|
|
12
|
+
- fix: make footer alerts cover nested desktop outputs
|
|
13
|
+
- fix: preserve tool titles in footer hook (#275)
|
|
14
|
+
- fix: restore reward footer persistence (#274)
|
|
15
|
+
- fix: keep scratchpad cache session-only (#271)
|
|
16
|
+
- refactor: simplify backend-first control flow (#296)
|
|
17
|
+
- test: add missing integration tests for #274, #275, dashboard sync; fix orphaned cache isolation test
|
|
18
|
+
- test: cover empty reward input (#269)
|
|
19
|
+
- chore: v0.25.51
|
|
20
|
+
Fix live dashboard and API state handling (#299)
|
|
21
|
+
Codex/rebase api state fix (#298)
|
|
22
|
+
Fix live home and dashboard runtime sync (#297)
|
|
23
|
+
Repair live session truth and loop closure (#295)
|
|
24
|
+
Fix dashboard URL publication and state recovery (#294)
|
|
25
|
+
Fix README code fence syntax (#292)
|
|
26
|
+
Add real session orchestration and cascade coverage (#293)
|
|
27
|
+
Update README.md (#291)
|
|
28
|
+
Make VibeUltraX the default mode (#289)
|
|
29
|
+
Document vibe command surface (#288)
|
|
30
|
+
Merge pull request #287 from DrunkkToys/codex/dashboard-url-ready
|
|
31
|
+
Merge remote-tracking branch 'origin/master'
|
|
32
|
+
Merge branch 'codex/fix-blackbox-role-shape'
|
|
33
|
+
Fix blackbox role-only session tracking
|
|
34
|
+
Guard slow hot-path calls and compact pivot cache
|
|
35
|
+
Clarify README command syntax
|
|
36
|
+
Fix startup repair and delegation fallbacks
|
|
37
|
+
Cover recent session edge cases
|
|
38
|
+
Fix free-model seed precedence
|
|
39
|
+
Use explicit free-model seed
|
|
40
|
+
Seed free model tiers on fresh installs
|
|
41
|
+
Fix dashboard URL recovery
|
|
42
|
+
Fix startup repair and delegation fallbacks
|
|
43
|
+
Cover recent session edge cases
|
|
44
|
+
Fix free-model seed precedence
|
|
45
|
+
Use explicit free-model seed
|
|
46
|
+
Seed free model tiers on fresh installs
|
|
47
|
+
Fix dashboard URL recovery
|
|
48
|
+
Default fresh installs to vibeultrax
|
|
49
|
+
Merge pull request #278 from DrunkkToys/codex/strat
|
|
50
|
+
Fix dashboard sync path for web search
|
|
51
|
+
Merge origin/master into codex/strat
|
|
52
|
+
Add web search frontend
|
|
53
|
+
Update README.md
|
|
54
|
+
Fix footer claim alert visibility (#277)
|
|
55
|
+
Merge remote-tracking branch 'origin/master' into codex/strat
|
|
56
|
+
Fix footer claim alert visibility
|
|
57
|
+
Improve cache reuse and routing (#276)
|
|
58
|
+
Improve cache reuse and routing
|
|
59
|
+
fix pivot counter-pivot handoff + compressed project memory savings (#273)
|
|
60
|
+
fix pivot counter-pivot handoff (#272)
|
|
61
|
+
Merge remote-tracking branch 'origin/release/v0.25.48'
|
|
62
|
+
Stabilize claim status footer (#270)
|
|
63
|
+
|
|
64
|
+
|
|
1
65
|
## 0.25.51
|
|
2
66
|
- fix: preserve tool titles in footer hook (#275)
|
|
3
67
|
- fix: restore reward footer persistence (#274)
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# vibeOS for OpenCode -- Innocence v0.25.
|
|
1
|
+
# vibeOS for OpenCode -- Innocence v0.25.52
|
|
2
2
|
|
|
3
3
|
A quality-first control plane for AI-assisted coding.
|
|
4
4
|
|
|
@@ -10,7 +10,9 @@ OpenCode Desktop gives you access to the most capable language models ever creat
|
|
|
10
10
|
|
|
11
11
|
The first thing you notice is the footer. A single line at the bottom of every assistant response, barely visible, shows you what model handled the turn and the regime classification for what just happened. It is not a warning. It is not a nag. It is a quality receipt.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
The dashboard now opens on an executive Home summary instead of a dense table, so you can see the active session, project, mode, stress, savings, blackbox state, open TODOs, and next action at a glance.
|
|
14
|
+
|
|
15
|
+
```text
|
|
14
16
|
— brain | DeepSeek | v4-flash -> RFNE | $198.93 saved | VibeUltraX . Quality >>> | guarded | _
|
|
15
17
|
```
|
|
16
18
|
|
|
@@ -53,7 +55,7 @@ The cascade design is informed by recent work in LLM routing and cascade inferen
|
|
|
53
55
|
At the core of vibeOS is a real-time decision engine that classifies every user turn into one of seven sub-regimes:
|
|
54
56
|
|
|
55
57
|
- **INIT / DIVERGENT / EXPLORING** -- You are learning the codebase, asking questions, browsing. cheap model, relaxed enforcement. Stay out of your way.
|
|
56
|
-
- **REFINING** -- You are iterating on a solution. Default mode:
|
|
58
|
+
- **REFINING** -- You are iterating on a solution. Default mode: VibeUltraX, auto-escalate on complexity.
|
|
57
59
|
- **CONVERGING / CLOSED** -- You are finalizing. Full quality mode, brain tier, strict enforcement and flow checks.
|
|
58
60
|
- **LOOPING** -- You are stuck. Speed mode, medium tier, cycle-breaking interventions.
|
|
59
61
|
|
|
@@ -162,11 +164,11 @@ DeepSeek Chat costs $0/turn when routed through the Direct DeepSeek provider (no
|
|
|
162
164
|
| VibeMaX | ~75% | 0.18x | 82% | trained cascade (conservative escalate) |
|
|
163
165
|
| Budget | ~40% | 0.00x | 100% | direct routing |
|
|
164
166
|
|
|
165
|
-
**VibeUltraX** -- Cheap slot proposes, medium reviews, brain refines. 107% quality at 58% cost.
|
|
167
|
+
**VibeUltraX** -- Default mode. Cheap slot proposes, medium reviews, brain refines. 107% quality at 58% cost.
|
|
166
168
|
|
|
167
169
|
**VibeQMaX** -- Routes strategic turns through v4 Pro with full thinking, strict enforcement, strict flow checks, and quality TDD. Write/edit delegated per enforcement rules. Blended cost ~$0.00029/turn (50% of brain baseline).
|
|
168
170
|
|
|
169
|
-
**VibeMaX** -- ML-optimized
|
|
171
|
+
**VibeMaX** -- ML-optimized medium mode. Routes through v4 Flash with a random forest classifier (29 trees, gini-split, trained on telemetry) that decides each turn. ~75% quality at 18% cost.
|
|
170
172
|
|
|
171
173
|
**Budget** -- DeepSeek Chat. Direct routing. ~40% quality at zero cost.
|
|
172
174
|
|
|
@@ -199,7 +201,7 @@ Stress > 1.5 escalates any regime to quality mode regardless of the above mappin
|
|
|
199
201
|
|---------|-------------|
|
|
200
202
|
| Delegation enforcement | Blocks write/edit on brain tier, routes to cheaper tiers transparently |
|
|
201
203
|
| Live savings footer | Tier, provider, model name, total savings, mode -- one line of reassurance |
|
|
202
|
-
| Web dashboard | SolidJS SPA with SSE real-time push for model split, savings, session history, controls |
|
|
204
|
+
| Web dashboard | Session-first SolidJS SPA with executive Home summary, session actions, per-session templates, SSE real-time push for model split, savings, session history, controls |
|
|
203
205
|
| Trinity runtime | Switch tiers mid-session, change optimization mode, toggle subsystems live |
|
|
204
206
|
| Flow enforcer | Pattern-rule checks on write/edit. Extracts TODO/FIXME into append-only queue. |
|
|
205
207
|
| TDD enforcer | Auto-creates test skeletons for changed source. Strict mode fails TODO tests. |
|
|
@@ -210,11 +212,11 @@ Stress > 1.5 escalates any regime to quality mode regardless of the above mappin
|
|
|
210
212
|
| Report tools | report-save, report-list, report-read, research-audit |
|
|
211
213
|
| MCP server | Extended tool capabilities + dashboard serving + SSE push endpoint |
|
|
212
214
|
| Remote API | Fastify server at api.vibetheog.com with token auth and seat management |
|
|
213
|
-
| Session lock | vibe lock on
|
|
215
|
+
| Session lock | `vibe lock on\|off` -- freezes model at session start |
|
|
214
216
|
| Model locking | Per-session lock that skips auto-reconcile with OpenCode config changes |
|
|
215
217
|
| Blackbox decision engine | Dialogue trajectory tracking, loop prevention, outcome calibration |
|
|
216
218
|
| TensorTAG routing | WBP protocol synthesizes delegated task output in assistant chat |
|
|
217
|
-
| Pattern learner runtime |
|
|
219
|
+
| Pattern learner runtime | vibe patterns, vibe patterns clear, vibe patterns suggest |
|
|
218
220
|
| Reward engine | Quality credits, saving bonus, lie/laziness penalties -- gamified quality assurance |
|
|
219
221
|
| Lie detector | Detects fabricated claims, invented function names, hallucinated APIs |
|
|
220
222
|
| Laziness detector | Flags short outputs, TODO placeholders, skipped delegation on brain tier |
|
|
@@ -235,6 +237,7 @@ npx vibeostheog setup --help # full usage
|
|
|
235
237
|
```
|
|
236
238
|
|
|
237
239
|
One command. Deploys plugin files and registers in opencode.json. Restart OpenCode Desktop.
|
|
240
|
+
It also ships the `/vibe` entrypoint so the slash-command surface works on user installs.
|
|
238
241
|
|
|
239
242
|
Local dev checkout:
|
|
240
243
|
|
|
@@ -246,13 +249,16 @@ Local dev checkout:
|
|
|
246
249
|
|
|
247
250
|
## Commands
|
|
248
251
|
|
|
249
|
-
`vibe help`
|
|
252
|
+
`vibe help` for full reference. Commands register in the TUI sidebar.
|
|
253
|
+
`/vibe` is the fast slash-command entrypoint for the same command surface.
|
|
250
254
|
|
|
251
255
|
| Command | Effect |
|
|
252
256
|
|---------|--------|
|
|
253
|
-
|
|
|
254
|
-
| `vibe
|
|
255
|
-
| `vibe
|
|
257
|
+
| `/vibe` | OpenCode slash-command entrypoint for status, dashboard, sessions, templates, and diagnostics |
|
|
258
|
+
| `vibe status` | Tier, enforcement, savings, stress, lock state |
|
|
259
|
+
| `vibe dashboard` / `vibe gui` | Live dashboard URL and browser entrypoint |
|
|
260
|
+
| `vibe set brain\|medium\|cheap [model=<model_id>]` | Switch active model tier or override slot |
|
|
261
|
+
| `vibe brain\|medium\|cheap` | Shorthand tier switch |
|
|
256
262
|
| `vibe enable|disable` | Toggle plugin on/off |
|
|
257
263
|
| `vibe mode budget|quality|speed|longrun|auto|balanced|audit|forensic` | Set optimization mode |
|
|
258
264
|
| `vibe thinking full|brief|off` | Reasoning depth |
|
|
@@ -263,17 +269,20 @@ Local dev checkout:
|
|
|
263
269
|
| `vibe tdd on|off` | Toggle TDD skeleton generation |
|
|
264
270
|
| `vibe tdd strict on|off` | Toggle strict failing TODO test templates |
|
|
265
271
|
| `vibe tdd quality on|off` | Toggle quality assertion stubs |
|
|
266
|
-
| `vibe rebuild`
|
|
272
|
+
| `vibe rebuild` | Re-detect models from all providers |
|
|
267
273
|
| `vibe project` | Per-project analytics |
|
|
268
|
-
| `vibe patterns` / `vibe patterns clear` | Pattern inspection |
|
|
274
|
+
| `vibe patterns` / `vibe patterns clear` / `vibe patterns suggest` | Pattern inspection |
|
|
275
|
+
| `vibe todo` / `vibe todo-done <id>` / `vibe todo-sync` | View pending todos, mark done, sync flow todos |
|
|
276
|
+
| `vibe verify-claims` | Audit recent claim output against cascade evidence |
|
|
269
277
|
| `vibe diagnose` | Health check |
|
|
270
278
|
| `vibe blackbox on|off|status|reset` | Decision engine control |
|
|
271
|
-
| `
|
|
279
|
+
| `vibe repair-state preview|apply` | Fix state collisions |
|
|
272
280
|
| `vibe guard` | Refresh AGENTS.md / README.md |
|
|
273
281
|
| `vibe reality-check` | Read verified live state, report evidence-backed facts only |
|
|
274
|
-
| `vibe setup` | Create a compatibility profile for first-time users |
|
|
275
|
-
| `
|
|
276
|
-
| `
|
|
282
|
+
| `vibe setup` | Create a compatibility profile for first-time users; fresh installs start in VibeUltraX |
|
|
283
|
+
| `vibe api-token <token|invalidate>` | Manage remote API token |
|
|
284
|
+
| `vibe api-bootstrap-token <token>` | Bootstrap token exchange |
|
|
285
|
+
| `vibe report savings` | Deep savings breakdown from the append-only ledger |
|
|
277
286
|
|
|
278
287
|
**Report commands**: report-save, report-list, report-read, research-audit
|
|
279
288
|
|
|
@@ -312,11 +321,15 @@ Core features work fully offline: model tier classification, static pricing, str
|
|
|
312
321
|
|
|
313
322
|
Remote API (api.vibetheog.com) enables: bootstrap token exchange, advanced VibeBoX with full session history, dynamic per-prompt delegation, cross-session calibration, live pricing fetch, learned subagent routing. Falls back gracefully when unreachable.
|
|
314
323
|
|
|
324
|
+
### What Is Missing For A True Session Orchestrator
|
|
325
|
+
|
|
326
|
+
The live dashboard now covers the executive Home summary, session actions, and session-scoped templates. Still missing: session versioning/undo, template versioning, batch operations, real-time WebSocket updates, session comparison, and export/import.
|
|
327
|
+
|
|
315
328
|
### Live Footer
|
|
316
329
|
|
|
317
330
|
The footer is the primary status line, appended to every assistant response. It surfaces model assignment, savings, mode, alerts, and session metrics in a single line.
|
|
318
331
|
|
|
319
|
-
```
|
|
332
|
+
```text
|
|
320
333
|
— brain | DeepSeek | v4-flash -> RFNE | $198.93 saved | VibeUltraX . Quality >>> | guarded | _
|
|
321
334
|
```
|
|
322
335
|
|
|
@@ -409,7 +422,7 @@ The footer is the primary status line, appended to every assistant response. It
|
|
|
409
422
|
| Stress gauge | gaugeChar | _ | Current stress level |
|
|
410
423
|
| Vector pulse | slot | cheap | Active slot changed this turn |
|
|
411
424
|
|
|
412
|
-
Controls: `vibe status`
|
|
425
|
+
Controls: `vibe status` for full state, `vibe enable/disable` to toggle. Persisted in ~/.claude/delegation-state.json.
|
|
413
426
|
|
|
414
427
|
### Environment Variables
|
|
415
428
|
|
|
@@ -428,12 +441,12 @@ Controls: `vibe status` (or `trinity status`) for full state, `vibe enable/disab
|
|
|
428
441
|
| Symptom | Fix |
|
|
429
442
|
|---------|-----|
|
|
430
443
|
| Plugin not loading | Check opencode.json entry. Restart Desktop. |
|
|
431
|
-
| Model won't switch | vibe rebuild
|
|
444
|
+
| Model won't switch | vibe rebuild then vibe set brain/medium/cheap |
|
|
432
445
|
| Writes/edits blocked | Enforcement active -- delegate to cheap tier |
|
|
433
446
|
| No footer visible | Verify plugin enabled, completions running |
|
|
434
447
|
| Dashboard blank | npm run build then restart |
|
|
435
|
-
| State looks wrong | vibe diagnose then
|
|
448
|
+
| State looks wrong | vibe diagnose then vibe repair-state preview |
|
|
436
449
|
|
|
437
450
|
---
|
|
438
451
|
|
|
439
|
-
*vibe help
|
|
452
|
+
*vibe help is the canonical command reference. This README stays high-level so command details follow the code without a rewrite.*
|
|
@@ -148,6 +148,10 @@ textarea{min-height:80px;resize:vertical}
|
|
|
148
148
|
<h3>Templates</h3>
|
|
149
149
|
<div id="homeTemplates"></div>
|
|
150
150
|
</div>
|
|
151
|
+
<div class="card">
|
|
152
|
+
<h3>Pending TODOs</h3>
|
|
153
|
+
<div id="homeTodos"></div>
|
|
154
|
+
</div>
|
|
151
155
|
</div>
|
|
152
156
|
</div>
|
|
153
157
|
</div>
|
|
@@ -368,6 +372,9 @@ function resolveBase() {
|
|
|
368
372
|
const stored = localStorage.getItem('vibeos-dashboard-base');
|
|
369
373
|
if (stored) return stored.replace(/\/$/, '');
|
|
370
374
|
} catch (_) {}
|
|
375
|
+
if (location.protocol === 'http:' || location.protocol === 'https:') {
|
|
376
|
+
return location.origin.replace(/\/$/, '');
|
|
377
|
+
}
|
|
371
378
|
return '';
|
|
372
379
|
}
|
|
373
380
|
const BASE = resolveBase();
|
|
@@ -583,6 +590,13 @@ function renderHome(home) {
|
|
|
583
590
|
if (templates) {
|
|
584
591
|
templates.innerHTML = `<div class="pill-row">${(home.templates || []).slice(0, 6).map(t => `<span class="pill">${t.label || t.id}</span>`).join('')}</div>`;
|
|
585
592
|
}
|
|
593
|
+
const todos = document.getElementById('homeTodos');
|
|
594
|
+
if (todos) {
|
|
595
|
+
const items = Array.isArray(home.todos) ? home.todos.filter(todo => todo && todo.status === 'pending') : [];
|
|
596
|
+
todos.innerHTML = items.length
|
|
597
|
+
? `<div class="pill-row">${items.slice(0, 6).map(todo => `<span class="pill">${todo.content || todo.text || todo.title || 'TODO'}</span>`).join('')}</div><div class="last-update">Pending: ${items.length}</div>`
|
|
598
|
+
: '<div class="search-empty">No pending TODOs.</div>';
|
|
599
|
+
}
|
|
586
600
|
}
|
|
587
601
|
|
|
588
602
|
function renderSessionList(home) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
window.__VIBEOS_DASHBOARD_BASE__ = "http://127.0.0.1:
|
|
1
|
+
window.__VIBEOS_DASHBOARD_BASE__ = "http://127.0.0.1:63452";
|