@pellux/goodvibes-tui 0.19.35 → 0.19.36

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,16 @@ All notable changes to GoodVibes TUI.
4
4
 
5
5
  ---
6
6
 
7
+ ## [0.19.36] — 2026-04-26
8
+
9
+ ### Added
10
+ - Home Assistant onboarding and Settings > Surfaces now expose `surfaces.homeassistant.remoteSessionTtlMs` for daemon-owned remote conversation idle expiry.
11
+ - Documentation now covers the authenticated Home Assistant Assist conversation routes: `GET /api/homeassistant/health`, `POST /api/homeassistant/conversation`, `POST /api/homeassistant/conversation/stream`, and `POST /api/homeassistant/conversation/cancel`.
12
+
13
+ ### Changed
14
+ - Updated `@pellux/goodvibes-sdk` to `0.25.13` for direct non-WRFC Home Assistant ingress, daemon-owned remote sessions, Assist reply correlation metadata, and event-bus reply delivery fixes.
15
+ - Regenerated foundation operator contract artifacts from the SDK 0.25.13 contract.
16
+
7
17
  ## [0.19.35] — 2026-04-26
8
18
 
9
19
  ### Added
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.35-blue.svg)](https://github.com/mgd34msu/goodvibes-tui)
5
+ [![Version](https://img.shields.io/badge/version-0.19.36-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.25.11"
6
+ "version": "0.25.13"
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.35",
3
+ "version": "0.19.36",
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",
@@ -91,7 +91,7 @@
91
91
  "@anthropic-ai/vertex-sdk": "^0.16.0",
92
92
  "@ast-grep/napi": "^0.42.0",
93
93
  "@aws/bedrock-token-generator": "^1.1.0",
94
- "@pellux/goodvibes-sdk": "0.25.11",
94
+ "@pellux/goodvibes-sdk": "0.25.13",
95
95
  "bash-language-server": "^5.6.0",
96
96
  "fuse.js": "^7.1.0",
97
97
  "graphql": "^16.13.2",
@@ -86,6 +86,19 @@ export const HOME_ASSISTANT_SURFACE_SPEC: ExternalSurfaceSpec = {
86
86
  placeholder: 'goodvibes',
87
87
  defaultValue: (snapshot) => snapshot?.config.surfaces.homeassistant.defaultConversationId ?? 'goodvibes',
88
88
  },
89
+ {
90
+ id: 'external-services.homeassistant.remote-session-ttl-ms',
91
+ configKey: 'surfaces.homeassistant.remoteSessionTtlMs',
92
+ kind: 'text',
93
+ valueType: 'number',
94
+ label: 'Remote session idle TTL ms',
95
+ hint: 'How long an idle Home Assistant remote conversation session remains open before the daemon closes it.',
96
+ placeholder: '1200000',
97
+ defaultNumber: 1_200_000,
98
+ min: 60_000,
99
+ max: 86_400_000,
100
+ defaultValue: (snapshot) => String(snapshot?.config.surfaces.homeassistant.remoteSessionTtlMs ?? 1_200_000),
101
+ },
89
102
  {
90
103
  id: 'external-services.homeassistant.device-id',
91
104
  configKey: 'surfaces.homeassistant.deviceId',
@@ -144,6 +144,7 @@ export const SETTING_LABELS: Partial<Record<string, string>> = {
144
144
  'surfaces.homeassistant.accessToken': 'Home Assistant Access Token',
145
145
  'surfaces.homeassistant.webhookSecret': 'Home Assistant Webhook Secret',
146
146
  'surfaces.homeassistant.defaultConversationId': 'Home Assistant Conversation ID',
147
+ 'surfaces.homeassistant.remoteSessionTtlMs': 'Home Assistant Remote Session TTL',
147
148
  'surfaces.homeassistant.deviceId': 'Home Assistant Device ID',
148
149
  'surfaces.homeassistant.deviceName': 'Home Assistant Device Name',
149
150
  'surfaces.homeassistant.eventType': 'Home Assistant Event Type',
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.35';
9
+ let _version = '0.19.36';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  _version = pkg.version ?? _version;