@pellux/goodvibes-tui 0.19.13 → 0.19.16
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 +36 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/operator-contract.json +204 -148
- package/package.json +2 -2
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,42 @@ All notable changes to GoodVibes TUI.
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.19.16] - 2026-04-20
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Upgraded `@pellux/goodvibes-sdk` to 0.21.27. Picks up three F-closures (all internal to the SDK; TUI requires zero active wiring):
|
|
11
|
+
1. **F7 closed** — OTLP POST receivers implemented at `/api/v1/telemetry/otlp/v1/{logs,traces,metrics}`. JSON-only (`application/json`); protobuf returns 415. `ingestSink` wired to `TelemetryApiService` in daemon router (not null). Ingested records enter the ring buffer (~500 events) with `source: 'otlp-ingest'` and are observable on `GET /api/v1/telemetry/events`. Note: prior "by design" framing for this failure was incorrect — it was a missing implementation.
|
|
12
|
+
2. **F5b closed** — SDK runtime sqlite-vec resolver (`resolveSqliteVecPath()` in `memory-vector-store.js`) now detects the bundled-executable case (`import.meta.url.includes('$bunfs')`) and resolves the addon from `dirname(process.execPath)/lib/sqlite-vec-<os>-<arch>/vec0.<suffix>`. Completes the full chain with F5a (build-side `.so` copy to `dist/lib/`, landed TUI 0.19.12). Smoke-confirmed: `GET /api/memory/vector` returns 200.
|
|
13
|
+
3. **F-PROV-009 closed** — `secretsResolutionSkipped: true` now actually emitted on `GET /api/providers` when `secretsManager` is null, plumbed end-to-end in 0.21.27. Prior 0.21.25 claim of this fix was incomplete.
|
|
14
|
+
- TUI version bumped to 0.19.16.
|
|
15
|
+
- Regenerated `docs/foundation-artifacts/operator-contract.json` — now includes `telemetry.otlp.logs`, `telemetry.otlp.metrics`, `telemetry.otlp.traces` method entries reflecting SDK 0.21.27 OTLP ingest surface.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- `src/test/daemon/telemetry-routes.test.ts`: added `ingestSink: null` to both `createDaemonTelemetryRouteHandlers` invocations to satisfy the new required-but-nullable `TelemetryRouteContext.ingestSink` field introduced in SDK 0.21.27.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## [0.19.15] - 2026-04-20
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
- **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).
|
|
26
|
+
- **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.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## [0.19.14] - 2026-04-20
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
- 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).
|
|
34
|
+
- TUI version bumped to 0.19.14.
|
|
35
|
+
- Regenerated `docs/foundation-artifacts/operator-contract.json` — now includes `scheduler.capacity` method entry reflecting SDK 0.21.26 builtin catalog.
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
- **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`.
|
|
39
|
+
- **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.
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
7
43
|
## [0.19.13] - 2026-04-20
|
|
8
44
|
|
|
9
45
|
### Changed
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/mgd34msu/goodvibes-tui/actions/workflows/ci.yml)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](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
|
|