@pellux/goodvibes-tui 0.19.12 → 0.19.13

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,23 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.19.13] - 2026-04-20
8
+
9
+ ### Changed
10
+ - 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.
11
+ - TUI version bumped to 0.19.13.
12
+
13
+ ### Fixed
14
+ - **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.
15
+ - **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.
16
+ - **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).
17
+
18
+ ### Notes
19
+ - **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).
20
+ - **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.
21
+
22
+ ---
23
+
7
24
  ## [0.19.12] - 2026-04-19
8
25
 
9
26
  ### 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.13-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
 
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "0.21.23"
6
+ "version": "0.21.25"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-tui",
3
- "version": "0.19.12",
3
+ "version": "0.19.13",
4
4
  "description": "Terminal-native GoodVibes product for coding, operations, automation, knowledge, channels, and daemon-backed control-plane workflows.",
5
5
  "type": "module",
6
6
  "main": "src/main.ts",
@@ -90,7 +90,7 @@
90
90
  "@anthropic-ai/vertex-sdk": "^0.16.0",
91
91
  "@ast-grep/napi": "^0.42.0",
92
92
  "@aws/bedrock-token-generator": "^1.1.0",
93
- "@pellux/goodvibes-sdk": "0.21.23",
93
+ "@pellux/goodvibes-sdk": "0.21.25",
94
94
  "bash-language-server": "^5.6.0",
95
95
  "fuse.js": "^7.1.0",
96
96
  "graphql": "^16.13.2",
package/src/version.ts CHANGED
@@ -6,7 +6,7 @@ import { join } from 'node:path';
6
6
  // The prebuild script updates the fallback value before compilation.
7
7
  // Uses import.meta.dir (Bun) to locate package.json relative to this file,
8
8
  // which is correct regardless of the process working directory.
9
- let _version = '0.19.12';
9
+ let _version = '0.19.13';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  _version = pkg.version ?? _version;