@pellux/goodvibes-tui 0.19.59 → 0.19.61

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.
Files changed (232) hide show
  1. package/CHANGELOG.md +52 -0
  2. package/README.md +1 -1
  3. package/docs/foundation-artifacts/operator-contract.json +2398 -2086
  4. package/package.json +2 -2
  5. package/src/audio/player.ts +1 -1
  6. package/src/audio/spoken-turn-controller.ts +5 -5
  7. package/src/audio/spoken-turn-model-routing.ts +3 -3
  8. package/src/audio/spoken-turn-wiring.ts +3 -3
  9. package/src/cli/bundle-command.ts +3 -3
  10. package/src/cli/entrypoint.ts +9 -8
  11. package/src/cli/management-commands.ts +6 -6
  12. package/src/cli/management.ts +17 -16
  13. package/src/cli/provider-auth-routes.ts +1 -1
  14. package/src/cli/service-posture.ts +2 -2
  15. package/src/cli/status.ts +4 -3
  16. package/src/cli/surface-command.ts +1 -1
  17. package/src/config/index.ts +12 -11
  18. package/src/config/provider-model.ts +23 -0
  19. package/src/config/secret-config.ts +1 -1
  20. package/src/config/secrets.ts +3 -3
  21. package/src/core/composer-state.ts +1 -1
  22. package/src/core/conversation-rendering.ts +3 -3
  23. package/src/core/conversation.ts +10 -10
  24. package/src/core/orchestrator.ts +1 -1
  25. package/src/core/system-message-router.ts +3 -3
  26. package/src/daemon/cli.ts +19 -19
  27. package/src/daemon/safe-serve.ts +2 -2
  28. package/src/input/bookmark-modal.ts +1 -1
  29. package/src/input/command-registry.ts +31 -31
  30. package/src/input/commands/control-room-runtime.ts +3 -3
  31. package/src/input/commands/conversation-runtime.ts +1 -1
  32. package/src/input/commands/diff-runtime.ts +1 -1
  33. package/src/input/commands/discovery-runtime.ts +2 -2
  34. package/src/input/commands/eval.ts +6 -6
  35. package/src/input/commands/git-runtime.ts +2 -2
  36. package/src/input/commands/guidance-runtime.ts +3 -3
  37. package/src/input/commands/health-runtime.ts +10 -10
  38. package/src/input/commands/incident-runtime.ts +1 -1
  39. package/src/input/commands/integration-runtime.ts +2 -2
  40. package/src/input/commands/intelligence-runtime.ts +3 -3
  41. package/src/input/commands/knowledge.ts +1 -1
  42. package/src/input/commands/local-auth-runtime.ts +1 -1
  43. package/src/input/commands/local-provider-runtime.ts +3 -4
  44. package/src/input/commands/local-runtime.ts +6 -6
  45. package/src/input/commands/local-setup-review.ts +3 -3
  46. package/src/input/commands/local-setup.ts +3 -3
  47. package/src/input/commands/managed-runtime.ts +9 -8
  48. package/src/input/commands/marketplace-runtime.ts +1 -1
  49. package/src/input/commands/mcp-runtime.ts +1 -1
  50. package/src/input/commands/operator-panel-runtime.ts +1 -1
  51. package/src/input/commands/operator-runtime.ts +5 -5
  52. package/src/input/commands/platform-access-runtime.ts +2 -2
  53. package/src/input/commands/platform-sandbox-qemu.ts +2 -2
  54. package/src/input/commands/platform-sandbox-runtime.ts +6 -6
  55. package/src/input/commands/platform-sandbox-session.ts +2 -2
  56. package/src/input/commands/policy-dispatch.ts +6 -6
  57. package/src/input/commands/product-runtime.ts +2 -2
  58. package/src/input/commands/profile-sync-runtime.ts +2 -2
  59. package/src/input/commands/provider-accounts-runtime.ts +1 -1
  60. package/src/input/commands/provider.ts +3 -3
  61. package/src/input/commands/quit-shared.ts +2 -2
  62. package/src/input/commands/recall-bundle.ts +2 -2
  63. package/src/input/commands/recall-capture.ts +2 -2
  64. package/src/input/commands/recall-query.ts +2 -2
  65. package/src/input/commands/recall-shared.ts +2 -2
  66. package/src/input/commands/remote-runtime-setup.ts +2 -2
  67. package/src/input/commands/remote-runtime.ts +1 -1
  68. package/src/input/commands/replay-runtime.ts +1 -1
  69. package/src/input/commands/runtime-services.ts +11 -11
  70. package/src/input/commands/schedule-runtime.ts +6 -6
  71. package/src/input/commands/services-runtime.ts +1 -1
  72. package/src/input/commands/session-content.ts +5 -5
  73. package/src/input/commands/session-workflow.ts +5 -5
  74. package/src/input/commands/session.ts +2 -2
  75. package/src/input/commands/settings-sync-runtime.ts +5 -4
  76. package/src/input/commands/share-runtime.ts +3 -3
  77. package/src/input/commands/shell-core.ts +4 -5
  78. package/src/input/commands/skills-runtime.ts +1 -1
  79. package/src/input/commands/subscription-runtime.ts +7 -7
  80. package/src/input/commands/tasks-runtime.ts +5 -5
  81. package/src/input/commands/teamwork-runtime.ts +3 -3
  82. package/src/input/commands/teleport-runtime.ts +1 -1
  83. package/src/input/commands/worktree-runtime.ts +3 -3
  84. package/src/input/feed-context-factory.ts +1 -1
  85. package/src/input/file-picker.ts +1 -1
  86. package/src/input/handler-command-route.ts +2 -2
  87. package/src/input/handler-content-actions.ts +7 -7
  88. package/src/input/handler-feed-routes.ts +3 -3
  89. package/src/input/handler-feed.ts +2 -2
  90. package/src/input/handler-interactions.ts +1 -1
  91. package/src/input/handler-modal-routes.ts +1 -2
  92. package/src/input/handler-modal-token-routes.ts +1 -1
  93. package/src/input/handler-onboarding.ts +9 -6
  94. package/src/input/handler-picker-routes.ts +3 -3
  95. package/src/input/handler-shortcuts.ts +1 -1
  96. package/src/input/handler-ui-state.ts +1 -1
  97. package/src/input/handler.ts +5 -5
  98. package/src/input/input-history.ts +2 -2
  99. package/src/input/keybindings.ts +3 -3
  100. package/src/input/model-picker-types.ts +1 -1
  101. package/src/input/model-picker.ts +6 -6
  102. package/src/input/onboarding/handler-onboarding-routes.ts +1 -1
  103. package/src/input/onboarding/onboarding-runtime-status.ts +1 -1
  104. package/src/input/onboarding/onboarding-wizard-apply.ts +2 -2
  105. package/src/input/onboarding/onboarding-wizard-external-surfaces.ts +1 -1
  106. package/src/input/panel-integration-actions.ts +1 -1
  107. package/src/input/profile-picker-modal.ts +5 -5
  108. package/src/input/session-picker-modal.ts +2 -2
  109. package/src/input/settings-modal-behavior.ts +3 -5
  110. package/src/input/settings-modal-secrets.ts +4 -4
  111. package/src/input/settings-modal-subscriptions.ts +3 -3
  112. package/src/input/settings-modal-types.ts +4 -4
  113. package/src/input/settings-modal.ts +9 -9
  114. package/src/input/tts-settings-actions.ts +1 -1
  115. package/src/main.ts +16 -17
  116. package/src/panels/agent-inspector-panel.ts +4 -4
  117. package/src/panels/agent-logs-panel.ts +2 -2
  118. package/src/panels/approval-panel.ts +2 -2
  119. package/src/panels/builtin/operations.ts +1 -1
  120. package/src/panels/builtin/session.ts +2 -2
  121. package/src/panels/builtin/shared.ts +26 -26
  122. package/src/panels/context-visualizer-panel.ts +3 -3
  123. package/src/panels/cost-tracker-panel.ts +1 -1
  124. package/src/panels/debug-panel.ts +1 -1
  125. package/src/panels/eval-panel.ts +1 -1
  126. package/src/panels/forensics-panel.ts +3 -3
  127. package/src/panels/git-panel.ts +3 -3
  128. package/src/panels/hooks-panel.ts +7 -7
  129. package/src/panels/incident-review-panel.ts +2 -2
  130. package/src/panels/knowledge-panel.ts +1 -1
  131. package/src/panels/local-auth-panel.ts +1 -1
  132. package/src/panels/marketplace-panel.ts +2 -2
  133. package/src/panels/mcp-panel.ts +2 -2
  134. package/src/panels/memory-panel.ts +2 -2
  135. package/src/panels/ops-control-panel.ts +1 -1
  136. package/src/panels/ops-strategy-panel.ts +2 -2
  137. package/src/panels/orchestration-panel.ts +1 -1
  138. package/src/panels/panel-list-panel.ts +1 -1
  139. package/src/panels/plan-dashboard-panel.ts +1 -1
  140. package/src/panels/plugins-panel.ts +1 -1
  141. package/src/panels/policy-panel.ts +1 -1
  142. package/src/panels/project-planning-panel.ts +1 -1
  143. package/src/panels/provider-account-snapshot.ts +1 -1
  144. package/src/panels/provider-health-domains.ts +4 -4
  145. package/src/panels/provider-health-panel.ts +4 -4
  146. package/src/panels/provider-stats-panel.ts +1 -1
  147. package/src/panels/qr-panel.ts +1 -1
  148. package/src/panels/sandbox-panel.ts +3 -3
  149. package/src/panels/schedule-panel.ts +4 -4
  150. package/src/panels/security-panel.ts +1 -1
  151. package/src/panels/services-panel.ts +1 -1
  152. package/src/panels/session-browser-panel.ts +3 -3
  153. package/src/panels/settings-sync-panel.ts +1 -1
  154. package/src/panels/skills-panel.ts +1 -1
  155. package/src/panels/subscription-panel.ts +2 -2
  156. package/src/panels/system-messages-panel.ts +1 -1
  157. package/src/panels/tasks-panel.ts +5 -5
  158. package/src/panels/thinking-panel.ts +1 -1
  159. package/src/panels/token-budget-panel.ts +2 -2
  160. package/src/panels/tool-inspector-panel.ts +1 -1
  161. package/src/panels/worktree-panel.ts +6 -6
  162. package/src/panels/wrfc-panel.ts +4 -4
  163. package/src/permissions/prompt.ts +3 -3
  164. package/src/planning/project-planning-coordinator.ts +1 -1
  165. package/src/plugins/loader.ts +2 -2
  166. package/src/renderer/agent-detail-modal.ts +5 -5
  167. package/src/renderer/bookmark-modal.ts +1 -1
  168. package/src/renderer/git-status.ts +3 -3
  169. package/src/renderer/help-overlay.ts +1 -1
  170. package/src/renderer/live-tail-modal.ts +2 -2
  171. package/src/renderer/model-picker-overlay.ts +2 -2
  172. package/src/renderer/model-workspace.ts +1 -1
  173. package/src/renderer/process-modal.ts +3 -3
  174. package/src/renderer/qr-renderer.ts +1 -1
  175. package/src/renderer/semantic-diff.ts +6 -6
  176. package/src/renderer/syntax-highlighter.ts +3 -3
  177. package/src/renderer/tool-call.ts +1 -1
  178. package/src/runtime/bootstrap-command-context.ts +46 -46
  179. package/src/runtime/bootstrap-command-parts.ts +46 -47
  180. package/src/runtime/bootstrap-core.ts +24 -23
  181. package/src/runtime/bootstrap-hook-bridge.ts +14 -14
  182. package/src/runtime/bootstrap-shell.ts +15 -15
  183. package/src/runtime/bootstrap.ts +27 -27
  184. package/src/runtime/cloudflare-control-plane.ts +1 -1
  185. package/src/runtime/context.ts +13 -13
  186. package/src/runtime/diagnostics/panels/index.ts +14 -14
  187. package/src/runtime/diagnostics/panels/ops.ts +7 -7
  188. package/src/runtime/diagnostics/panels/panel-resources.ts +1 -1
  189. package/src/runtime/diagnostics/panels/policy.ts +11 -11
  190. package/src/runtime/index.ts +625 -163
  191. package/src/runtime/onboarding/apply.ts +1 -1
  192. package/src/runtime/onboarding/derivation.ts +3 -2
  193. package/src/runtime/onboarding/markers.ts +1 -1
  194. package/src/runtime/onboarding/snapshot.ts +3 -2
  195. package/src/runtime/onboarding/types.ts +2 -2
  196. package/src/runtime/onboarding/verify.ts +1 -1
  197. package/src/runtime/perf/panel-contracts.ts +2 -2
  198. package/src/runtime/perf/panel-health-monitor.ts +2 -2
  199. package/src/runtime/sandbox-public-gaps.ts +486 -0
  200. package/src/runtime/services.ts +114 -67
  201. package/src/runtime/store/domains/index.ts +50 -50
  202. package/src/runtime/store/index.ts +21 -20
  203. package/src/runtime/store/selectors/index.ts +17 -17
  204. package/src/runtime/store/state.ts +50 -50
  205. package/src/runtime/surface-feature-flags.ts +1 -3
  206. package/src/runtime/terminal-output-guard.ts +1 -1
  207. package/src/runtime/ui/index.ts +7 -7
  208. package/src/runtime/ui/model-picker/data-provider.ts +7 -7
  209. package/src/runtime/ui/model-picker/health-enrichment.ts +7 -7
  210. package/src/runtime/ui/model-picker/index.ts +11 -11
  211. package/src/runtime/ui/model-picker/types.ts +1 -1
  212. package/src/runtime/ui/provider-health/data-provider.ts +4 -4
  213. package/src/runtime/ui/provider-health/fallback-visualizer.ts +5 -3
  214. package/src/runtime/ui/provider-health/index.ts +7 -7
  215. package/src/runtime/ui/provider-health/types.ts +1 -1
  216. package/src/runtime/ui-events.ts +1 -1
  217. package/src/runtime/ui-read-model-helpers.ts +1 -1
  218. package/src/runtime/ui-read-models-observability-maintenance.ts +1 -1
  219. package/src/runtime/ui-read-models-observability-options.ts +1 -1
  220. package/src/runtime/ui-read-models-observability-remote.ts +1 -1
  221. package/src/runtime/ui-read-models-observability-security.ts +1 -1
  222. package/src/runtime/ui-read-models-observability-system.ts +1 -1
  223. package/src/runtime/ui-read-models-observability.ts +1 -1
  224. package/src/runtime/ui-read-models.ts +8 -8
  225. package/src/runtime/ui-service-queries.ts +1 -1
  226. package/src/runtime/ui-services.ts +8 -8
  227. package/src/scripts/process-messages.ts +1 -1
  228. package/src/shell/blocking-input.ts +2 -2
  229. package/src/shell/ui-openers.ts +8 -7
  230. package/src/tools/index.ts +1 -1
  231. package/src/utils/clipboard.ts +3 -3
  232. package/src/version.ts +1 -1
@@ -6,63 +6,63 @@
6
6
  * These are defined per-domain in the domain files.
7
7
  */
8
8
 
9
- import type { SessionDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/session';
10
- import type { ModelDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/model';
11
- import type { ConversationDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/conversation';
12
- import type { OverlayDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/overlays';
9
+ import type { SessionDomainState } from '@/runtime/index.ts';
10
+ import type { ModelDomainState } from '@/runtime/index.ts';
11
+ import type { ConversationDomainState } from '@/runtime/index.ts';
12
+ import type { OverlayDomainState } from '@/runtime/index.ts';
13
13
  import type { PanelDomainState } from './domains/panels.ts';
14
- import type { PermissionDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/permissions';
15
- import type { TaskDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/tasks';
16
- import type { AgentDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/agents';
17
- import type { OrchestrationDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/orchestration';
18
- import type { CommunicationDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/communication';
19
- import type { ProviderHealthDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
20
- import type { McpDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/mcp';
21
- import type { PluginDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/plugins';
22
- import type { DaemonDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/daemon';
23
- import type { AutomationDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/automation';
24
- import type { AcpDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/acp';
25
- import type { RoutesDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/routes';
26
- import type { ControlPlaneDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/control-plane';
27
- import type { DeliveryDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/deliveries';
28
- import type { WatcherDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/watchers';
29
- import type { SurfaceDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/surfaces';
30
- import type { IntegrationDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/integrations';
31
- import type { TelemetryDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/telemetry';
32
- import type { GitDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/git';
33
- import type { DiscoveryDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/discovery';
34
- import type { IntelligenceDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/intelligence';
14
+ import type { PermissionDomainState } from '@/runtime/index.ts';
15
+ import type { TaskDomainState } from '@/runtime/index.ts';
16
+ import type { AgentDomainState } from '@/runtime/index.ts';
17
+ import type { OrchestrationDomainState } from '@/runtime/index.ts';
18
+ import type { CommunicationDomainState } from '@/runtime/index.ts';
19
+ import type { ProviderHealthDomainState } from '@/runtime/index.ts';
20
+ import type { McpDomainState } from '@/runtime/index.ts';
21
+ import type { PluginDomainState } from '@/runtime/index.ts';
22
+ import type { DaemonDomainState } from '@/runtime/index.ts';
23
+ import type { AutomationDomainState } from '@/runtime/index.ts';
24
+ import type { AcpDomainState } from '@/runtime/index.ts';
25
+ import type { RoutesDomainState } from '@/runtime/index.ts';
26
+ import type { ControlPlaneDomainState } from '@/runtime/index.ts';
27
+ import type { DeliveryDomainState } from '@/runtime/index.ts';
28
+ import type { WatcherDomainState } from '@/runtime/index.ts';
29
+ import type { SurfaceDomainState } from '@/runtime/index.ts';
30
+ import type { IntegrationDomainState } from '@/runtime/index.ts';
31
+ import type { TelemetryDomainState } from '@/runtime/index.ts';
32
+ import type { GitDomainState } from '@/runtime/index.ts';
33
+ import type { DiscoveryDomainState } from '@/runtime/index.ts';
34
+ import type { IntelligenceDomainState } from '@/runtime/index.ts';
35
35
  import type { UiPerfDomainState } from './domains/ui-perf.ts';
36
36
  // UiPerfDomainState is structurally identical to SDK's SurfacePerfDomainState.
37
37
  // Export as SurfacePerfDomainState alias for SDK compatibility.
38
38
  export type { UiPerfDomainState };
39
39
 
40
- import { createInitialSessionState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/session';
41
- import { createInitialModelState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/model';
42
- import { createInitialConversationState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/conversation';
43
- import { createInitialOverlaysState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/overlays';
40
+ import { createInitialSessionState } from '@/runtime/index.ts';
41
+ import { createInitialModelState } from '@/runtime/index.ts';
42
+ import { createInitialConversationState } from '@/runtime/index.ts';
43
+ import { createInitialOverlaysState } from '@/runtime/index.ts';
44
44
  import { createInitialPanelsState } from './domains/panels.ts';
45
- import { createInitialPermissionsState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/permissions';
46
- import { createInitialTasksState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/tasks';
47
- import { createInitialAgentsState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/agents';
48
- import { createInitialOrchestrationState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/orchestration';
49
- import { createInitialCommunicationState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/communication';
50
- import { createInitialProviderHealthState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
51
- import { createInitialMcpState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/mcp';
52
- import { createInitialPluginsState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/plugins';
53
- import { createInitialDaemonState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/daemon';
54
- import { createInitialAutomationState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/automation';
55
- import { createInitialAcpState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/acp';
56
- import { createInitialRoutesState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/routes';
57
- import { createInitialControlPlaneState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/control-plane';
58
- import { createInitialDeliveryState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/deliveries';
59
- import { createInitialWatcherState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/watchers';
60
- import { createInitialSurfaceState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/surfaces';
61
- import { createInitialIntegrationsState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/integrations';
62
- import { createInitialTelemetryState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/telemetry';
63
- import { createInitialGitState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/git';
64
- import { createInitialDiscoveryState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/discovery';
65
- import { createInitialIntelligenceState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/intelligence';
45
+ import { createInitialPermissionsState } from '@/runtime/index.ts';
46
+ import { createInitialTasksState } from '@/runtime/index.ts';
47
+ import { createInitialAgentsState } from '@/runtime/index.ts';
48
+ import { createInitialOrchestrationState } from '@/runtime/index.ts';
49
+ import { createInitialCommunicationState } from '@/runtime/index.ts';
50
+ import { createInitialProviderHealthState } from '@/runtime/index.ts';
51
+ import { createInitialMcpState } from '@/runtime/index.ts';
52
+ import { createInitialPluginsState } from '@/runtime/index.ts';
53
+ import { createInitialDaemonState } from '@/runtime/index.ts';
54
+ import { createInitialAutomationState } from '@/runtime/index.ts';
55
+ import { createInitialAcpState } from '@/runtime/index.ts';
56
+ import { createInitialRoutesState } from '@/runtime/index.ts';
57
+ import { createInitialControlPlaneState } from '@/runtime/index.ts';
58
+ import { createInitialDeliveryState } from '@/runtime/index.ts';
59
+ import { createInitialWatcherState } from '@/runtime/index.ts';
60
+ import { createInitialSurfaceState } from '@/runtime/index.ts';
61
+ import { createInitialIntegrationsState } from '@/runtime/index.ts';
62
+ import { createInitialTelemetryState } from '@/runtime/index.ts';
63
+ import { createInitialGitState } from '@/runtime/index.ts';
64
+ import { createInitialDiscoveryState } from '@/runtime/index.ts';
65
+ import { createInitialIntelligenceState } from '@/runtime/index.ts';
66
66
  import { createInitialUiPerfState } from './domains/ui-perf.ts';
67
67
 
68
68
  /**
@@ -1,17 +1,15 @@
1
1
  import type { ConfigKey, ConfigManager, PersistedFlagState } from '../config/index.ts';
2
- import { surfaceFeatureGateId } from '@pellux/goodvibes-sdk/platform/runtime/feature-flags/index';
2
+ import { surfaceFeatureGateId } from '@/runtime/index.ts';
3
3
 
4
4
  export const CONTROL_PLANE_FEATURE_FLAG = 'control-plane-gateway';
5
5
  export const ROUTE_BINDING_FEATURE_FLAG = 'route-binding';
6
6
  export const DELIVERY_ENGINE_FEATURE_FLAG = 'delivery-engine';
7
- export const OMNICHANNEL_SURFACE_FEATURE_FLAG = 'omnichannel-surface-adapters';
8
7
  export const SERVICE_MANAGEMENT_FEATURE_FLAG = 'service-management';
9
8
 
10
9
  const CORE_CHANNEL_FEATURE_FLAGS = [
11
10
  CONTROL_PLANE_FEATURE_FLAG,
12
11
  ROUTE_BINDING_FEATURE_FLAG,
13
12
  DELIVERY_ENGINE_FEATURE_FLAG,
14
- OMNICHANNEL_SURFACE_FEATURE_FLAG,
15
13
  ] as const;
16
14
 
17
15
  export type FeatureFlagConfigKey = 'featureFlags' | `featureFlags.${string}`;
@@ -1,5 +1,5 @@
1
1
  import { format } from 'node:util';
2
- import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
2
+ import { logger } from '@pellux/goodvibes-sdk/platform/utils';
3
3
 
4
4
  type WritableStreamLike = {
5
5
  write: {
@@ -16,10 +16,10 @@ export type {
16
16
  ModelPickerEntry,
17
17
  ModelPickerGroup,
18
18
  ModelPickerData,
19
- } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/index';
20
- export type { ProviderStatus as ModelPickerProviderStatus } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/index';
21
- export { ModelPickerDataProvider, createModelPickerData } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/index';
22
- export type { ModelPickerDataProviderOptions } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/index';
19
+ } from '@/runtime/index.ts';
20
+ export type { ProviderStatus as ModelPickerProviderStatus } from '@/runtime/index.ts';
21
+ export { ModelPickerDataProvider, createModelPickerData } from '@/runtime/index.ts';
22
+ export type { ModelPickerDataProviderOptions } from '@/runtime/index.ts';
23
23
 
24
24
  // ── Provider health ───────────────────────────────────────────────────────────
25
25
  export type {
@@ -30,10 +30,10 @@ export type {
30
30
  FallbackChainData,
31
31
  ProviderHealthData,
32
32
  CompositeHealthStatus,
33
- } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/index';
34
- export type { ProviderStatus } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/index';
33
+ } from '@/runtime/index.ts';
34
+ export type { ProviderStatus } from '@/runtime/index.ts';
35
35
  export {
36
36
  ProviderHealthDataProvider,
37
37
  buildFallbackChainData,
38
38
  createProviderHealthData,
39
- } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/index';
39
+ } from '@/runtime/index.ts';
@@ -8,13 +8,13 @@
8
8
  * This class is a data provider only — it contains no rendering logic.
9
9
  * Subscribe to change notifications and call getSnapshot() to render.
10
10
  */
11
- import type { ModelDefinition } from '@pellux/goodvibes-sdk/platform/providers/registry';
12
- import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers/registry';
13
- import type { BenchmarkStore } from '@pellux/goodvibes-sdk/platform/providers/model-benchmarks';
14
- import type { ProviderHealthDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
15
- import type { ModelDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/model';
16
- import { enrichModelEntries, groupEntriesByProvider } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/health-enrichment';
17
- import type { ModelPickerData, ModelPickerEntry } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/types';
11
+ import type { ModelDefinition } from '@pellux/goodvibes-sdk/platform/providers';
12
+ import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers';
13
+ import type { BenchmarkStore } from '@pellux/goodvibes-sdk/platform/providers';
14
+ import type { ProviderHealthDomainState } from '@/runtime/index.ts';
15
+ import type { ModelDomainState } from '@/runtime/index.ts';
16
+ import { enrichModelEntries, groupEntriesByProvider } from '@/runtime/index.ts';
17
+ import type { ModelPickerData, ModelPickerEntry } from '@/runtime/index.ts';
18
18
 
19
19
  /** Options for constructing a ModelPickerDataProvider. */
20
20
  export interface ModelPickerDataProviderOptions {
@@ -5,20 +5,20 @@
5
5
  * telemetry from ProviderHealthDomainState to produce enriched
6
6
  * ModelPickerEntry objects ready for UI consumption.
7
7
  */
8
- import type { ModelDefinition } from '@pellux/goodvibes-sdk/platform/providers/registry';
9
- import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers/registry';
10
- import type { BenchmarkStore } from '@pellux/goodvibes-sdk/platform/providers/model-benchmarks';
11
- import type { ProviderHealthDomainState, ProviderHealthRecord } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
12
- import type { ModelDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/model';
8
+ import type { ModelDefinition } from '@pellux/goodvibes-sdk/platform/providers';
9
+ import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers';
10
+ import type { BenchmarkStore } from '@pellux/goodvibes-sdk/platform/providers';
11
+ import type { ProviderHealthDomainState, ProviderHealthRecord } from '@/runtime/index.ts';
12
+ import type { ModelDomainState } from '@/runtime/index.ts';
13
13
  import { detectFamily, tierToCategoryFilter } from '../../../input/model-picker.ts';
14
- import { getQualityTier, getQualityTierFromScore, compositeScore } from '@pellux/goodvibes-sdk/platform/providers/model-benchmarks';
14
+ import { getQualityTier, getQualityTierFromScore, compositeScore } from '@pellux/goodvibes-sdk/platform/providers';
15
15
  import type {
16
16
  ModelPickerEntry,
17
17
  ModelPickerGroup,
18
18
  ProviderHealthContext,
19
19
  CapabilityFlags,
20
20
  ProviderLatencyStats,
21
- } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/types';
21
+ } from '@/runtime/index.ts';
22
22
 
23
23
  /** Status sort priority (lower = shown first). */
24
24
  const STATUS_ORDER: Record<string, number> = {
@@ -11,20 +11,20 @@ export type {
11
11
  ModelPickerEntry,
12
12
  ModelPickerGroup,
13
13
  ModelPickerData,
14
- } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/types';
14
+ } from '@/runtime/index.ts';
15
15
  // ProviderStatus re-exported from types for convenience
16
- export type { ProviderStatus } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/types';
16
+ export type { ProviderStatus } from '@/runtime/index.ts';
17
17
 
18
- export { ModelPickerDataProvider } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/data-provider';
19
- export type { ModelPickerDataProviderOptions } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/data-provider';
18
+ export { ModelPickerDataProvider } from '@/runtime/index.ts';
19
+ export type { ModelPickerDataProviderOptions } from '@/runtime/index.ts';
20
20
 
21
- import type { ModelDefinition } from '@pellux/goodvibes-sdk/platform/providers/registry';
22
- import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers/registry';
23
- import type { BenchmarkStore } from '@pellux/goodvibes-sdk/platform/providers/model-benchmarks';
24
- import type { ProviderHealthDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
25
- import type { ModelDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/model';
26
- import type { ModelPickerData } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/types';
27
- import { ModelPickerDataProvider } from '@pellux/goodvibes-sdk/platform/runtime/ui/model-picker/data-provider';
21
+ import type { ModelDefinition } from '@pellux/goodvibes-sdk/platform/providers';
22
+ import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers';
23
+ import type { BenchmarkStore } from '@pellux/goodvibes-sdk/platform/providers';
24
+ import type { ProviderHealthDomainState } from '@/runtime/index.ts';
25
+ import type { ModelDomainState } from '@/runtime/index.ts';
26
+ import type { ModelPickerData } from '@/runtime/index.ts';
27
+ import { ModelPickerDataProvider } from '@/runtime/index.ts';
28
28
 
29
29
  /**
30
30
  * Produce a one-shot ModelPickerData snapshot without creating a long-lived provider.
@@ -4,7 +4,7 @@
4
4
  * Purely data-oriented — no rendering logic. These types are produced by
5
5
  * ModelPickerDataProvider and consumed by renderers/components.
6
6
  */
7
- import type { ProviderStatus } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
7
+ import type { ProviderStatus } from '@/runtime/index.ts';
8
8
  import type { ModelFamily, CategoryFilter } from '../../../input/model-picker.ts';
9
9
 
10
10
  // Re-export for convenience
@@ -7,15 +7,15 @@
7
7
  * This class is a data provider only — it contains no rendering logic.
8
8
  * Subscribe to change notifications and call getSnapshot() to render.
9
9
  */
10
- import type { ProviderHealthDomainState, ProviderHealthRecord } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
11
- import type { ModelDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/model';
12
- import { buildFallbackChainData } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/fallback-visualizer';
10
+ import type { ProviderHealthDomainState, ProviderHealthRecord } from '@/runtime/index.ts';
11
+ import type { ModelDomainState } from '@/runtime/index.ts';
12
+ import { buildFallbackChainData } from '@/runtime/index.ts';
13
13
  import type {
14
14
  ProviderHealthData,
15
15
  ProviderHealthEntry,
16
16
  HealthTimeline,
17
17
  HealthTimelinePoint,
18
- } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/types';
18
+ } from '@/runtime/index.ts';
19
19
 
20
20
  /**
21
21
  * Number of timeline points retained per provider.
@@ -5,9 +5,9 @@
5
5
  * provider health records into a structured FallbackChainData snapshot
6
6
  * suitable for UI rendering.
7
7
  */
8
- import type { ModelDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/model';
9
- import type { ProviderHealthDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
10
- import type { FallbackChainData, FallbackChainNode } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/types';
8
+ import type { ModelDomainState } from '@/runtime/index.ts';
9
+ import type { ProviderHealthDomainState } from '@/runtime/index.ts';
10
+ import type { FallbackChainData, FallbackChainNode } from '@/runtime/index.ts';
11
11
 
12
12
  /**
13
13
  * Build a FallbackChainData snapshot from the current model and health state.
@@ -28,6 +28,7 @@ export function buildFallbackChainData(
28
28
  // Node 0 — primary (active model)
29
29
  const primaryRecord = healthState.providers.get(modelState.activeProviderId);
30
30
  nodes.push({
31
+ registryKey: `${modelState.activeProviderId}:${modelState.activeModelId}`,
31
32
  providerId: modelState.activeProviderId,
32
33
  modelId: modelState.activeModelId,
33
34
  displayName: modelState.displayName,
@@ -42,6 +43,7 @@ export function buildFallbackChainData(
42
43
  const entry = modelState.fallbackChain[i];
43
44
  const record = healthState.providers.get(entry.providerId);
44
45
  nodes.push({
46
+ registryKey: `${entry.providerId}:${entry.modelId}`,
45
47
  providerId: entry.providerId,
46
48
  modelId: entry.modelId,
47
49
  displayName: entry.displayName,
@@ -13,15 +13,15 @@ export type {
13
13
  FallbackChainNode,
14
14
  FallbackChainData,
15
15
  ProviderHealthData,
16
- } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/types';
16
+ } from '@/runtime/index.ts';
17
17
 
18
- export { ProviderHealthDataProvider } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/data-provider';
19
- export { buildFallbackChainData } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/fallback-visualizer';
18
+ export { ProviderHealthDataProvider } from '@/runtime/index.ts';
19
+ export { buildFallbackChainData } from '@/runtime/index.ts';
20
20
 
21
- import type { ProviderHealthDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
22
- import type { ModelDomainState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/model';
23
- import { ProviderHealthDataProvider } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/data-provider';
24
- import type { ProviderHealthData } from '@pellux/goodvibes-sdk/platform/runtime/ui/provider-health/types';
21
+ import type { ProviderHealthDomainState } from '@/runtime/index.ts';
22
+ import type { ModelDomainState } from '@/runtime/index.ts';
23
+ import { ProviderHealthDataProvider } from '@/runtime/index.ts';
24
+ import type { ProviderHealthData } from '@/runtime/index.ts';
25
25
 
26
26
  /**
27
27
  * Produce a one-shot ProviderHealthData snapshot without creating a long-lived provider.
@@ -4,7 +4,7 @@
4
4
  * Purely data-oriented — no rendering logic. These types are produced by
5
5
  * ProviderHealthDataProvider and consumed by renderers/components.
6
6
  */
7
- import type { ProviderStatus, CompositeHealthStatus } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/provider-health';
7
+ import type { ProviderStatus, CompositeHealthStatus } from '@/runtime/index.ts';
8
8
 
9
9
  // Re-exports for convenience
10
10
  export type { ProviderStatus, CompositeHealthStatus };
@@ -1 +1 @@
1
- export * from '@pellux/goodvibes-sdk/platform/runtime/ui-events';
1
+ export * from '@/runtime/index.ts';
@@ -1 +1 @@
1
- export * from '@pellux/goodvibes-sdk/platform/runtime/ui-read-model-helpers';
1
+ export * from '@/runtime/index.ts';
@@ -1 +1 @@
1
- export * from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-observability-maintenance';
1
+ export * from '@/runtime/index.ts';
@@ -1 +1 @@
1
- export * from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-observability-options';
1
+ export * from '@/runtime/index.ts';
@@ -1 +1 @@
1
- export * from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-observability-remote';
1
+ export * from '@/runtime/index.ts';
@@ -1 +1 @@
1
- export * from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-observability-security';
1
+ export * from '@/runtime/index.ts';
@@ -1 +1 @@
1
- export * from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-observability-system';
1
+ export * from '@/runtime/index.ts';
@@ -1 +1 @@
1
- export * from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-observability';
1
+ export * from '@/runtime/index.ts';
@@ -1,11 +1,11 @@
1
- export type { UiReadModel } from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-base';
1
+ export type { UiReadModel } from '@/runtime/index.ts';
2
2
  export type {
3
3
  UiCoreReadModels,
4
4
  UiProvidersSnapshot,
5
5
  UiSessionSnapshot,
6
6
  UiAgentsSnapshot,
7
7
  UiTasksSnapshot,
8
- } from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-core';
8
+ } from '@/runtime/index.ts';
9
9
  export type {
10
10
  UiOperationsReadModels,
11
11
  UiAutomationSnapshot,
@@ -14,7 +14,7 @@ export type {
14
14
  UiOrchestrationSnapshot,
15
15
  UiCommunicationSnapshot,
16
16
  UiControlPlaneSnapshot,
17
- } from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-operations';
17
+ } from '@/runtime/index.ts';
18
18
  export type {
19
19
  UiObservabilityReadModels,
20
20
  UiRemoteSnapshot,
@@ -29,21 +29,21 @@ export type {
29
29
  UiSettingsSnapshot,
30
30
  UiContinuitySnapshot,
31
31
  UiWorktreeSnapshot,
32
- } from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-observability';
33
- export type { UiObservabilityReadModelOptions } from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-observability-options';
32
+ } from '@/runtime/index.ts';
33
+ export type { UiObservabilityReadModelOptions } from '@/runtime/index.ts';
34
34
 
35
35
  import type { RuntimeServices } from './services.ts';
36
- import { createCoreReadModels, type UiCoreReadModels } from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-core';
36
+ import { createCoreReadModels, type UiCoreReadModels } from '@/runtime/index.ts';
37
37
  import {
38
38
  createOperationsReadModels,
39
39
  type UiOperationsReadModels,
40
40
  type UiOperationsReadModelOptions,
41
- } from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-operations';
41
+ } from '@/runtime/index.ts';
42
42
  import {
43
43
  createObservabilityReadModels,
44
44
  type UiObservabilityReadModels,
45
45
  type UiObservabilityReadModelOptions,
46
- } from '@pellux/goodvibes-sdk/platform/runtime/ui-read-models-observability';
46
+ } from '@/runtime/index.ts';
47
47
 
48
48
  export type UiReadModelOptions = UiOperationsReadModelOptions & UiObservabilityReadModelOptions;
49
49
 
@@ -1 +1 @@
1
- export * from '@pellux/goodvibes-sdk/platform/runtime/ui-service-queries';
1
+ export * from '@/runtime/index.ts';
@@ -1,14 +1,14 @@
1
1
  import type { RuntimeServices } from './services.ts';
2
- import type { RemoteRunnerRegistry } from '@pellux/goodvibes-sdk/platform/runtime/remote/runner-registry';
3
- import type { RemoteSupervisor } from '@pellux/goodvibes-sdk/platform/runtime/remote/supervisor';
2
+ import type { RemoteRunnerRegistry } from '@/runtime/index.ts';
3
+ import type { RemoteSupervisor } from '@/runtime/index.ts';
4
4
  import { createUiRuntimeEvents, type UiRuntimeEvents } from './ui-events.ts';
5
5
  import { createUiReadModels, type UiReadModels, type UiReadModelOptions } from './ui-read-models.ts';
6
- import type { ForensicsRegistry } from '@pellux/goodvibes-sdk/platform/runtime/forensics/index';
7
- import type { ControlPlaneRecentEvent } from '@pellux/goodvibes-sdk/platform/control-plane/index';
8
- import type { ApprovalBroker } from '@pellux/goodvibes-sdk/platform/control-plane/approval-broker';
9
- import type { SharedSessionBroker } from '@pellux/goodvibes-sdk/platform/control-plane/session-broker';
10
- import type { ShellPathService } from '@pellux/goodvibes-sdk/platform/runtime/shell-paths';
11
- import type { HostServiceStatus } from '@pellux/goodvibes-sdk/platform/runtime/bootstrap-services';
6
+ import type { ForensicsRegistry } from '@/runtime/index.ts';
7
+ import type { ControlPlaneRecentEvent } from '@pellux/goodvibes-sdk/platform/control-plane';
8
+ import type { ApprovalBroker } from '@pellux/goodvibes-sdk/platform/control-plane';
9
+ import type { SharedSessionBroker } from '@pellux/goodvibes-sdk/platform/control-plane';
10
+ import type { ShellPathService } from '@/runtime/index.ts';
11
+ import type { HostServiceStatus } from '@/runtime/index.ts';
12
12
  import type { SecretsManager } from '../config/secrets.ts';
13
13
 
14
14
  export interface UiEnvironmentServices {
@@ -1,6 +1,6 @@
1
1
  // CLI utility script — not imported by the app. console usage is intentional.
2
2
  import { readFileSync } from 'fs';
3
- import { AgentMessageBus } from '@pellux/goodvibes-sdk/platform/agents/message-bus';
3
+ import { AgentMessageBus } from '@pellux/goodvibes-sdk/platform/agents';
4
4
 
5
5
  // Simple script to read messages from a file and broadcast them via the AgentMessageBus.
6
6
  // Expected file format: each line contains an optional index and a message separated by '|', e.g. "1 | Hello".
@@ -1,6 +1,6 @@
1
1
  import type { ConversationManager } from '../core/conversation';
2
- import type { PermissionRequest } from '@pellux/goodvibes-sdk/platform/permissions/prompt';
3
- import type { SessionSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/session-persistence';
2
+ import type { PermissionRequest } from '@pellux/goodvibes-sdk/platform/permissions';
3
+ import type { SessionSnapshot } from '@/runtime/index.ts';
4
4
  import type { SystemMessageRouter } from '../core/system-message-router.ts';
5
5
 
6
6
  export type PendingPermissionState = PermissionRequest & {
@@ -1,14 +1,15 @@
1
1
  import type { ConfigManager } from '../config/index.ts';
2
+ import { getProviderIdFromModel } from '../config/provider-model.ts';
2
3
  import type { ConversationManager } from '../core/conversation';
3
4
  import type { CommandContext } from '../input/command-registry.ts';
4
5
  import type { InputHandler } from '../input/handler.ts';
5
6
  import type { PanelManager } from '../panels/panel-manager.ts';
6
- import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers/registry';
7
- import type { MutableRuntimeState } from '@pellux/goodvibes-sdk/platform/runtime/mutable-runtime-state';
8
- import type { FeatureFlagManager } from '@pellux/goodvibes-sdk/platform/runtime/feature-flags/index';
9
- import type { McpRegistry } from '@pellux/goodvibes-sdk/platform/mcp/registry';
10
- import type { SubscriptionManager } from '@pellux/goodvibes-sdk/platform/config/subscriptions';
11
- import type { SecretsManager } from '@pellux/goodvibes-sdk/platform/config/secrets';
7
+ import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers';
8
+ import type { MutableRuntimeState } from '@/runtime/index.ts';
9
+ import type { FeatureFlagManager } from '@/runtime/index.ts';
10
+ import type { McpRegistry } from '@pellux/goodvibes-sdk/platform/mcp';
11
+ import type { SubscriptionManager } from '@pellux/goodvibes-sdk/platform/config';
12
+ import type { SecretsManager } from '@pellux/goodvibes-sdk/platform/config';
12
13
  import type { ServiceInspectionQuery } from '../runtime/ui-service-queries.ts';
13
14
  import type { ModelPickerTargetInfo } from '../input/model-picker.ts';
14
15
 
@@ -131,7 +132,7 @@ export function wireShellUiOpeners(options: WireShellUiOpenersOptions): void {
131
132
  };
132
133
 
133
134
  const buildModelPickerTargets = (): ModelPickerTargetInfo[] => {
134
- const mainProvider = String(configManager.get('provider.provider') || runtime.provider || '').trim();
135
+ const mainProvider = getProviderIdFromModel(configManager.get('provider.model') || runtime.provider).trim();
135
136
  const mainModel = String(configManager.get('provider.model') || runtime.model || '').trim();
136
137
  const helperProvider = String(configManager.get('helper.globalProvider') ?? '').trim();
137
138
  const helperModel = String(configManager.get('helper.globalModel') ?? '').trim();
@@ -1 +1 @@
1
- export { registerAllTools } from '@pellux/goodvibes-sdk/platform/tools/index';
1
+ export { registerAllTools } from '@pellux/goodvibes-sdk/platform/tools';
@@ -1,5 +1,5 @@
1
- import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
2
- import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils/error-display';
1
+ import { logger } from '@pellux/goodvibes-sdk/platform/utils';
2
+ import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils';
3
3
  import { allowTerminalWrite } from '../runtime/terminal-output-guard.ts';
4
4
 
5
5
  /**
@@ -19,4 +19,4 @@ export function copyToClipboard(text: string) {
19
19
  }
20
20
  }
21
21
 
22
- export { pasteFromClipboard, pasteImageFromClipboard, MIN_IMAGE_BYTES } from '@pellux/goodvibes-sdk/platform/utils/clipboard';
22
+ export { pasteFromClipboard, pasteImageFromClipboard, MIN_IMAGE_BYTES } from '@pellux/goodvibes-sdk/platform/utils';
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.59';
9
+ let _version = '0.19.61';
10
10
  try {
11
11
  const pkg = JSON.parse(readFileSync(join(import.meta.dir, '..', 'package.json'), 'utf-8'));
12
12
  _version = pkg.version ?? _version;