@pellux/goodvibes-tui 0.19.43 → 0.19.46

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pellux/goodvibes-tui",
3
- "version": "0.19.43",
3
+ "version": "0.19.46",
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.20",
94
+ "@pellux/goodvibes-sdk": "0.26.0",
95
95
  "bash-language-server": "^5.6.0",
96
96
  "fuse.js": "^7.1.0",
97
97
  "graphql": "^16.13.2",
@@ -9,7 +9,7 @@ import { ChannelDeliveryRouter } from '@pellux/goodvibes-sdk/platform/channels/d
9
9
  import { ApprovalBroker, GatewayMethodCatalog, SharedSessionBroker } from '@pellux/goodvibes-sdk/platform/control-plane/index';
10
10
  import { WatcherRegistry } from '@pellux/goodvibes-sdk/platform/watchers/index';
11
11
  import { ArtifactStore } from '@pellux/goodvibes-sdk/platform/artifacts/index';
12
- import { KnowledgeService, KnowledgeStore } from '@pellux/goodvibes-sdk/platform/knowledge/index';
12
+ import { HomeGraphService, KnowledgeService, KnowledgeStore } from '@pellux/goodvibes-sdk/platform/knowledge/index';
13
13
  import { MediaProviderRegistry, ensureBuiltinMediaProviders } from '@pellux/goodvibes-sdk/platform/media/index';
14
14
  import { MultimodalService } from '@pellux/goodvibes-sdk/platform/multimodal/index';
15
15
  import { AgentManager } from '@pellux/goodvibes-sdk/platform/tools/agent/index';
@@ -108,6 +108,7 @@ export interface RuntimeServices {
108
108
  readonly gatewayMethods: GatewayMethodCatalog;
109
109
  readonly artifactStore: ArtifactStore;
110
110
  readonly knowledgeService: KnowledgeService;
111
+ readonly homeGraphService: HomeGraphService;
111
112
  readonly memoryStore: MemoryStore;
112
113
  readonly memoryRegistry: MemoryRegistry;
113
114
  readonly serviceRegistry: ServiceRegistry;
@@ -356,6 +357,7 @@ export function createRuntimeServices(options: RuntimeServicesOptions): RuntimeS
356
357
  runtimeBus: options.runtimeBus,
357
358
  });
358
359
  knowledgeService.attachRuntimeBus(options.runtimeBus);
360
+ const homeGraphService = new HomeGraphService(knowledgeStore, artifactStore);
359
361
  const voiceProviders = new VoiceProviderRegistry();
360
362
  ensureBuiltinVoiceProviders(voiceProviders);
361
363
  const voiceService = new VoiceService(voiceProviders);
@@ -494,6 +496,7 @@ export function createRuntimeServices(options: RuntimeServicesOptions): RuntimeS
494
496
  gatewayMethods,
495
497
  artifactStore,
496
498
  knowledgeService,
499
+ homeGraphService,
497
500
  memoryStore,
498
501
  memoryRegistry,
499
502
  serviceRegistry,
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.43';
9
+ let _version = '0.19.46';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  _version = pkg.version ?? _version;