@pellux/goodvibes-tui 0.19.12 → 0.19.15

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
@@ -4,6 +4,44 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.19.15] - 2026-04-20
8
+
9
+ ### Fixed
10
+ - **CI orphan recovery** — 0.19.14 was tagged and pushed (`370f94c`, tag `v0.19.14`) but the Release CI matrix failed at the `Build darwin-arm64` and `Build linux-arm64` steps; no npm artifact was published. Bumped to 0.19.15 per project pattern (no retag).
11
+ - **Cross-target build conditional** — `scripts/build.ts`: the hard-fail on missing sqlite-vec native addon is now conditional on whether the build target matches the runner's own platform. Same-platform builds still throw (`Error`) — the addon must be present for a native build to succeed. Cross-platform builds (e.g. linux-x64 runner targeting linux-arm64 or darwin-arm64) now emit `console.warn(...)` and continue — those platforms' addons are not installed by `bun install` on a different-architecture runner; the target-native CI runner is responsible for that step.
12
+
13
+ ---
14
+
15
+ ## [0.19.14] - 2026-04-20
16
+
17
+ ### Changed
18
+ - Upgraded `@pellux/goodvibes-sdk` to 0.21.26. Picks up: (1) **F16b end-to-end fix** — daemon facade now derives `resolveDefaultProviderModel` internally from `providerRegistry.getCurrentModel()`; TUI requires zero active wiring; companion-chat session creation auto-resolves current provider/model or returns `400 NO_MODEL_CONFIGURED`; (2) **scheduler.capacity in method catalog** — `scheduler.capacity` descriptor added to `builtinGatewayRuntimeMethodDescriptors`; now appears in regenerated `operator-contract.json`; (3) **CI flake fixed** — `cache-invariants.test.ts` rewritten to synchronous emit pattern (no TUI impact).
19
+ - TUI version bumped to 0.19.14.
20
+ - Regenerated `docs/foundation-artifacts/operator-contract.json` — now includes `scheduler.capacity` method entry reflecting SDK 0.21.26 builtin catalog.
21
+
22
+ ### Fixed
23
+ - **F16b** — Marked resolved in SDK 0.21.26 / TUI 0.19.14. Daemon facade derives the provider/model resolver internally; no TUI wiring required. `.goodvibes/memory/failures.json` flipped from `partially-resolved` to `resolved`.
24
+ - **build.ts hardening** — `scripts/build.ts`: native `.so` missing from `node_modules/` now throws `Error` (hard fail) instead of emitting `console.warn` and continuing. Prevents silent builds that produce non-functional binaries. Descriptive error includes the expected source path and the platform package name. Belt-and-suspenders smoke-test hard-fail at `scripts/post-build-smoke.ts:87-90` retained.
25
+
26
+ ---
27
+
28
+ ## [0.19.13] - 2026-04-20
29
+
30
+ ### Changed
31
+ - Upgraded `@pellux/goodvibes-sdk` to 0.21.25 (0.21.24 was CI-orphaned; 0.21.25 is the actual release). Picks up: (1) F16b — `resolveDefaultProviderModel` callback hook added to companion-chat-routes session-create handler (router plumbing pending, see below); (2) F17 — `POST /inputs/:iid/cancel` on non-queued state now returns `409 CANCEL_NOT_ALLOWED`; (3) F19 — `PATCH /api/channels/policies/:surface` handler restored; (4) F-PROV-009 — `secretsResolutionSkipped:true` on provider response when secrets store unavailable; (5) `GET /api/runtime/scheduler` capacity observability endpoint added.
32
+ - TUI version bumped to 0.19.13.
33
+
34
+ ### Fixed
35
+ - **F18** — `docs/uat/UAT-PLAN.md` UAT-WATCH-001 corrected: watcher creation body uses `label` field (not `name`). Steps now show `{"label":"<name>","kind":"poll","intervalMs":60000}` and note that the watcher `id` is derived from the `label` value. F18 note added to the test case.
36
+ - **Failure tracker** — `.goodvibes/memory/failures.json` updated: F17, F19, F-PROV-009 marked resolved in SDK 0.21.25; F18 marked resolved in TUI 0.19.13; F16b marked partially-resolved (SDK hook merged, router plumbing incomplete — TUI wiring blocked pending SDK 0.21.26+); F5 already resolved in TUI 0.19.12.
37
+ - **Foundation artifacts** — `docs/foundation-artifacts/operator-contract.json` regenerated to reflect SDK 0.21.25 (version field updated from 0.21.23 to 0.21.25).
38
+
39
+ ### Notes
40
+ - **F16b wiring status**: SDK 0.21.25 added `resolveDefaultProviderModel` only to the companion-chat-routes handler. `DaemonHttpRouter` (router.js) does not yet thread this field from `DaemonHttpRouterContext` to `dispatchCompanionChatRoutes`. TUI cannot wire this without SDK completing the router context plumbing. No TUI code change is required until SDK exposes the hook in a public API surface (expected in a future SDK release).
41
+ - **F5 build fix**: Already implemented in TUI 0.19.12 (`scripts/build.ts` + `scripts/post-build-smoke.ts`). The sqlite-vec native addon is copied to `dist/lib/sqlite-vec-linux-x64/vec0.so` at build time and the smoke test hard-fails if the file is absent.
42
+
43
+ ---
44
+
7
45
  ## [0.19.12] - 2026-04-19
8
46
 
9
47
  ### Fixed
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.12-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.15-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