@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
@@ -1,12 +1,12 @@
1
1
  import type { Line } from '../types/grid.ts';
2
2
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
3
- import { listHookPointContracts } from '@pellux/goodvibes-sdk/platform/hooks/index';
4
- import type { HookDispatcher } from '@pellux/goodvibes-sdk/platform/hooks/dispatcher';
5
- import type { HookPointContract } from '@pellux/goodvibes-sdk/platform/hooks/contracts';
6
- import type { HookActivityRecord, HookActivityTracker } from '@pellux/goodvibes-sdk/platform/hooks/activity';
7
- import type { HookAuthoringAction, HookSimulationResult } from '@pellux/goodvibes-sdk/platform/hooks/workbench';
8
- import type { HookChain, HookDefinition } from '@pellux/goodvibes-sdk/platform/hooks/types';
9
- import type { HookWorkbench } from '@pellux/goodvibes-sdk/platform/hooks/workbench';
3
+ import { listHookPointContracts } from '@pellux/goodvibes-sdk/platform/hooks';
4
+ import type { HookDispatcher } from '@pellux/goodvibes-sdk/platform/hooks';
5
+ import type { HookPointContract } from '@pellux/goodvibes-sdk/platform/hooks';
6
+ import type { HookActivityRecord, HookActivityTracker } from '@pellux/goodvibes-sdk/platform/hooks';
7
+ import type { HookAuthoringAction, HookSimulationResult } from '@pellux/goodvibes-sdk/platform/hooks';
8
+ import type { HookChain, HookDefinition } from '@pellux/goodvibes-sdk/platform/hooks';
9
+ import type { HookWorkbench } from '@pellux/goodvibes-sdk/platform/hooks';
10
10
  import { truncateDisplay } from '../utils/terminal-width.ts';
11
11
  import {
12
12
  buildPanelLine,
@@ -1,5 +1,5 @@
1
1
  import type { Line } from '../types/grid.ts';
2
- import type { ForensicsRegistry } from '@pellux/goodvibes-sdk/platform/runtime/forensics/registry';
2
+ import type { ForensicsRegistry } from '@/runtime/index.ts';
3
3
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
4
4
  import {
5
5
  buildBodyText,
@@ -12,7 +12,7 @@ import {
12
12
  DEFAULT_PANEL_PALETTE,
13
13
  type PanelPalette,
14
14
  } from './polish.ts';
15
- import type { FailureReport } from '@pellux/goodvibes-sdk/platform/runtime/forensics/types';
15
+ import type { FailureReport } from '@/runtime/index.ts';
16
16
 
17
17
  const C = {
18
18
  ...DEFAULT_PANEL_PALETTE,
@@ -1,7 +1,7 @@
1
1
  import type { Line } from '../types/grid.ts';
2
2
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
3
3
  import { type ConfirmState, handleConfirmInput, renderConfirmLines } from './confirm-state.ts';
4
- import type { MemoryClass, MemoryRecord, MemoryRegistry, MemoryReviewState } from '@pellux/goodvibes-sdk/platform/state/memory-store';
4
+ import type { MemoryClass, MemoryRecord, MemoryRegistry, MemoryReviewState } from '@pellux/goodvibes-sdk/platform/state';
5
5
  import {
6
6
  buildBodyText,
7
7
  buildEmptyState,
@@ -11,7 +11,7 @@ import {
11
11
  DEFAULT_PANEL_PALETTE,
12
12
  type PanelPalette,
13
13
  } from './polish.ts';
14
- import type { LocalAuthSnapshot } from '@pellux/goodvibes-sdk/platform/security/user-auth';
14
+ import type { LocalAuthSnapshot } from '@pellux/goodvibes-sdk/platform/security';
15
15
  import type { LocalAuthInspectionQuery } from '../runtime/ui-service-queries.ts';
16
16
 
17
17
  const C = {
@@ -16,7 +16,7 @@ import {
16
16
  reviewEcosystemCatalogEntry,
17
17
  type EcosystemCatalogEntry,
18
18
  type EcosystemEntryKind,
19
- } from '@pellux/goodvibes-sdk/platform/runtime/ecosystem/catalog';
19
+ } from '@/runtime/index.ts';
20
20
  import type { UiMarketplaceSnapshot, UiReadModel } from '../runtime/ui-read-models.ts';
21
21
 
22
22
  const C = {
@@ -188,7 +188,7 @@ export class MarketplacePanel extends ScrollableListPanel<MarketplaceRow> {
188
188
  [selectedRow.entry.source.slice(0, Math.max(0, width - 11)), C.value],
189
189
  ]));
190
190
  selectedLines.push(buildKeyValueLine(width, [
191
- { label: 'Compatibility', value: review.compatibility.status, valueColor: review.compatibility.status === 'compatible' ? C.good : C.warn },
191
+ { label: 'Compatibility', value: review.compatibility.status, valueColor: review.compatibility.status === 'supported' ? C.good : C.warn },
192
192
  { label: 'Risk', value: review.riskLevel, valueColor: review.riskLevel === 'low' ? C.good : C.warn },
193
193
  { label: 'State', value: selectedRow.installed ? 'installed' : 'curated', valueColor: statusColor(selectedRow.installed) },
194
194
  ], C));
@@ -1,7 +1,7 @@
1
1
  import type { Line } from '../types/grid.ts';
2
2
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
3
- import type { McpRegistry } from '@pellux/goodvibes-sdk/platform/mcp/registry';
4
- import type { McpDecisionRecord } from '@pellux/goodvibes-sdk/platform/runtime/mcp/types';
3
+ import type { McpRegistry } from '@pellux/goodvibes-sdk/platform/mcp';
4
+ import type { McpDecisionRecord } from '@/runtime/index.ts';
5
5
 
6
6
  type McpServerSecurityEntry = ReturnType<McpRegistry['listServerSecurity']>[number];
7
7
  import { truncateDisplay } from '../utils/terminal-width.ts';
@@ -5,8 +5,8 @@
5
5
  */
6
6
 
7
7
  import type { Line } from '../types/grid.ts';
8
- import type { MemoryRegistry } from '@pellux/goodvibes-sdk/platform/state/memory-store';
9
- import type { MemoryRecord, MemoryClass } from '@pellux/goodvibes-sdk/platform/state/memory-store';
8
+ import type { MemoryRegistry } from '@pellux/goodvibes-sdk/platform/state';
9
+ import type { MemoryRecord, MemoryClass } from '@pellux/goodvibes-sdk/platform/state';
10
10
  import { SearchableListPanel } from './scrollable-list-panel.ts';
11
11
  import {
12
12
  buildBodyText,
@@ -8,7 +8,7 @@
8
8
  * Open via Ctrl+O keybind or `/ops view` command.
9
9
  */
10
10
  import type { Line } from '../types/grid.ts';
11
- import type { OpsEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
11
+ import type { OpsEvent } from '@/runtime/index.ts';
12
12
  import type { UiEventFeed } from '../runtime/ui-events.ts';
13
13
  import type { OpsAuditEntry } from '../runtime/diagnostics/panels/ops.ts';
14
14
  import { OpsPanel } from '../runtime/diagnostics/panels/ops.ts';
@@ -9,8 +9,8 @@
9
9
 
10
10
  import { BasePanel } from './base-panel.ts';
11
11
  import type { Line } from '../types/grid.ts';
12
- import type { PlannerDecision, ExecutionStrategy } from '@pellux/goodvibes-sdk/platform/core/adaptive-planner';
13
- import type { PlannerEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
12
+ import type { PlannerDecision, ExecutionStrategy } from '@pellux/goodvibes-sdk/platform/core';
13
+ import type { PlannerEvent } from '@/runtime/index.ts';
14
14
  import type { UiEventFeed } from '../runtime/ui-events.ts';
15
15
  import type { OpsStrategyQuery } from '../runtime/ui-service-queries.ts';
16
16
  import {
@@ -10,7 +10,7 @@ import type { Line } from '../types/grid.ts';
10
10
  import { createEmptyLine } from '../types/grid.ts';
11
11
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
12
12
  import type { UiOrchestrationSnapshot, UiReadModel } from '../runtime/ui-read-models.ts';
13
- import type { OrchestrationGraphRecord } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/orchestration';
13
+ import type { OrchestrationGraphRecord } from '@/runtime/index.ts';
14
14
  import {
15
15
  buildEmptyState,
16
16
  buildGuidanceLine,
@@ -39,7 +39,7 @@ import {
39
39
  isPanelSearchCommit,
40
40
  isPanelSearchPrintable,
41
41
  } from './search-focus.ts';
42
- import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
42
+ import { logger } from '@pellux/goodvibes-sdk/platform/utils';
43
43
 
44
44
  // ── Colour palette ────────────────────────────────────────────────────────────
45
45
  const C = {
@@ -1,5 +1,5 @@
1
1
  import type { Line } from '../types/grid.ts';
2
- import type { ExecutionPlan, PlanItem, PlanItemStatus } from '@pellux/goodvibes-sdk/platform/core/execution-plan';
2
+ import type { ExecutionPlan, PlanItem, PlanItemStatus } from '@pellux/goodvibes-sdk/platform/core';
3
3
  import { BasePanel } from './base-panel.ts';
4
4
  import type { PlanDashboardQuery } from '../runtime/ui-service-queries.ts';
5
5
  import {
@@ -1,7 +1,7 @@
1
1
  import type { Line } from '../types/grid.ts';
2
2
  import { createEmptyLine } from '../types/grid.ts';
3
3
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
4
- import type { PluginManagerObserver, PluginStatus } from '@pellux/goodvibes-sdk/platform/plugins/manager';
4
+ import type { PluginManagerObserver, PluginStatus } from '@pellux/goodvibes-sdk/platform/plugins';
5
5
  import {
6
6
  buildEmptyState,
7
7
  buildPanelLine,
@@ -1,7 +1,7 @@
1
1
  import type { Line } from '../types/grid.ts';
2
2
  import { createEmptyLine } from '../types/grid.ts';
3
3
  import { BasePanel } from './base-panel.ts';
4
- import type { PolicyRuntimeState } from '@pellux/goodvibes-sdk/platform/runtime/permissions/policy-runtime';
4
+ import type { PolicyRuntimeState } from '@/runtime/index.ts';
5
5
  import type { PolicyPanelSnapshot } from '../runtime/diagnostics/panels/policy.ts';
6
6
  import {
7
7
  buildPanelLine,
@@ -5,7 +5,7 @@ import type {
5
5
  ProjectPlanningService,
6
6
  ProjectPlanningState,
7
7
  ProjectPlanningStatus,
8
- } from '@pellux/goodvibes-sdk/platform/knowledge/index';
8
+ } from '@pellux/goodvibes-sdk/platform/knowledge';
9
9
  import type { Line } from '../types/grid.ts';
10
10
  import { BasePanel } from './base-panel.ts';
11
11
  import {
@@ -1,4 +1,4 @@
1
- import { listBuiltinSubscriptionProviders } from '@pellux/goodvibes-sdk/platform/config/subscription-providers';
1
+ import { listBuiltinSubscriptionProviders } from '@pellux/goodvibes-sdk/platform/config';
2
2
  import type {
3
3
  ProviderAccountInspectionQuery,
4
4
  } from '../runtime/ui-service-queries.ts';
@@ -1,5 +1,5 @@
1
- import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config/manager';
2
- import { evaluateSessionMaintenance } from '@pellux/goodvibes-sdk/platform/runtime/session-maintenance';
1
+ import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
2
+ import { evaluateSessionMaintenance } from '@/runtime/index.ts';
3
3
  import type {
4
4
  UiContinuitySnapshot,
5
5
  UiIntelligenceSnapshot,
@@ -193,7 +193,7 @@ export function buildProviderHealthDomainSummaries(
193
193
  });
194
194
 
195
195
  const worktreeSummary = worktrees.summary;
196
- const worktreeIssues = worktreeSummary.discard + worktreeSummary.cleanupPending + worktreeSummary.paused;
196
+ const worktreeIssues = worktreeSummary.discard + worktreeSummary.pendingCleanup + worktreeSummary.paused;
197
197
  summaries.push({
198
198
  name: 'worktrees',
199
199
  level: worktreeIssues > 0 ? 'warn' : worktreeSummary.total > 0 ? 'good' : 'info',
@@ -203,7 +203,7 @@ export function buildProviderHealthDomainSummaries(
203
203
  next: worktreeIssues > 0 ? '/worktree recover <session|task> <id>' : '/worktree review',
204
204
  details: [
205
205
  worktreeSummary.paused > 0 ? `${worktreeSummary.paused} paused worktree(s)` : '',
206
- worktreeSummary.cleanupPending > 0 ? `${worktreeSummary.cleanupPending} cleanup pending` : '',
206
+ worktreeSummary.pendingCleanup > 0 ? `${worktreeSummary.pendingCleanup} cleanup pending` : '',
207
207
  worktreeSummary.discard > 0 ? `${worktreeSummary.discard} marked discard` : '',
208
208
  ].filter(Boolean),
209
209
  nextSteps: worktreeIssues > 0
@@ -1,8 +1,8 @@
1
- import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config/manager';
1
+ import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
2
2
  import { BasePanel } from './base-panel.ts';
3
3
  import { createEmptyLine, createStyledCell, type Line } from '../types/grid.ts';
4
- import type { ProviderAuthRouteDescriptor } from '@pellux/goodvibes-sdk/platform/providers/interface';
5
- import type { ProviderEvent, TurnEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
4
+ import type { ProviderAuthRouteDescriptor } from '@pellux/goodvibes-sdk/platform/providers';
5
+ import type { ProviderEvent, TurnEvent } from '@/runtime/index.ts';
6
6
  import type { UiEventFeed } from '../runtime/ui-events.ts';
7
7
  import {
8
8
  type ProviderRuntimeInspectionQuery,
@@ -24,7 +24,7 @@ import type {
24
24
  UiSettingsSnapshot,
25
25
  UiWorktreeSnapshot,
26
26
  } from '../runtime/ui-read-models.ts';
27
- import { evaluateSessionMaintenance } from '@pellux/goodvibes-sdk/platform/runtime/session-maintenance';
27
+ import { evaluateSessionMaintenance } from '@/runtime/index.ts';
28
28
  import {
29
29
  buildBodyText,
30
30
  buildDetailBlock,
@@ -1,6 +1,6 @@
1
1
  import { BasePanel } from './base-panel.ts';
2
2
  import type { Line } from '../types/grid.ts';
3
- import type { ProviderEvent, TurnEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
3
+ import type { ProviderEvent, TurnEvent } from '@/runtime/index.ts';
4
4
  import type { UiEventFeed } from '../runtime/ui-events.ts';
5
5
  import type { UiProvidersSnapshot, UiReadModel } from '../runtime/ui-read-models.ts';
6
6
  import {
@@ -6,7 +6,7 @@ import {
6
6
  DEFAULT_PANEL_PALETTE,
7
7
  } from './polish.ts';
8
8
  import { renderQrMatrix, generateQrMatrix } from '../renderer/qr-renderer.ts';
9
- import { encodeConnectionPayload } from '@pellux/goodvibes-sdk/platform/pairing/index';
9
+ import { encodeConnectionPayload } from '@pellux/goodvibes-sdk/platform/pairing';
10
10
 
11
11
  const C = {
12
12
  ...DEFAULT_PANEL_PALETTE,
@@ -1,9 +1,9 @@
1
1
  import type { Line } from '../types/grid.ts';
2
2
  import { createEmptyLine } from '../types/grid.ts';
3
3
  import { BasePanel } from './base-panel.ts';
4
- import { ConfigManager } from '@pellux/goodvibes-sdk/platform/config/manager';
5
- import { buildSandboxReview, listSandboxPresets, listSandboxProfiles } from '@pellux/goodvibes-sdk/platform/runtime/sandbox/manager';
6
- import type { SandboxSessionRegistry } from '@pellux/goodvibes-sdk/platform/runtime/sandbox/session-registry';
4
+ import { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
5
+ import { buildSandboxReview, listSandboxPresets, listSandboxProfiles } from '@/runtime/index.ts';
6
+ import type { SandboxSessionRegistry } from '@/runtime/index.ts';
7
7
  import {
8
8
  buildBodyText,
9
9
  buildEmptyState,
@@ -1,9 +1,9 @@
1
1
  import { BasePanel } from './base-panel.ts';
2
2
  import { type Line } from '../types/grid.ts';
3
- import type { AutomationManager } from '@pellux/goodvibes-sdk/platform/automation/index';
4
- import type { AutomationJob } from '@pellux/goodvibes-sdk/platform/automation/jobs';
5
- import type { AutomationRun } from '@pellux/goodvibes-sdk/platform/automation/runs';
6
- import type { AutomationScheduleDefinition } from '@pellux/goodvibes-sdk/platform/automation/schedules';
3
+ import type { AutomationManager } from '@pellux/goodvibes-sdk/platform/automation';
4
+ import type { AutomationJob } from '@pellux/goodvibes-sdk/platform/automation';
5
+ import type { AutomationRun } from '@pellux/goodvibes-sdk/platform/automation';
6
+ import type { AutomationScheduleDefinition } from '@pellux/goodvibes-sdk/platform/automation';
7
7
  import {
8
8
  buildEmptyState,
9
9
  buildPanelLine,
@@ -1,6 +1,6 @@
1
1
  import type { Line } from '../types/grid.ts';
2
2
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
3
- import type { TokenAuditResult } from '@pellux/goodvibes-sdk/platform/security/token-audit';
3
+ import type { TokenAuditResult } from '@pellux/goodvibes-sdk/platform/security';
4
4
  import type { UiReadModel, UiSecuritySnapshot } from '../runtime/ui-read-models.ts';
5
5
  import {
6
6
  buildEmptyState,
@@ -5,7 +5,7 @@ import {
5
5
  type ServiceConfig,
6
6
  type ServiceInspection,
7
7
  type ServiceConnectionTestResult,
8
- } from '@pellux/goodvibes-sdk/platform/config/service-registry';
8
+ } from '@pellux/goodvibes-sdk/platform/config';
9
9
  import type { ServiceInspectionQuery, SubscriptionAccessQuery } from '../runtime/ui-service-queries.ts';
10
10
  import {
11
11
  buildEmptyState,
@@ -4,8 +4,8 @@
4
4
 
5
5
  import type { Line } from '../types/grid.ts';
6
6
  import { BasePanel } from './base-panel.ts';
7
- import type { SessionInfo } from '@pellux/goodvibes-sdk/platform/sessions/manager';
8
- import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
7
+ import type { SessionInfo } from '@pellux/goodvibes-sdk/platform/sessions';
8
+ import { logger } from '@pellux/goodvibes-sdk/platform/utils';
9
9
  import type { SessionBrowserQuery } from '../runtime/ui-service-queries.ts';
10
10
  import {
11
11
  buildEmptyState,
@@ -18,7 +18,7 @@ import {
18
18
  type PanelWorkspaceSection,
19
19
  } from './polish.ts';
20
20
  import { truncateDisplay } from '../utils/terminal-width.ts';
21
- import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils/error-display';
21
+ import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils';
22
22
  import {
23
23
  getPanelSearchFocusTransition,
24
24
  isPanelSearchBackspace,
@@ -10,7 +10,7 @@ import {
10
10
  DEFAULT_PANEL_PALETTE,
11
11
  type PanelPalette,
12
12
  } from './polish.ts';
13
- import { getSettingsControlPlaneSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/settings/control-plane';
13
+ import { getSettingsControlPlaneSnapshot } from '@/runtime/index.ts';
14
14
  import type { ConfigManager } from '../config/index.ts';
15
15
 
16
16
  const C = {
@@ -6,7 +6,7 @@ import { type ConfirmState, handleConfirmInput, renderConfirmLines } from './con
6
6
  import { getDisplayWidth, truncateDisplay } from '../utils/terminal-width.ts';
7
7
  import { SearchableListPanel } from './scrollable-list-panel.ts';
8
8
  import type { ComponentHealthMonitor } from '../runtime/perf/panel-health-monitor.ts';
9
- import type { ShellPathService } from '@pellux/goodvibes-sdk/platform/runtime/shell-paths';
9
+ import type { ShellPathService } from '@/runtime/index.ts';
10
10
  import {
11
11
  buildPanelLine,
12
12
  buildPanelWorkspace,
@@ -1,8 +1,8 @@
1
1
  import type { Line } from '../types/grid.ts';
2
2
  import { createEmptyLine } from '../types/grid.ts';
3
3
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
4
- import type { ProviderSubscription, PendingSubscriptionLogin } from '@pellux/goodvibes-sdk/platform/config/subscriptions';
5
- import { listBuiltinSubscriptionProviders } from '@pellux/goodvibes-sdk/platform/config/subscription-providers';
4
+ import type { ProviderSubscription, PendingSubscriptionLogin } from '@pellux/goodvibes-sdk/platform/config';
5
+ import { listBuiltinSubscriptionProviders } from '@pellux/goodvibes-sdk/platform/config';
6
6
  import type { ServiceInspectionQuery, SubscriptionAccessQuery } from '../runtime/ui-service-queries.ts';
7
7
  import {
8
8
  buildEmptyState,
@@ -24,7 +24,7 @@ import {
24
24
  type PanelPalette,
25
25
  type PanelWorkspaceSection,
26
26
  } from './polish.ts';
27
- import { ConfigManager } from '@pellux/goodvibes-sdk/platform/config/manager';
27
+ import { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
28
28
 
29
29
  const MAX_MESSAGES = 500;
30
30
 
@@ -1,8 +1,8 @@
1
1
  import type { Line } from '../types/grid.ts';
2
2
  import { createEmptyLine } from '../types/grid.ts';
3
3
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
4
- import type { RuntimeTask, TaskLifecycleState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/tasks';
5
- import type { ManagedWorktreeMeta } from '@pellux/goodvibes-sdk/platform/runtime/worktree/registry';
4
+ import type { RuntimeTask, TaskLifecycleState } from '@/runtime/index.ts';
5
+ import type { ManagedWorktreeMeta } from '@/runtime/index.ts';
6
6
  import type { UiReadModel, UiTasksSnapshot, UiWorktreeSnapshot } from '../runtime/ui-read-models.ts';
7
7
  import {
8
8
  buildDetailBlock,
@@ -118,7 +118,7 @@ interface TaskWorktreeAttachmentReview {
118
118
  readonly paused: number;
119
119
  readonly kept: number;
120
120
  readonly discard: number;
121
- readonly cleanupPending: number;
121
+ readonly pendingCleanup: number;
122
122
  readonly records: readonly ManagedWorktreeMeta[];
123
123
  }
124
124
 
@@ -133,7 +133,7 @@ function reviewTaskWorktreeAttachments(
133
133
  paused: summary.paused + (record.state === 'paused' ? 1 : 0),
134
134
  kept: summary.kept + (record.state === 'kept' ? 1 : 0),
135
135
  discard: summary.discard + (record.state === 'discard' ? 1 : 0),
136
- cleanupPending: summary.cleanupPending + (record.state === 'cleanup-pending' ? 1 : 0),
136
+ pendingCleanup: summary.pendingCleanup + (record.state === 'pending-cleanup' ? 1 : 0),
137
137
  records: [...summary.records, record],
138
138
  }), {
139
139
  total: 0,
@@ -141,7 +141,7 @@ function reviewTaskWorktreeAttachments(
141
141
  paused: 0,
142
142
  kept: 0,
143
143
  discard: 0,
144
- cleanupPending: 0,
144
+ pendingCleanup: 0,
145
145
  records: [],
146
146
  });
147
147
  }
@@ -4,7 +4,7 @@
4
4
 
5
5
  import type { Line } from '../types/grid.ts';
6
6
  import { BasePanel } from './base-panel.ts';
7
- import type { TurnEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
7
+ import type { TurnEvent } from '@/runtime/index.ts';
8
8
  import type { UiEventFeed } from '../runtime/ui-events.ts';
9
9
  import {
10
10
  buildEmptyState,
@@ -1,8 +1,8 @@
1
- import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config/manager';
1
+ import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config';
2
2
  import { BasePanel } from './base-panel.ts';
3
3
  import { createEmptyLine, createStyledCell, type Line } from '../types/grid.ts';
4
4
  import type { Orchestrator } from '../core/orchestrator';
5
- import { evaluateSessionMaintenance } from '@pellux/goodvibes-sdk/platform/runtime/session-maintenance';
5
+ import { evaluateSessionMaintenance } from '@/runtime/index.ts';
6
6
  import type { UiReadModel, UiSessionSnapshot } from '../runtime/ui-read-models.ts';
7
7
  import type { SessionMemoryQuery } from '../runtime/ui-service-queries.ts';
8
8
  import {
@@ -4,7 +4,7 @@
4
4
 
5
5
  import type { Line } from '../types/grid.ts';
6
6
  import { BasePanel } from './base-panel.ts';
7
- import type { ToolEvent, TurnEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
7
+ import type { ToolEvent, TurnEvent } from '@/runtime/index.ts';
8
8
  import type { UiEventFeed } from '../runtime/ui-events.ts';
9
9
  import {
10
10
  buildEmptyState,
@@ -2,7 +2,7 @@ import type { Line } from '../types/grid.ts';
2
2
  import { createEmptyLine } from '../types/grid.ts';
3
3
  import { ScrollableListPanel } from './scrollable-list-panel.ts';
4
4
  import { buildKeyValueLine, buildPanelLine, buildPanelWorkspace, DEFAULT_PANEL_PALETTE, resolvePrimaryScrollableSection, type PanelWorkspaceSection } from './polish.ts';
5
- import { summarizeWorktreeOwnership, type WorktreeRegistry, type WorktreeStatusRecord } from '@pellux/goodvibes-sdk/platform/runtime/worktree/registry';
5
+ import { summarizeWorktreeOwnership, type WorktreeRegistry, type WorktreeStatusRecord } from '@/runtime/index.ts';
6
6
 
7
7
  const C = {
8
8
  ...DEFAULT_PANEL_PALETTE,
@@ -90,7 +90,7 @@ export class WorktreePanel extends ScrollableListPanel<WorktreeStatusRecord> {
90
90
  { label: 'total', value: String(summary.total), valueColor: C.value },
91
91
  { label: 'active', value: String(summary.active), valueColor: C.ok },
92
92
  { label: 'paused', value: String(summary.paused), valueColor: summary.paused > 0 ? C.warn : C.dim },
93
- { label: 'cleanup', value: String(summary.cleanupPending), valueColor: summary.cleanupPending > 0 ? C.warn : C.dim },
93
+ { label: 'cleanup', value: String(summary.pendingCleanup), valueColor: summary.pendingCleanup > 0 ? C.warn : C.dim },
94
94
  ], C),
95
95
  buildKeyValueLine(width, [
96
96
  { label: 'session attached', value: String(summary.sessionAttached), valueColor: summary.sessionAttached > 0 ? C.info : C.dim },
@@ -104,10 +104,10 @@ export class WorktreePanel extends ScrollableListPanel<WorktreeStatusRecord> {
104
104
  title: 'Next Actions',
105
105
  lines: [
106
106
  buildPanelLine(width, [[
107
- summary.cleanupPending > 0 || summary.discard > 0
108
- ? ' Review cleanup-pending and discard-marked worktrees before they drift from orchestrator ownership.'
107
+ summary.pendingCleanup > 0 || summary.discard > 0
108
+ ? ' Review pending-cleanup and discard-marked worktrees before they drift from orchestrator ownership.'
109
109
  : ' Worktree ownership is healthy. Use the task and session links below for restore, merge, or cleanup review.',
110
- summary.cleanupPending > 0 || summary.discard > 0 ? C.warn : C.dim,
110
+ summary.pendingCleanup > 0 || summary.discard > 0 ? C.warn : C.dim,
111
111
  ]]),
112
112
  buildPanelLine(width, [[' /worktree task <task-id> /worktree session <session-id> /worktree inspect <path>', C.info]]),
113
113
  ],
@@ -129,7 +129,7 @@ export class WorktreePanel extends ScrollableListPanel<WorktreeStatusRecord> {
129
129
  buildPanelLine(width, [[
130
130
  selected.state === 'paused'
131
131
  ? ` Next: /worktree resume ${selected.path}`
132
- : selected.state === 'discard' || selected.state === 'cleanup-pending'
132
+ : selected.state === 'discard' || selected.state === 'pending-cleanup'
133
133
  ? ` Next: /worktree cleanup ${selected.path}`
134
134
  : selected.taskId
135
135
  ? ` Next: /worktree task ${selected.taskId}`
@@ -1,9 +1,9 @@
1
1
  import type { Line } from '../types/grid.ts';
2
- import type { WrfcChain, WrfcState, QualityGateResult } from '@pellux/goodvibes-sdk/platform/agents/wrfc-types';
3
- import type { Constraint, ConstraintFinding } from '@pellux/goodvibes-sdk/platform/agents/completion-report';
4
- import type { WrfcController } from '@pellux/goodvibes-sdk/platform/agents/wrfc-controller';
2
+ import type { WrfcChain, WrfcState, QualityGateResult } from '@pellux/goodvibes-sdk/platform/agents';
3
+ import type { Constraint, ConstraintFinding } from '@pellux/goodvibes-sdk/platform/agents';
4
+ import type { WrfcController } from '@pellux/goodvibes-sdk/platform/agents';
5
5
  import { BasePanel } from './base-panel.ts';
6
- import type { WorkflowEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
6
+ import type { WorkflowEvent } from '@/runtime/index.ts';
7
7
  import type { UiEventFeed } from '../runtime/ui-events.ts';
8
8
  import {
9
9
  buildPanelLine,
@@ -1,9 +1,9 @@
1
1
  import { type Line } from '../types/grid.ts';
2
2
  import { UIFactory } from '../renderer/ui-factory.ts';
3
- import type { PermissionCategory, PermissionRequestAnalysis } from '@pellux/goodvibes-sdk/platform/permissions/types';
4
- import { buildPermissionApprovalBrief, getDisplayArg } from '@pellux/goodvibes-sdk/platform/permissions/briefs/build';
3
+ import type { PermissionCategory, PermissionRequestAnalysis } from '@pellux/goodvibes-sdk/platform/permissions';
4
+ import { buildPermissionApprovalBrief, getDisplayArg } from '@pellux/goodvibes-sdk/platform/permissions';
5
5
 
6
- import type { PermissionPromptRequest, PermissionPromptDecision, PermissionRequestHandler, PermissionRequest } from '@pellux/goodvibes-sdk/platform/permissions/prompt';
6
+ import type { PermissionPromptRequest, PermissionPromptDecision, PermissionRequestHandler, PermissionRequest } from '@pellux/goodvibes-sdk/platform/permissions';
7
7
  export type { PermissionPromptRequest, PermissionPromptDecision, PermissionRequestHandler, PermissionRequest };
8
8
 
9
9
  /**
@@ -3,7 +3,7 @@ import type {
3
3
  ProjectPlanningQuestion,
4
4
  ProjectPlanningService,
5
5
  ProjectPlanningState,
6
- } from '@pellux/goodvibes-sdk/platform/knowledge/index';
6
+ } from '@pellux/goodvibes-sdk/platform/knowledge';
7
7
 
8
8
  export interface ProjectPlanningCoordinatorOptions {
9
9
  readonly service: ProjectPlanningService;
@@ -4,7 +4,7 @@ export {
4
4
  discoverPlugins,
5
5
  loadPlugin,
6
6
  unloadPlugin,
7
- } from '@pellux/goodvibes-sdk/platform/plugins/loader';
7
+ } from '@pellux/goodvibes-sdk/platform/plugins';
8
8
  export type {
9
9
  PluginPathOptions,
10
10
  PluginManifest,
@@ -12,4 +12,4 @@ export type {
12
12
  LoadedPlugin,
13
13
  DiscoveredPlugin,
14
14
  PluginLoaderDeps,
15
- } from '@pellux/goodvibes-sdk/platform/plugins/loader';
15
+ } from '@pellux/goodvibes-sdk/platform/plugins';
@@ -1,13 +1,13 @@
1
1
  import { readFile } from 'fs/promises';
2
2
  import { type Line } from '../types/grid.ts';
3
3
  import { ModalFactory } from './modal-factory.ts';
4
- import type { AgentManager } from '@pellux/goodvibes-sdk/platform/tools/agent/index';
5
- import type { AgentMessageBus } from '@pellux/goodvibes-sdk/platform/agents/message-bus';
6
- import type { WrfcController } from '@pellux/goodvibes-sdk/platform/agents/wrfc-controller';
4
+ import type { AgentManager } from '@pellux/goodvibes-sdk/platform/tools';
5
+ import type { AgentMessageBus } from '@pellux/goodvibes-sdk/platform/agents';
6
+ import type { WrfcController } from '@pellux/goodvibes-sdk/platform/agents';
7
7
  import { formatDuration } from './modal-utils.ts';
8
- import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
8
+ import { logger } from '@pellux/goodvibes-sdk/platform/utils';
9
9
  import { getOverlaySurfaceMetrics, getStableOverlayContentRows } from './overlay-viewport.ts';
10
- import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils/error-display';
10
+ import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils';
11
11
 
12
12
  // ─── Constants ────────────────────────────────────────────────────────────────
13
13
 
@@ -10,7 +10,7 @@
10
10
  import { type Line } from '../types/grid.ts';
11
11
  import { ModalFactory } from './modal-factory.ts';
12
12
  import { BookmarkModal } from '../input/bookmark-modal.ts';
13
- import type { BookmarkEntry } from '@pellux/goodvibes-sdk/platform/bookmarks/manager';
13
+ import type { BookmarkEntry } from '@pellux/goodvibes-sdk/platform/bookmarks';
14
14
  import { getOverlayContentBudget, getStableOverlayContentRows } from './overlay-viewport.ts';
15
15
 
16
16
  // ---------------------------------------------------------------------------
@@ -1,6 +1,6 @@
1
- import { GitService } from '@pellux/goodvibes-sdk/platform/git/service';
2
- import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
3
- import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils/error-display';
1
+ import { GitService } from '@pellux/goodvibes-sdk/platform/git';
2
+ import { logger } from '@pellux/goodvibes-sdk/platform/utils';
3
+ import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils';
4
4
 
5
5
  /** Git state shown in the header bar. */
6
6
  export interface GitHeaderInfo {
@@ -10,7 +10,7 @@ import type { SlashCommand } from '../input/command-registry.ts';
10
10
  import type { KeybindingsManager } from '../input/keybindings.ts';
11
11
  import { getOverlaySurfaceMetrics } from './overlay-viewport.ts';
12
12
  import { getVisibleWindow } from './surface-layout.ts';
13
- import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
13
+ import { logger } from '@pellux/goodvibes-sdk/platform/utils';
14
14
 
15
15
  function toModalSections(rows: readonly string[]): import('./modal-factory.ts').ModalSection[] {
16
16
  return rows.map((row) => {
@@ -1,7 +1,7 @@
1
1
  import { type Line } from '../types/grid.ts';
2
2
  import { ModalFactory } from './modal-factory.ts';
3
- import type { ProcessManager } from '@pellux/goodvibes-sdk/platform/tools/shared/process-manager';
4
- import type { AgentManager } from '@pellux/goodvibes-sdk/platform/tools/agent/index';
3
+ import type { ProcessManager } from '@pellux/goodvibes-sdk/platform/tools';
4
+ import type { AgentManager } from '@pellux/goodvibes-sdk/platform/tools';
5
5
  import type { ProcessEntry } from './process-modal.ts';
6
6
  import { getOverlaySurfaceMetrics, getStableOverlayContentRows } from './overlay-viewport.ts';
7
7