@pellux/goodvibes-tui 0.19.59 → 0.19.61

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 (232) hide show
  1. package/CHANGELOG.md +52 -0
  2. package/README.md +1 -1
  3. package/docs/foundation-artifacts/operator-contract.json +2398 -2086
  4. package/package.json +2 -2
  5. package/src/audio/player.ts +1 -1
  6. package/src/audio/spoken-turn-controller.ts +5 -5
  7. package/src/audio/spoken-turn-model-routing.ts +3 -3
  8. package/src/audio/spoken-turn-wiring.ts +3 -3
  9. package/src/cli/bundle-command.ts +3 -3
  10. package/src/cli/entrypoint.ts +9 -8
  11. package/src/cli/management-commands.ts +6 -6
  12. package/src/cli/management.ts +17 -16
  13. package/src/cli/provider-auth-routes.ts +1 -1
  14. package/src/cli/service-posture.ts +2 -2
  15. package/src/cli/status.ts +4 -3
  16. package/src/cli/surface-command.ts +1 -1
  17. package/src/config/index.ts +12 -11
  18. package/src/config/provider-model.ts +23 -0
  19. package/src/config/secret-config.ts +1 -1
  20. package/src/config/secrets.ts +3 -3
  21. package/src/core/composer-state.ts +1 -1
  22. package/src/core/conversation-rendering.ts +3 -3
  23. package/src/core/conversation.ts +10 -10
  24. package/src/core/orchestrator.ts +1 -1
  25. package/src/core/system-message-router.ts +3 -3
  26. package/src/daemon/cli.ts +19 -19
  27. package/src/daemon/safe-serve.ts +2 -2
  28. package/src/input/bookmark-modal.ts +1 -1
  29. package/src/input/command-registry.ts +31 -31
  30. package/src/input/commands/control-room-runtime.ts +3 -3
  31. package/src/input/commands/conversation-runtime.ts +1 -1
  32. package/src/input/commands/diff-runtime.ts +1 -1
  33. package/src/input/commands/discovery-runtime.ts +2 -2
  34. package/src/input/commands/eval.ts +6 -6
  35. package/src/input/commands/git-runtime.ts +2 -2
  36. package/src/input/commands/guidance-runtime.ts +3 -3
  37. package/src/input/commands/health-runtime.ts +10 -10
  38. package/src/input/commands/incident-runtime.ts +1 -1
  39. package/src/input/commands/integration-runtime.ts +2 -2
  40. package/src/input/commands/intelligence-runtime.ts +3 -3
  41. package/src/input/commands/knowledge.ts +1 -1
  42. package/src/input/commands/local-auth-runtime.ts +1 -1
  43. package/src/input/commands/local-provider-runtime.ts +3 -4
  44. package/src/input/commands/local-runtime.ts +6 -6
  45. package/src/input/commands/local-setup-review.ts +3 -3
  46. package/src/input/commands/local-setup.ts +3 -3
  47. package/src/input/commands/managed-runtime.ts +9 -8
  48. package/src/input/commands/marketplace-runtime.ts +1 -1
  49. package/src/input/commands/mcp-runtime.ts +1 -1
  50. package/src/input/commands/operator-panel-runtime.ts +1 -1
  51. package/src/input/commands/operator-runtime.ts +5 -5
  52. package/src/input/commands/platform-access-runtime.ts +2 -2
  53. package/src/input/commands/platform-sandbox-qemu.ts +2 -2
  54. package/src/input/commands/platform-sandbox-runtime.ts +6 -6
  55. package/src/input/commands/platform-sandbox-session.ts +2 -2
  56. package/src/input/commands/policy-dispatch.ts +6 -6
  57. package/src/input/commands/product-runtime.ts +2 -2
  58. package/src/input/commands/profile-sync-runtime.ts +2 -2
  59. package/src/input/commands/provider-accounts-runtime.ts +1 -1
  60. package/src/input/commands/provider.ts +3 -3
  61. package/src/input/commands/quit-shared.ts +2 -2
  62. package/src/input/commands/recall-bundle.ts +2 -2
  63. package/src/input/commands/recall-capture.ts +2 -2
  64. package/src/input/commands/recall-query.ts +2 -2
  65. package/src/input/commands/recall-shared.ts +2 -2
  66. package/src/input/commands/remote-runtime-setup.ts +2 -2
  67. package/src/input/commands/remote-runtime.ts +1 -1
  68. package/src/input/commands/replay-runtime.ts +1 -1
  69. package/src/input/commands/runtime-services.ts +11 -11
  70. package/src/input/commands/schedule-runtime.ts +6 -6
  71. package/src/input/commands/services-runtime.ts +1 -1
  72. package/src/input/commands/session-content.ts +5 -5
  73. package/src/input/commands/session-workflow.ts +5 -5
  74. package/src/input/commands/session.ts +2 -2
  75. package/src/input/commands/settings-sync-runtime.ts +5 -4
  76. package/src/input/commands/share-runtime.ts +3 -3
  77. package/src/input/commands/shell-core.ts +4 -5
  78. package/src/input/commands/skills-runtime.ts +1 -1
  79. package/src/input/commands/subscription-runtime.ts +7 -7
  80. package/src/input/commands/tasks-runtime.ts +5 -5
  81. package/src/input/commands/teamwork-runtime.ts +3 -3
  82. package/src/input/commands/teleport-runtime.ts +1 -1
  83. package/src/input/commands/worktree-runtime.ts +3 -3
  84. package/src/input/feed-context-factory.ts +1 -1
  85. package/src/input/file-picker.ts +1 -1
  86. package/src/input/handler-command-route.ts +2 -2
  87. package/src/input/handler-content-actions.ts +7 -7
  88. package/src/input/handler-feed-routes.ts +3 -3
  89. package/src/input/handler-feed.ts +2 -2
  90. package/src/input/handler-interactions.ts +1 -1
  91. package/src/input/handler-modal-routes.ts +1 -2
  92. package/src/input/handler-modal-token-routes.ts +1 -1
  93. package/src/input/handler-onboarding.ts +9 -6
  94. package/src/input/handler-picker-routes.ts +3 -3
  95. package/src/input/handler-shortcuts.ts +1 -1
  96. package/src/input/handler-ui-state.ts +1 -1
  97. package/src/input/handler.ts +5 -5
  98. package/src/input/input-history.ts +2 -2
  99. package/src/input/keybindings.ts +3 -3
  100. package/src/input/model-picker-types.ts +1 -1
  101. package/src/input/model-picker.ts +6 -6
  102. package/src/input/onboarding/handler-onboarding-routes.ts +1 -1
  103. package/src/input/onboarding/onboarding-runtime-status.ts +1 -1
  104. package/src/input/onboarding/onboarding-wizard-apply.ts +2 -2
  105. package/src/input/onboarding/onboarding-wizard-external-surfaces.ts +1 -1
  106. package/src/input/panel-integration-actions.ts +1 -1
  107. package/src/input/profile-picker-modal.ts +5 -5
  108. package/src/input/session-picker-modal.ts +2 -2
  109. package/src/input/settings-modal-behavior.ts +3 -5
  110. package/src/input/settings-modal-secrets.ts +4 -4
  111. package/src/input/settings-modal-subscriptions.ts +3 -3
  112. package/src/input/settings-modal-types.ts +4 -4
  113. package/src/input/settings-modal.ts +9 -9
  114. package/src/input/tts-settings-actions.ts +1 -1
  115. package/src/main.ts +16 -17
  116. package/src/panels/agent-inspector-panel.ts +4 -4
  117. package/src/panels/agent-logs-panel.ts +2 -2
  118. package/src/panels/approval-panel.ts +2 -2
  119. package/src/panels/builtin/operations.ts +1 -1
  120. package/src/panels/builtin/session.ts +2 -2
  121. package/src/panels/builtin/shared.ts +26 -26
  122. package/src/panels/context-visualizer-panel.ts +3 -3
  123. package/src/panels/cost-tracker-panel.ts +1 -1
  124. package/src/panels/debug-panel.ts +1 -1
  125. package/src/panels/eval-panel.ts +1 -1
  126. package/src/panels/forensics-panel.ts +3 -3
  127. package/src/panels/git-panel.ts +3 -3
  128. package/src/panels/hooks-panel.ts +7 -7
  129. package/src/panels/incident-review-panel.ts +2 -2
  130. package/src/panels/knowledge-panel.ts +1 -1
  131. package/src/panels/local-auth-panel.ts +1 -1
  132. package/src/panels/marketplace-panel.ts +2 -2
  133. package/src/panels/mcp-panel.ts +2 -2
  134. package/src/panels/memory-panel.ts +2 -2
  135. package/src/panels/ops-control-panel.ts +1 -1
  136. package/src/panels/ops-strategy-panel.ts +2 -2
  137. package/src/panels/orchestration-panel.ts +1 -1
  138. package/src/panels/panel-list-panel.ts +1 -1
  139. package/src/panels/plan-dashboard-panel.ts +1 -1
  140. package/src/panels/plugins-panel.ts +1 -1
  141. package/src/panels/policy-panel.ts +1 -1
  142. package/src/panels/project-planning-panel.ts +1 -1
  143. package/src/panels/provider-account-snapshot.ts +1 -1
  144. package/src/panels/provider-health-domains.ts +4 -4
  145. package/src/panels/provider-health-panel.ts +4 -4
  146. package/src/panels/provider-stats-panel.ts +1 -1
  147. package/src/panels/qr-panel.ts +1 -1
  148. package/src/panels/sandbox-panel.ts +3 -3
  149. package/src/panels/schedule-panel.ts +4 -4
  150. package/src/panels/security-panel.ts +1 -1
  151. package/src/panels/services-panel.ts +1 -1
  152. package/src/panels/session-browser-panel.ts +3 -3
  153. package/src/panels/settings-sync-panel.ts +1 -1
  154. package/src/panels/skills-panel.ts +1 -1
  155. package/src/panels/subscription-panel.ts +2 -2
  156. package/src/panels/system-messages-panel.ts +1 -1
  157. package/src/panels/tasks-panel.ts +5 -5
  158. package/src/panels/thinking-panel.ts +1 -1
  159. package/src/panels/token-budget-panel.ts +2 -2
  160. package/src/panels/tool-inspector-panel.ts +1 -1
  161. package/src/panels/worktree-panel.ts +6 -6
  162. package/src/panels/wrfc-panel.ts +4 -4
  163. package/src/permissions/prompt.ts +3 -3
  164. package/src/planning/project-planning-coordinator.ts +1 -1
  165. package/src/plugins/loader.ts +2 -2
  166. package/src/renderer/agent-detail-modal.ts +5 -5
  167. package/src/renderer/bookmark-modal.ts +1 -1
  168. package/src/renderer/git-status.ts +3 -3
  169. package/src/renderer/help-overlay.ts +1 -1
  170. package/src/renderer/live-tail-modal.ts +2 -2
  171. package/src/renderer/model-picker-overlay.ts +2 -2
  172. package/src/renderer/model-workspace.ts +1 -1
  173. package/src/renderer/process-modal.ts +3 -3
  174. package/src/renderer/qr-renderer.ts +1 -1
  175. package/src/renderer/semantic-diff.ts +6 -6
  176. package/src/renderer/syntax-highlighter.ts +3 -3
  177. package/src/renderer/tool-call.ts +1 -1
  178. package/src/runtime/bootstrap-command-context.ts +46 -46
  179. package/src/runtime/bootstrap-command-parts.ts +46 -47
  180. package/src/runtime/bootstrap-core.ts +24 -23
  181. package/src/runtime/bootstrap-hook-bridge.ts +14 -14
  182. package/src/runtime/bootstrap-shell.ts +15 -15
  183. package/src/runtime/bootstrap.ts +27 -27
  184. package/src/runtime/cloudflare-control-plane.ts +1 -1
  185. package/src/runtime/context.ts +13 -13
  186. package/src/runtime/diagnostics/panels/index.ts +14 -14
  187. package/src/runtime/diagnostics/panels/ops.ts +7 -7
  188. package/src/runtime/diagnostics/panels/panel-resources.ts +1 -1
  189. package/src/runtime/diagnostics/panels/policy.ts +11 -11
  190. package/src/runtime/index.ts +625 -163
  191. package/src/runtime/onboarding/apply.ts +1 -1
  192. package/src/runtime/onboarding/derivation.ts +3 -2
  193. package/src/runtime/onboarding/markers.ts +1 -1
  194. package/src/runtime/onboarding/snapshot.ts +3 -2
  195. package/src/runtime/onboarding/types.ts +2 -2
  196. package/src/runtime/onboarding/verify.ts +1 -1
  197. package/src/runtime/perf/panel-contracts.ts +2 -2
  198. package/src/runtime/perf/panel-health-monitor.ts +2 -2
  199. package/src/runtime/sandbox-public-gaps.ts +486 -0
  200. package/src/runtime/services.ts +114 -67
  201. package/src/runtime/store/domains/index.ts +50 -50
  202. package/src/runtime/store/index.ts +21 -20
  203. package/src/runtime/store/selectors/index.ts +17 -17
  204. package/src/runtime/store/state.ts +50 -50
  205. package/src/runtime/surface-feature-flags.ts +1 -3
  206. package/src/runtime/terminal-output-guard.ts +1 -1
  207. package/src/runtime/ui/index.ts +7 -7
  208. package/src/runtime/ui/model-picker/data-provider.ts +7 -7
  209. package/src/runtime/ui/model-picker/health-enrichment.ts +7 -7
  210. package/src/runtime/ui/model-picker/index.ts +11 -11
  211. package/src/runtime/ui/model-picker/types.ts +1 -1
  212. package/src/runtime/ui/provider-health/data-provider.ts +4 -4
  213. package/src/runtime/ui/provider-health/fallback-visualizer.ts +5 -3
  214. package/src/runtime/ui/provider-health/index.ts +7 -7
  215. package/src/runtime/ui/provider-health/types.ts +1 -1
  216. package/src/runtime/ui-events.ts +1 -1
  217. package/src/runtime/ui-read-model-helpers.ts +1 -1
  218. package/src/runtime/ui-read-models-observability-maintenance.ts +1 -1
  219. package/src/runtime/ui-read-models-observability-options.ts +1 -1
  220. package/src/runtime/ui-read-models-observability-remote.ts +1 -1
  221. package/src/runtime/ui-read-models-observability-security.ts +1 -1
  222. package/src/runtime/ui-read-models-observability-system.ts +1 -1
  223. package/src/runtime/ui-read-models-observability.ts +1 -1
  224. package/src/runtime/ui-read-models.ts +8 -8
  225. package/src/runtime/ui-service-queries.ts +1 -1
  226. package/src/runtime/ui-services.ts +8 -8
  227. package/src/scripts/process-messages.ts +1 -1
  228. package/src/shell/blocking-input.ts +2 -2
  229. package/src/shell/ui-openers.ts +8 -7
  230. package/src/tools/index.ts +1 -1
  231. package/src/utils/clipboard.ts +3 -3
  232. package/src/version.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,58 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [Unreleased]
8
+
9
+ ---
10
+
11
+ ## [0.19.61] — 2026-05-05
12
+
13
+ ### Changed
14
+ - Updated `@pellux/goodvibes-sdk` to `0.28.22`.
15
+ - Regenerated the operator contract artifacts for SDK 0.28.22.
16
+ - Updated `@pellux/goodvibes-sdk` and all split GoodVibes packages to `0.33.4`.
17
+ - Migrated TUI imports to SDK public package/subpath seams after the SDK removed private `_internal` and catch-all platform exports.
18
+ - Regenerated foundation/operator contract artifacts for the SDK 0.33 public contract shape.
19
+
20
+ ### Verified
21
+ - Verified the previously blocked `runtime/http-transport`, `runtime/realtime-transport`, and `release-gates/transport-parity` tests pass against SDK 0.33.4.
22
+ - Verified the full intended TUI test suite passes without quarantines or skipped migration failures: 480 test files passed, 0 failed.
23
+ - Rebuilt production TUI and daemon binaries with SDK 0.33.4 and smoke-tested the compiled daemon binary.
24
+ - Restarted the compiled daemon against the existing `.goodvibes/tui/control-plane/sessions.json` control-plane store and verified authenticated `/status` reports SDK 0.33.4 without session-normalization startup errors.
25
+ - Reran the TTS `STREAM_END` regression and verified provider-scoped `STREAM_END` does not end a spoken turn before the logical turn completes.
26
+ - Rebuilt and relaunched the daemon with SDK 0.28.10, then retested Home Graph reindex coalescing, status responsiveness, TV feature Ask, base `knowledge.ask` with `knowledgeSpaceId: "homeassistant"`, generated pages, and map edge payloads against the live daemon.
27
+ - Rebuilt and relaunched the daemon with SDK 0.28.11, verified reset `dryRun` is non-destructive against the live Home Graph space, and reran the full local test suite.
28
+ - Rebuilt and relaunched the daemon with SDK 0.28.12, smoke-tested the compiled daemon binary, and coordinated the Home Assistant restart before live Home Graph validation.
29
+ - Rebuilt and relaunched the daemon with SDK 0.28.13, smoke-tested the compiled daemon binary, and verified TTS spoken turns stay active through provider `STREAM_END` until the logical turn completes.
30
+ - Live-tested SDK 0.28.13 Home Graph Ask/reindex/refinement: Ask now returns bounded current evidence with refinement task ids, and the coordinated Home Assistant follow-up showed background refinement can close the LG TV answer gaps; SDK follow-up is still needed for refinement-run budget failures, blocked retry-window tasks, and non-synthesized raw-snippet follow-up output.
31
+ - Rebuilt and relaunched the daemon with SDK 0.28.14, smoke-tested the compiled daemon binary, and reran the TTS `STREAM_END` spoken-turn regression.
32
+ - Coordinated the SDK 0.28.14 Home Assistant live pass: refinement runs now return immediately under budget, Ask/base Ask stay bounded, follow-up Ask synthesizes from repaired LG TV evidence, official LG sources appear in the repaired source set, and map/pages remain clean; one LG TV gap remains active with retryable/deferred repair state.
33
+ - Rebuilt and relaunched the daemon with SDK 0.28.15, smoke-tested the compiled daemon binary, reran the TTS `STREAM_END` spoken-turn regression, and coordinated Home Assistant ownership of the live Home Graph route lane.
34
+ - Coordinated the SDK 0.28.15 Home Assistant live pass: sync, reindex, refinement run, Ask, base Ask, and map stayed responsive; remaining SDK-side follow-up includes official-source answer preference, promoted typed facts, generated pages route reliability, and refinement limit accounting.
35
+ - Rebuilt and relaunched the daemon with SDK 0.28.16, smoke-tested the compiled daemon binary, reran the TTS `STREAM_END` spoken-turn regression, and coordinated Home Assistant ownership of the live Home Graph route lane.
36
+ - Coordinated the SDK 0.28.16 Home Assistant live pass: reset, sync, changed-only reindex, refinement run, pages, maps, and status checks stayed responsive; remaining SDK-side follow-up includes slow initial Home Graph Ask, weak first-answer synthesis with zero promoted facts, base knowledge Ask missing the official LG source, follow-up answers preferring secondary sources, and Home Graph map filters returning unchanged result counts.
37
+ - Rebuilt and relaunched the daemon with SDK 0.28.17, smoke-tested the compiled daemon binary, reran the TTS `STREAM_END` spoken-turn regression, and ran the TUI-owned Home Graph evaluation before handing the route lane to Home Assistant.
38
+ - Live-tested SDK 0.28.17 Home Graph reset/sync/reindex/refinement/Ask/pages/map behavior: destructive reset now deletes scoped generated artifacts, HA sync remains bounded, reindex coalesces overlapping calls, nested Home Assistant map filters narrow results, and base `knowledge.ask` now links concrete TV queries to the scoped LG Home Assistant device while leaving generic "the device" queries unlinked. Remaining SDK-side follow-up includes slow first Home Graph Ask, official LG source not driving the final/follow-up answer, top-level map filters being ignored, and generated page/follow-up prose still containing raw-snippet-style sections.
39
+ - Rebuilt and relaunched the daemon with SDK 0.28.18, smoke-tested the compiled daemon binary, reran the TTS `STREAM_END` spoken-turn regression, and ran the TUI-owned Home Graph evaluation before handing the route lane to Home Assistant.
40
+ - Live-tested SDK 0.28.18 Home Graph reset/sync/reindex/refinement/Ask/pages/map behavior: reset dry-run stayed non-destructive, destructive reset cleared scoped generated artifacts, HA sync returned in 5.4s, overlapping reindex coalesced, refinement/run stayed bounded, top-level and nested Home Assistant map filters both narrowed results with titled non-self-loop edges, and concrete TV asks linked only the real LG Home Assistant device while generic "the device" asks did not invent linked objects. Remaining SDK-side follow-up includes very slow first Home Graph Ask, base/follow-up answers still preferring secondary sources over the accepted official LG source, promoted facts missing subject/target metadata, generated pages missing subject/target/neighbors/relatedPages metadata and still rendering one raw-snippet-style LG page section, and generic base knowledge "device" asks returning noisy Home Assistant app facts.
41
+ - Rebuilt and relaunched the daemon with SDK 0.28.19, smoke-tested the compiled daemon binary, reran the TTS `STREAM_END` spoken-turn regression, and ran the TUI-owned Home Graph evaluation before handing the route lane to Home Assistant.
42
+ - Live-tested SDK 0.28.19 Home Graph reindex/refinement/Ask/pages/map behavior: changed-only reindex skipped missing generated-page artifacts without failures, broad refinement reported `requestedLimit: 500` and `effectiveLimit: 24`, Home Graph and base knowledge TV asks synthesized clean prose from official LG/vendor sources, concrete TV asks linked only the real LG Home Assistant device, returned facts now include top-level `subject`, `subjectIds`, `linkedObjectIds`, and `targetHints`, and generic "the device" asks return no unrelated Home Assistant app facts or gaps. Remaining SDK-side follow-up includes generated LG passport content still containing one raw/evidence-style section and page metadata still missing subject/target/neighbors/relatedPages fields.
43
+ - Rebuilt and relaunched the daemon with SDK 0.28.20, smoke-tested the compiled daemon binary, reran the TTS `STREAM_END` spoken-turn regression, and ran the TUI-owned Home Graph evaluation before handing the route lane to Home Assistant.
44
+ - Live-tested SDK 0.28.20 Home Graph reindex/refinement/Ask/pages/map behavior: overlapping reindex now exposes a coalesced bounded result, Home Graph and base knowledge TV asks continue to synthesize clean official/vendor-backed prose with only the real LG Home Assistant device linked, generic "the device" asks still return no unrelated facts or gaps, generated LG passports no longer match raw-evidence/direct-comparison/table-debris markers, and legitimate `2 x 10W`-style speaker specs remain present. Remaining SDK-side follow-up includes generated passport quality still containing low-value canonical fact text such as truncated marketing/spec fragments and page metadata still missing subject/target/neighbors/relatedPages fields.
45
+ - Rebuilt and relaunched the daemon with SDK 0.28.21, smoke-tested the compiled daemon binary, reran the TTS `STREAM_END` spoken-turn regression, and ran the TUI-owned cold/warm Home Graph evaluation before handing the route lane to Home Assistant.
46
+ - Live-tested SDK 0.28.21 Home Graph reset/sync/reindex/refinement/Ask/pages behavior: reset dry-run stayed non-destructive, destructive reset deleted 57 scoped artifacts, Home Assistant sync returned in 4.49s with status checks staying responsive, changed-only reindex finished in 592ms and skipped generated-page artifacts, concrete TV asks linked only the real LG Home Assistant device, generic "the device" asks returned no unrelated facts/gaps, warm Home Graph/base asks synthesized clean source-backed prose with 24 subject-linked facts, and `nextRepairAttemptAt` is present on blocked repair tasks. Remaining SDK-side follow-up includes slow cold asks, cold Home Graph Ask returning active repair metadata with 0 promoted facts before base Ask repairs the evidence, refinement/run exhausting its budget after 63.9s with `requestedLimit: 500` / `effectiveLimit: 24`, generated page metadata still missing subject/target/neighbors/relatedPages, and LG passport canonical facts still containing low-value truncated spec fragments despite no raw-evidence marker matches.
47
+ - Rebuilt and relaunched the daemon with SDK 0.28.22, smoke-tested the compiled daemon binary, reran the TTS `STREAM_END` spoken-turn regression, and ran the TUI-owned focused warm Home Graph page-refresh validation before handing the route lane to Home Assistant.
48
+ - Live-tested SDK 0.28.22 Home Graph Ask-to-page propagation: warm Home Graph Ask returned in 14.64s with status probes responsive, synthesized official/vendor-backed prose, linked only the real LG Home Assistant device, returned 12 subject-linked facts, and reported `pageRefreshRequested`/`pageRefreshed`; pages rendered 40 markdown pages in 103ms, the LG passport no longer shows `0 source(s)` or stale manual/source questions, preserves a `2 x 10W` speaker fact, and map sanity returned 95 titled non-self-loop edges in 27ms. Remaining SDK-side follow-up includes the LG passport still lacking explicit official LG source text, page metadata still missing subject/target/neighbors/relatedPages, and the passport still rendering low-value truncated canonical fact fragments such as HDMI quantity/table debris.
49
+
50
+ ---
51
+
52
+ ## [0.19.60] — 2026-05-01
53
+
54
+ ### Fixed
55
+ - Embedded the `sql.js` WASM payload during the Bun compile compatibility pass so published daemon binaries no longer try to load `sql-wasm.wasm` from the GitHub runner's `node_modules` path at runtime.
56
+
57
+ ---
58
+
7
59
  ## [0.19.59] — 2026-05-01
8
60
 
9
61
  ### Changed
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml/badge.svg)](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![Version](https://img.shields.io/badge/version-0.19.59-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.61-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
6
6
 
7
7
  A terminal-native AI coding, operations, automation, knowledge, and integration console with a typed runtime, omnichannel surfaces, structured memory/knowledge, and a raw ANSI renderer.
8
8