@pellux/goodvibes-tui 0.18.8 → 0.18.10

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 (555) hide show
  1. package/CHANGELOG.md +65 -0
  2. package/README.md +1 -1
  3. package/docs/foundation-artifacts/operator-contract.json +1 -1
  4. package/package.json +2 -2
  5. package/src/acp/connection.ts +5 -5
  6. package/src/acp/index.ts +1 -1
  7. package/src/acp/manager.ts +1 -133
  8. package/src/adapters/bluebubbles/index.ts +1 -1
  9. package/src/adapters/discord/index.ts +2 -2
  10. package/src/adapters/github/index.ts +1 -1
  11. package/src/adapters/google-chat/index.ts +1 -1
  12. package/src/adapters/imessage/index.ts +1 -1
  13. package/src/adapters/index.ts +15 -15
  14. package/src/adapters/matrix/index.ts +1 -1
  15. package/src/adapters/mattermost/index.ts +1 -1
  16. package/src/adapters/msteams/index.ts +2 -2
  17. package/src/adapters/ntfy/index.ts +1 -1
  18. package/src/adapters/signal/index.ts +1 -1
  19. package/src/adapters/slack/index.ts +2 -2
  20. package/src/adapters/telegram/index.ts +1 -1
  21. package/src/adapters/types.ts +4 -4
  22. package/src/adapters/webhook/index.ts +1 -1
  23. package/src/adapters/whatsapp/index.ts +1 -1
  24. package/src/agents/message-bus-core.ts +2 -2
  25. package/src/agents/message-bus.ts +2 -2
  26. package/src/agents/orchestrator-prompts.ts +4 -4
  27. package/src/agents/orchestrator-runner.ts +11 -11
  28. package/src/agents/orchestrator.ts +14 -13
  29. package/src/agents/session.ts +1 -1
  30. package/src/agents/worktree.ts +1 -1
  31. package/src/agents/wrfc-config.ts +2 -2
  32. package/src/agents/wrfc-controller.ts +12 -12
  33. package/src/agents/wrfc-gate-runtime.ts +5 -5
  34. package/src/agents/wrfc-reporting.ts +1 -1
  35. package/src/agents/wrfc-runtime-events.ts +3 -3
  36. package/src/agents/wrfc-types.ts +1 -1
  37. package/src/automation/delivery-manager.ts +4 -4
  38. package/src/automation/index.ts +4 -4
  39. package/src/automation/manager-runtime-delivery.ts +1 -1
  40. package/src/automation/manager-runtime-events.ts +3 -3
  41. package/src/automation/manager-runtime-execution.ts +5 -5
  42. package/src/automation/manager-runtime-helpers.ts +2 -2
  43. package/src/automation/manager-runtime-job-mutations.ts +3 -3
  44. package/src/automation/manager-runtime-reconcile.ts +4 -4
  45. package/src/automation/manager-runtime-scheduling.ts +2 -2
  46. package/src/automation/manager-runtime.ts +18 -18
  47. package/src/automation/manager.ts +2 -2
  48. package/src/automation/service.ts +2 -2
  49. package/src/channels/builtin/account-actions.ts +5 -5
  50. package/src/channels/builtin/accounts.ts +2 -2
  51. package/src/channels/builtin/contracts.ts +3 -3
  52. package/src/channels/builtin/plugins.ts +5 -5
  53. package/src/channels/builtin/rendering.ts +4 -4
  54. package/src/channels/builtin/setup-schema.ts +1 -1
  55. package/src/channels/builtin/shared.ts +7 -7
  56. package/src/channels/builtin/surfaces.ts +2 -2
  57. package/src/channels/builtin/targets.ts +3 -3
  58. package/src/channels/builtin-runtime.ts +11 -11
  59. package/src/channels/delivery/shared.ts +2 -2
  60. package/src/channels/delivery/strategies-bridge.ts +3 -3
  61. package/src/channels/delivery/strategies-core.ts +5 -5
  62. package/src/channels/delivery/strategies-enterprise.ts +3 -3
  63. package/src/channels/delivery/types.ts +2 -2
  64. package/src/channels/delivery-router.ts +9 -9
  65. package/src/channels/index.ts +12 -12
  66. package/src/channels/plugin-registry.ts +1 -1
  67. package/src/channels/provider-runtime.ts +3 -3
  68. package/src/channels/reply-pipeline.ts +3 -3
  69. package/src/channels/route-manager.ts +2 -2
  70. package/src/channels/surface-registry.ts +2 -2
  71. package/src/config/helper-model.ts +1 -233
  72. package/src/config/index.ts +3 -3
  73. package/src/config/manager.ts +8 -404
  74. package/src/config/secrets.ts +21 -542
  75. package/src/config/service-registry.ts +1 -329
  76. package/src/config/tool-llm.ts +3 -3
  77. package/src/control-plane/approval-broker.ts +1 -1
  78. package/src/control-plane/gateway.ts +1 -713
  79. package/src/control-plane/index.ts +7 -7
  80. package/src/control-plane/media-contract-schemas.ts +1 -208
  81. package/src/control-plane/method-catalog-admin.ts +1 -136
  82. package/src/control-plane/method-catalog-channels.ts +1 -591
  83. package/src/control-plane/method-catalog-control-automation.ts +1 -475
  84. package/src/control-plane/method-catalog-control-core.ts +1 -594
  85. package/src/control-plane/method-catalog-control.ts +1 -8
  86. package/src/control-plane/method-catalog-events.ts +1 -74
  87. package/src/control-plane/method-catalog-knowledge.ts +1 -531
  88. package/src/control-plane/method-catalog-media.ts +1 -279
  89. package/src/control-plane/method-catalog-runtime.ts +1 -304
  90. package/src/control-plane/method-catalog-shared.ts +1 -223
  91. package/src/control-plane/method-catalog.ts +1 -242
  92. package/src/control-plane/operator-contract-schemas-admin.ts +1 -639
  93. package/src/control-plane/operator-contract-schemas-channels.ts +1 -375
  94. package/src/control-plane/operator-contract-schemas-control.ts +1 -226
  95. package/src/control-plane/operator-contract-schemas-domains.ts +1 -4
  96. package/src/control-plane/operator-contract-schemas-knowledge.ts +1 -582
  97. package/src/control-plane/operator-contract-schemas-media.ts +1 -297
  98. package/src/control-plane/operator-contract-schemas-permissions.ts +1 -100
  99. package/src/control-plane/operator-contract-schemas-remote.ts +1 -38
  100. package/src/control-plane/operator-contract-schemas-runtime.ts +1 -563
  101. package/src/control-plane/operator-contract-schemas-shared.ts +1 -85
  102. package/src/control-plane/operator-contract-schemas-telemetry.ts +1 -349
  103. package/src/control-plane/operator-contract-schemas.ts +1 -6
  104. package/src/control-plane/operator-contract.ts +5 -3
  105. package/src/control-plane/session-broker.ts +1 -1
  106. package/src/core/compaction-sections.ts +5 -5
  107. package/src/core/compaction-types.ts +3 -3
  108. package/src/core/composer-state.ts +1 -1
  109. package/src/core/context-compaction.ts +7 -7
  110. package/src/core/conversation-compaction.ts +4 -4
  111. package/src/core/conversation-diff.ts +1 -1
  112. package/src/core/conversation-rendering.ts +5 -5
  113. package/src/core/conversation-utils.ts +2 -2
  114. package/src/core/conversation.ts +10 -10
  115. package/src/core/event-replay.ts +1 -1
  116. package/src/core/orchestrator-context-runtime.ts +8 -8
  117. package/src/core/orchestrator-follow-up-runtime.ts +2 -2
  118. package/src/core/orchestrator-runtime.ts +4 -4
  119. package/src/core/orchestrator-tool-runtime.ts +7 -7
  120. package/src/core/orchestrator-turn-helpers.ts +7 -7
  121. package/src/core/orchestrator-turn-loop.ts +10 -10
  122. package/src/core/orchestrator.ts +17 -17
  123. package/src/core/plan-command-handler.ts +2 -2
  124. package/src/core/system-message-router.ts +2 -2
  125. package/src/core/transcript-events/classify.ts +1 -1
  126. package/src/core/transcript-events/index.ts +3 -3
  127. package/src/daemon/cli.ts +6 -6
  128. package/src/daemon/control-plane.ts +7 -7
  129. package/src/daemon/facade-composition.ts +16 -15
  130. package/src/daemon/facade.ts +17 -17
  131. package/src/daemon/helpers.ts +2 -2
  132. package/src/daemon/http/router-route-contexts.ts +11 -11
  133. package/src/daemon/http/router.ts +25 -25
  134. package/src/daemon/http-listener.ts +3 -3
  135. package/src/daemon/index.ts +1 -3
  136. package/src/daemon/service-manager.ts +1 -1
  137. package/src/daemon/surface-actions.ts +8 -8
  138. package/src/daemon/surface-delivery.ts +7 -7
  139. package/src/daemon/surface-policy.ts +1 -1
  140. package/src/daemon/transport-events.ts +4 -4
  141. package/src/daemon/types.ts +24 -24
  142. package/src/export/markdown.ts +1 -1
  143. package/src/export/session-export.ts +1 -633
  144. package/src/git/index.ts +1 -1
  145. package/src/git/service.ts +1 -1
  146. package/src/hooks/chain-engine.ts +1 -1
  147. package/src/hooks/dispatcher.ts +4 -4
  148. package/src/hooks/hook-api.ts +1 -1
  149. package/src/hooks/index.ts +8 -8
  150. package/src/hooks/runners/agent.ts +1 -1
  151. package/src/hooks/runners/prompt.ts +1 -1
  152. package/src/hooks/workbench.ts +2 -2
  153. package/src/input/command-registry.ts +24 -17
  154. package/src/input/commands/config.ts +1 -1
  155. package/src/input/commands/control-room-runtime.ts +2 -2
  156. package/src/input/commands/conversation-runtime.ts +1 -1
  157. package/src/input/commands/eval.ts +2 -2
  158. package/src/input/commands/git-runtime.ts +1 -1
  159. package/src/input/commands/guidance-runtime.ts +3 -3
  160. package/src/input/commands/health-runtime.ts +7 -7
  161. package/src/input/commands/incident-runtime.ts +1 -1
  162. package/src/input/commands/integration-runtime.ts +3 -3
  163. package/src/input/commands/local-provider-runtime.ts +1 -1
  164. package/src/input/commands/local-runtime.ts +1 -1
  165. package/src/input/commands/local-setup-review.ts +1 -1
  166. package/src/input/commands/local-setup.ts +1 -1
  167. package/src/input/commands/managed-runtime.ts +2 -2
  168. package/src/input/commands/marketplace-runtime.ts +1 -1
  169. package/src/input/commands/platform-access-runtime.ts +1 -1
  170. package/src/input/commands/policy-dispatch.ts +2 -2
  171. package/src/input/commands/product-runtime.ts +2 -2
  172. package/src/input/commands/profile-sync-runtime.ts +1 -1
  173. package/src/input/commands/provider-accounts-runtime.ts +1 -1
  174. package/src/input/commands/provider.ts +3 -3
  175. package/src/input/commands/quit-shared.ts +1 -1
  176. package/src/input/commands/recall-bundle.ts +1 -1
  177. package/src/input/commands/recall-capture.ts +2 -2
  178. package/src/input/commands/recall-query.ts +2 -2
  179. package/src/input/commands/recall-shared.ts +1 -1
  180. package/src/input/commands/remote-runtime-setup.ts +1 -1
  181. package/src/input/commands/remote-runtime.ts +1 -1
  182. package/src/input/commands/runtime-services.ts +13 -11
  183. package/src/input/commands/schedule-runtime.ts +2 -2
  184. package/src/input/commands/session-content.ts +1 -1
  185. package/src/input/commands/session-workflow.ts +4 -4
  186. package/src/input/commands/settings-sync-runtime.ts +1 -1
  187. package/src/input/commands/share-runtime.ts +9 -4
  188. package/src/input/commands/shell-core.ts +1 -1
  189. package/src/input/commands/skills-runtime.ts +1 -1
  190. package/src/input/commands/subscription-runtime.ts +1 -1
  191. package/src/input/commands/tasks-runtime.ts +1 -1
  192. package/src/input/commands/teamwork-runtime.ts +1 -1
  193. package/src/input/commands/worktree-runtime.ts +1 -1
  194. package/src/input/handler-command-route.ts +1 -1
  195. package/src/input/handler-content-actions.ts +3 -3
  196. package/src/input/handler-feed-routes.ts +2 -2
  197. package/src/input/handler-feed.ts +1 -1
  198. package/src/input/handler-shortcuts.ts +1 -1
  199. package/src/input/handler.ts +1 -1
  200. package/src/input/keybindings.ts +5 -0
  201. package/src/input/model-picker.ts +2 -2
  202. package/src/input/profile-picker-modal.ts +1 -1
  203. package/src/input/session-picker-modal.ts +1 -1
  204. package/src/input/settings-modal.ts +4 -4
  205. package/src/integrations/index.ts +1 -1
  206. package/src/integrations/notifier.ts +1 -1
  207. package/src/integrations/webhooks.ts +1 -177
  208. package/src/knowledge/consolidation.ts +2 -2
  209. package/src/knowledge/graphql.ts +1 -1
  210. package/src/knowledge/index.ts +5 -5
  211. package/src/knowledge/ingest-compile.ts +3 -3
  212. package/src/knowledge/ingest-context.ts +1 -1
  213. package/src/knowledge/ingest-inputs.ts +4 -4
  214. package/src/knowledge/ingest.ts +1 -20
  215. package/src/knowledge/internal.ts +1 -1
  216. package/src/knowledge/knowledge-api.ts +7 -7
  217. package/src/knowledge/lint.ts +3 -3
  218. package/src/knowledge/memory-sync.ts +2 -2
  219. package/src/knowledge/packet.ts +3 -3
  220. package/src/knowledge/scheduling.ts +2 -2
  221. package/src/knowledge/service.ts +10 -10
  222. package/src/main.ts +11 -10
  223. package/src/mcp/index.ts +4 -4
  224. package/src/mcp/mcp-api.ts +1 -1
  225. package/src/mcp/registry.ts +1 -506
  226. package/src/media/builtin-image-understanding.ts +2 -2
  227. package/src/media/builtin-providers.ts +2 -2
  228. package/src/media/index.ts +1 -1
  229. package/src/multimodal/index.ts +1 -1
  230. package/src/multimodal/service.ts +2 -2
  231. package/src/panels/agent-inspector-panel.ts +2 -2
  232. package/src/panels/agent-logs-panel.ts +3 -3
  233. package/src/panels/approval-panel.ts +2 -2
  234. package/src/panels/builtin/operations.ts +3 -1
  235. package/src/panels/builtin/shared.ts +13 -13
  236. package/src/panels/context-visualizer-panel.ts +2 -2
  237. package/src/panels/cost-tracker-panel.ts +2 -2
  238. package/src/panels/debug-panel.ts +3 -3
  239. package/src/panels/git-panel.ts +1 -1
  240. package/src/panels/hooks-panel.ts +4 -4
  241. package/src/panels/knowledge-panel.ts +1 -1
  242. package/src/panels/marketplace-panel.ts +1 -1
  243. package/src/panels/mcp-panel.ts +1 -1
  244. package/src/panels/memory-panel.ts +2 -2
  245. package/src/panels/ops-control-panel.ts +2 -2
  246. package/src/panels/ops-strategy-panel.ts +2 -2
  247. package/src/panels/plugins-panel.ts +1 -1
  248. package/src/panels/policy-panel.ts +1 -1
  249. package/src/panels/provider-health-panel.ts +3 -3
  250. package/src/panels/provider-stats-panel.ts +2 -2
  251. package/src/panels/sandbox-panel.ts +1 -1
  252. package/src/panels/schedule-panel.ts +1 -1
  253. package/src/panels/settings-sync-panel.ts +1 -1
  254. package/src/panels/system-messages-panel.ts +1 -1
  255. package/src/panels/tasks-panel.ts +1 -1
  256. package/src/panels/thinking-panel.ts +2 -2
  257. package/src/panels/token-budget-panel.ts +1 -1
  258. package/src/panels/tool-inspector-panel.ts +2 -2
  259. package/src/panels/worktree-panel.ts +1 -1
  260. package/src/panels/wrfc-panel.ts +4 -4
  261. package/src/permissions/briefs/build.ts +1 -1
  262. package/src/permissions/manager.ts +1 -356
  263. package/src/permissions/prompt.ts +1 -1
  264. package/src/plugins/api.ts +9 -9
  265. package/src/plugins/loader.ts +8 -8
  266. package/src/plugins/manager.ts +5 -5
  267. package/src/providers/amazon-bedrock-mantle.ts +1 -1
  268. package/src/providers/amazon-bedrock.ts +1 -1
  269. package/src/providers/anthropic-compat.ts +4 -4
  270. package/src/providers/anthropic-sdk-provider.ts +5 -5
  271. package/src/providers/anthropic-vertex.ts +1 -1
  272. package/src/providers/anthropic.ts +4 -4
  273. package/src/providers/auto-register.ts +6 -6
  274. package/src/providers/builtin-catalog.ts +2 -2
  275. package/src/providers/builtin-registry.ts +15 -15
  276. package/src/providers/cache-planner.ts +2 -2
  277. package/src/providers/capabilities.ts +1 -601
  278. package/src/providers/custom-loader.ts +6 -6
  279. package/src/providers/discovered-compat.ts +7 -18
  280. package/src/providers/discovered-factory.ts +7 -7
  281. package/src/providers/discovered-traits.ts +1 -1
  282. package/src/providers/gemini.ts +4 -4
  283. package/src/providers/github-copilot.ts +4 -4
  284. package/src/providers/index.ts +1 -47
  285. package/src/providers/interface.ts +1 -1
  286. package/src/providers/llama-cpp.ts +4 -4
  287. package/src/providers/lm-studio-helpers.ts +1 -1
  288. package/src/providers/lm-studio.ts +4 -4
  289. package/src/providers/model-catalog-cache.ts +1 -1
  290. package/src/providers/model-catalog-notifications.ts +1 -1
  291. package/src/providers/model-catalog-synthetic.ts +2 -2
  292. package/src/providers/model-catalog.ts +7 -7
  293. package/src/providers/model-limits.ts +1 -280
  294. package/src/providers/ollama.ts +4 -4
  295. package/src/providers/openai-codex.ts +2 -2
  296. package/src/providers/openai-compat.ts +4 -4
  297. package/src/providers/openai.ts +3 -3
  298. package/src/providers/optimizer.ts +1 -381
  299. package/src/providers/provider-api.ts +1 -553
  300. package/src/providers/registry-helpers.ts +1 -1
  301. package/src/providers/registry-models.ts +2 -2
  302. package/src/providers/registry-types.ts +5 -5
  303. package/src/providers/registry.ts +1 -729
  304. package/src/providers/runtime-metadata.ts +1 -1
  305. package/src/providers/runtime-snapshot.ts +3 -3
  306. package/src/providers/synthetic.ts +3 -3
  307. package/src/providers/tier-prompts.ts +1 -1
  308. package/src/providers/tool-formats.ts +1 -1
  309. package/src/renderer/agent-detail-modal.ts +2 -2
  310. package/src/renderer/block-actions.ts +1 -1
  311. package/src/renderer/context-inspector.ts +1 -1
  312. package/src/renderer/conversation-layout.ts +1 -1
  313. package/src/renderer/conversation-overlays.ts +1 -1
  314. package/src/renderer/git-status.ts +1 -1
  315. package/src/renderer/live-tail-modal.ts +1 -1
  316. package/src/renderer/process-modal.ts +2 -2
  317. package/src/runtime/bootstrap-background.ts +4 -4
  318. package/src/runtime/bootstrap-command-context.ts +23 -23
  319. package/src/runtime/bootstrap-command-parts.ts +23 -23
  320. package/src/runtime/bootstrap-core.ts +12 -10
  321. package/src/runtime/bootstrap-helpers.ts +2 -2
  322. package/src/runtime/bootstrap-hook-bridge.ts +9 -9
  323. package/src/runtime/bootstrap-runtime-events.ts +4 -4
  324. package/src/runtime/bootstrap-services.ts +4 -4
  325. package/src/runtime/bootstrap-shell.ts +11 -11
  326. package/src/runtime/bootstrap.ts +28 -10
  327. package/src/runtime/compaction/index.ts +1 -90
  328. package/src/runtime/compaction/lifecycle.ts +1 -167
  329. package/src/runtime/compaction/manager.ts +11 -11
  330. package/src/runtime/compaction/quality-score.ts +1 -279
  331. package/src/runtime/compaction/resume-repair.ts +1 -183
  332. package/src/runtime/compaction/strategies/autocompact.ts +1 -65
  333. package/src/runtime/compaction/strategies/boundary-commit.ts +1 -106
  334. package/src/runtime/compaction/strategies/collapse.ts +1 -90
  335. package/src/runtime/compaction/strategies/index.ts +1 -23
  336. package/src/runtime/compaction/strategies/microcompact.ts +1 -74
  337. package/src/runtime/compaction/strategies/reactive.ts +1 -89
  338. package/src/runtime/compaction/types.ts +1 -221
  339. package/src/runtime/context.ts +9 -9
  340. package/src/runtime/diagnostics/actions.ts +1 -1
  341. package/src/runtime/diagnostics/index.ts +5 -5
  342. package/src/runtime/diagnostics/panels/agents.ts +2 -2
  343. package/src/runtime/diagnostics/panels/events.ts +2 -2
  344. package/src/runtime/diagnostics/panels/health.ts +2 -2
  345. package/src/runtime/diagnostics/panels/ops.ts +2 -2
  346. package/src/runtime/diagnostics/panels/policy.ts +2 -2
  347. package/src/runtime/diagnostics/panels/tasks.ts +2 -2
  348. package/src/runtime/diagnostics/panels/tool-calls.ts +2 -2
  349. package/src/runtime/diagnostics/provider.ts +1 -1
  350. package/src/runtime/ecosystem/recommendations.ts +1 -1
  351. package/src/runtime/emitters/agents.ts +2 -2
  352. package/src/runtime/emitters/automation.ts +2 -2
  353. package/src/runtime/emitters/communication.ts +2 -2
  354. package/src/runtime/emitters/compaction.ts +2 -2
  355. package/src/runtime/emitters/control-plane.ts +2 -2
  356. package/src/runtime/emitters/deliveries.ts +2 -2
  357. package/src/runtime/emitters/forensics.ts +2 -2
  358. package/src/runtime/emitters/index.ts +27 -27
  359. package/src/runtime/emitters/knowledge.ts +2 -2
  360. package/src/runtime/emitters/mcp.ts +2 -2
  361. package/src/runtime/emitters/ops.ts +2 -2
  362. package/src/runtime/emitters/orchestration.ts +2 -2
  363. package/src/runtime/emitters/permissions.ts +2 -2
  364. package/src/runtime/emitters/planner.ts +2 -2
  365. package/src/runtime/emitters/plugins.ts +2 -2
  366. package/src/runtime/emitters/providers.ts +2 -2
  367. package/src/runtime/emitters/routes.ts +2 -2
  368. package/src/runtime/emitters/security.ts +2 -2
  369. package/src/runtime/emitters/session.ts +2 -2
  370. package/src/runtime/emitters/surfaces.ts +2 -2
  371. package/src/runtime/emitters/tasks.ts +2 -2
  372. package/src/runtime/emitters/tools.ts +2 -2
  373. package/src/runtime/emitters/transport.ts +2 -2
  374. package/src/runtime/emitters/turn.ts +3 -3
  375. package/src/runtime/emitters/ui.ts +2 -2
  376. package/src/runtime/emitters/watchers.ts +2 -2
  377. package/src/runtime/emitters/workflows.ts +3 -3
  378. package/src/runtime/eval/index.ts +3 -3
  379. package/src/runtime/eval/runner.ts +1 -1
  380. package/src/runtime/eval/suites.ts +1 -1
  381. package/src/runtime/events/domain-map.ts +2 -2
  382. package/src/runtime/events/index.ts +1 -194
  383. package/src/runtime/events/turn.ts +1 -60
  384. package/src/runtime/events/workflows.ts +1 -17
  385. package/src/runtime/forensics/collector.ts +4 -4
  386. package/src/runtime/forensics/index.ts +1 -1
  387. package/src/runtime/foundation-clients.ts +14 -14
  388. package/src/runtime/foundation-services.ts +8 -8
  389. package/src/runtime/guidance.ts +3 -3
  390. package/src/runtime/health/effect-handlers.ts +3 -3
  391. package/src/runtime/health/index.ts +4 -4
  392. package/src/runtime/health/wiring.ts +2 -2
  393. package/src/runtime/index.ts +29 -29
  394. package/src/runtime/integration/helpers.ts +12 -12
  395. package/src/runtime/lifecycle.ts +4 -4
  396. package/src/runtime/mcp/index.ts +3 -3
  397. package/src/runtime/mcp/manager.ts +1 -1
  398. package/src/runtime/network/inbound.ts +2 -2
  399. package/src/runtime/network/index.ts +5 -5
  400. package/src/runtime/network/outbound.ts +2 -2
  401. package/src/runtime/network/shared.ts +1 -1
  402. package/src/runtime/operator-client.ts +9 -9
  403. package/src/runtime/ops/control-plane.ts +2 -2
  404. package/src/runtime/ops/index.ts +3 -3
  405. package/src/runtime/ops/playbooks/index.ts +2 -2
  406. package/src/runtime/ops/playbooks/session-unrecoverable.ts +2 -2
  407. package/src/runtime/ops/playbooks/stuck-turn.ts +1 -1
  408. package/src/runtime/ops/runtime-context.ts +1 -1
  409. package/src/runtime/orchestration/spawn-policy.ts +1 -1
  410. package/src/runtime/peer-client.ts +3 -3
  411. package/src/runtime/perf/index.ts +1 -1
  412. package/src/runtime/perf/slo-collector.ts +1 -1
  413. package/src/runtime/permissions/index.ts +5 -5
  414. package/src/runtime/permissions/policy-runtime.ts +1 -175
  415. package/src/runtime/permissions/rule-suggestions.ts +1 -1
  416. package/src/runtime/plugins/hot-reload.ts +4 -4
  417. package/src/runtime/plugins/index.ts +13 -13
  418. package/src/runtime/plugins/lifecycle.ts +1 -1
  419. package/src/runtime/plugins/manager.ts +10 -10
  420. package/src/runtime/plugins/manifest.ts +2 -2
  421. package/src/runtime/plugins/quarantine.ts +2 -2
  422. package/src/runtime/plugins/trust.ts +2 -2
  423. package/src/runtime/plugins/types.ts +1 -1
  424. package/src/runtime/provider-accounts/registry.ts +2 -2
  425. package/src/runtime/remote/distributed-runtime-contract-schemas.ts +3 -3
  426. package/src/runtime/remote/index.ts +3 -3
  427. package/src/runtime/remote/runner-registry.ts +2 -2
  428. package/src/runtime/remote/supervisor.ts +1 -1
  429. package/src/runtime/runtime-hook-api.ts +1 -1
  430. package/src/runtime/runtime-knowledge-api.ts +1 -1
  431. package/src/runtime/runtime-mcp-api.ts +1 -1
  432. package/src/runtime/runtime-ops-api.ts +2 -2
  433. package/src/runtime/runtime-provider-api.ts +1 -1
  434. package/src/runtime/services.ts +35 -32
  435. package/src/runtime/session-maintenance.ts +1 -1
  436. package/src/runtime/session-persistence.ts +2 -2
  437. package/src/runtime/session-return-context.ts +3 -3
  438. package/src/runtime/settings/control-plane-store.ts +1 -1
  439. package/src/runtime/settings/control-plane.ts +2 -2
  440. package/src/runtime/shell-command-extensions.ts +7 -7
  441. package/src/runtime/shell-command-ops.ts +6 -6
  442. package/src/runtime/shell-command-platform.ts +1 -1
  443. package/src/runtime/shell-command-services.ts +17 -17
  444. package/src/runtime/shell-command-workspace.ts +1 -1
  445. package/src/runtime/store/domains/conversation.ts +1 -1
  446. package/src/runtime/store/domains/index.ts +4 -4
  447. package/src/runtime/store/domains/permissions.ts +1 -1
  448. package/src/runtime/store/helpers/reducers/conversation.ts +3 -3
  449. package/src/runtime/store/helpers/reducers/lifecycle.ts +3 -3
  450. package/src/runtime/store/helpers/reducers/shared.ts +2 -2
  451. package/src/runtime/store/helpers/reducers/sync.ts +1 -1
  452. package/src/runtime/store/helpers/reducers.ts +4 -4
  453. package/src/runtime/store/index.ts +4 -4
  454. package/src/runtime/store/selectors/index.ts +2 -2
  455. package/src/runtime/store/state.ts +4 -4
  456. package/src/runtime/tasks/adapters/acp-adapter.ts +1 -1
  457. package/src/runtime/tasks/adapters/index.ts +6 -6
  458. package/src/runtime/tasks/index.ts +3 -3
  459. package/src/runtime/tasks/manager.ts +3 -3
  460. package/src/runtime/telemetry/api-helpers.ts +2 -2
  461. package/src/runtime/telemetry/api.ts +2 -2
  462. package/src/runtime/telemetry/index.ts +5 -5
  463. package/src/runtime/telemetry/instrumentation/domain-bridge-agent-session.ts +1 -1
  464. package/src/runtime/telemetry/instrumentation/domain-bridge-plugin-mcp.ts +1 -1
  465. package/src/runtime/telemetry/instrumentation/domain-bridge-shared.ts +1 -1
  466. package/src/runtime/telemetry/instrumentation/domain-bridge-transport-task.ts +1 -1
  467. package/src/runtime/telemetry/instrumentation/domain-bridge.ts +5 -5
  468. package/src/runtime/telemetry/instrumentation/index.ts +3 -3
  469. package/src/runtime/tools/context.ts +3 -3
  470. package/src/runtime/tools/index.ts +4 -4
  471. package/src/runtime/tools/phased-executor.ts +3 -3
  472. package/src/runtime/tools/phases/budget.ts +1 -1
  473. package/src/runtime/tools/phases/execute.ts +1 -1
  474. package/src/runtime/tools/phases/index.ts +7 -7
  475. package/src/runtime/tools/phases/map-output.ts +1 -1
  476. package/src/runtime/tools/phases/permission.ts +2 -2
  477. package/src/runtime/tools/phases/posthook.ts +1 -1
  478. package/src/runtime/tools/phases/prehook.ts +1 -1
  479. package/src/runtime/tools/phases/validate.ts +1 -1
  480. package/src/runtime/transports/direct.ts +4 -4
  481. package/src/runtime/transports/http-helpers.ts +3 -3
  482. package/src/runtime/transports/http-types.ts +6 -6
  483. package/src/runtime/transports/http.ts +8 -8
  484. package/src/runtime/transports/realtime.ts +4 -4
  485. package/src/runtime/transports/remote-events.ts +1 -1
  486. package/src/runtime/transports/shared.ts +2 -2
  487. package/src/runtime/transports/ui-runtime-events.ts +2 -2
  488. package/src/runtime/ui/index.ts +7 -7
  489. package/src/runtime/ui/model-picker/data-provider.ts +4 -4
  490. package/src/runtime/ui/model-picker/health-enrichment.ts +3 -3
  491. package/src/runtime/ui/model-picker/index.ts +8 -8
  492. package/src/runtime/ui/provider-health/data-provider.ts +2 -2
  493. package/src/runtime/ui/provider-health/fallback-visualizer.ts +1 -1
  494. package/src/runtime/ui/provider-health/index.ts +5 -5
  495. package/src/runtime/ui-events.ts +1 -1
  496. package/src/runtime/ui-read-models-core.ts +2 -2
  497. package/src/runtime/ui-read-models-observability-maintenance.ts +4 -4
  498. package/src/runtime/ui-read-models-observability-options.ts +1 -1
  499. package/src/runtime/ui-read-models-observability-remote.ts +2 -2
  500. package/src/runtime/ui-read-models-observability-security.ts +3 -3
  501. package/src/runtime/ui-read-models-observability-system.ts +6 -6
  502. package/src/runtime/ui-read-models-observability.ts +10 -10
  503. package/src/runtime/ui-read-models-operations.ts +2 -2
  504. package/src/runtime/ui-read-models.ts +7 -7
  505. package/src/runtime/ui-service-queries.ts +2 -2
  506. package/src/runtime/ui-services.ts +7 -7
  507. package/src/runtime/worktree/registry.ts +1 -1
  508. package/src/scripts/process-messages.ts +1 -1
  509. package/src/sessions/manager.ts +9 -383
  510. package/src/shell/blocking-input.ts +3 -3
  511. package/src/shell/ui-openers.ts +3 -3
  512. package/src/state/file-watcher.ts +1 -1
  513. package/src/state/index.ts +10 -10
  514. package/src/state/knowledge-injection.ts +2 -2
  515. package/src/state/memory-embedding-http.ts +2 -2
  516. package/src/state/memory-embeddings.ts +1 -1
  517. package/src/state/memory-ingest.ts +3 -3
  518. package/src/state/memory-registry.ts +3 -3
  519. package/src/state/memory-store-helpers.ts +1 -1
  520. package/src/state/memory-store.ts +4 -4
  521. package/src/state/memory-vector-store.ts +3 -3
  522. package/src/tools/agent/index.ts +7 -7
  523. package/src/tools/agent/manager.ts +8 -8
  524. package/src/tools/analyze/git-modes.ts +2 -2
  525. package/src/tools/analyze/index.ts +2 -2
  526. package/src/tools/channel/agent-tools.ts +1 -1
  527. package/src/tools/channel/index.ts +2 -2
  528. package/src/tools/edit/core.ts +4 -4
  529. package/src/tools/edit/index.ts +2 -2
  530. package/src/tools/edit/phased.ts +2 -2
  531. package/src/tools/fetch/index.ts +2 -2
  532. package/src/tools/fetch/phased.ts +1 -1
  533. package/src/tools/index.ts +21 -21
  534. package/src/tools/mcp/index.ts +1 -1
  535. package/src/tools/remote-trigger/index.ts +1 -1
  536. package/src/tools/shared/auto-heal.ts +2 -2
  537. package/src/tools/state/index.ts +1 -1
  538. package/src/tools/web-search/index.ts +1 -1
  539. package/src/tools/write/index.ts +3 -3
  540. package/src/tools/write/phased.ts +1 -1
  541. package/src/version.ts +1 -1
  542. package/src/watchers/index.ts +2 -2
  543. package/src/watchers/registry.ts +2 -2
  544. package/src/web-search/index.ts +10 -10
  545. package/src/web-search/provider-registry.ts +8 -8
  546. package/src/web-search/providers/brave.ts +1 -1
  547. package/src/web-search/providers/duckduckgo.ts +1 -1
  548. package/src/web-search/providers/exa.ts +1 -1
  549. package/src/web-search/providers/firecrawl.ts +1 -1
  550. package/src/web-search/providers/perplexity.ts +1 -1
  551. package/src/web-search/providers/searxng.ts +1 -1
  552. package/src/web-search/providers/shared.ts +1 -1
  553. package/src/web-search/providers/tavily.ts +1 -1
  554. package/src/web-search/service.ts +2 -2
  555. package/src/runtime/ecosystem/catalog.ts +0 -606
@@ -3,21 +3,21 @@ import type { ConfigManager } from '../../config/index.ts';
3
3
  import type { ServiceRegistry } from '../../config/service-registry.ts';
4
4
  import type { SubscriptionManager } from '@pellux/goodvibes-sdk/platform/config/subscriptions';
5
5
  import type { SecretsManager } from '../../config/secrets.ts';
6
- import type { AutomationManager } from '../../automation/index.ts';
7
- import type { ApprovalBroker, SharedSessionBroker } from '../../control-plane/index.ts';
6
+ import type { AutomationManager } from '@pellux/goodvibes-sdk/platform/automation/index';
7
+ import type { ApprovalBroker, SharedSessionBroker } from '@pellux/goodvibes-sdk/platform/control-plane/index';
8
8
  import type { DistributedRuntimeManager } from '@pellux/goodvibes-sdk/platform/runtime/remote/distributed-runtime';
9
- import type { RemoteRunnerRegistry } from '../remote/runner-registry.ts';
10
- import type { RemoteSupervisor } from '../remote/supervisor.ts';
11
- import type { ProviderRegistry } from '../../providers/registry.ts';
9
+ import type { RemoteRunnerRegistry } from '@pellux/goodvibes-sdk/platform/runtime/remote/runner-registry';
10
+ import type { RemoteSupervisor } from '@pellux/goodvibes-sdk/platform/runtime/remote/supervisor';
11
+ import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers/registry';
12
12
  import type { RuntimeStore } from '../store/index.ts';
13
- import type { RuntimeEventBus, RuntimeEventDomain, RuntimeEventEnvelope, AnyRuntimeEvent } from '../events/index.ts';
14
- import { buildProviderAccountSnapshot } from '../provider-accounts/registry.ts';
13
+ import type { RuntimeEventBus, RuntimeEventDomain, RuntimeEventEnvelope, AnyRuntimeEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
14
+ import { buildProviderAccountSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/provider-accounts/registry';
15
15
  import type { UserAuthManager } from '@pellux/goodvibes-sdk/platform/security/user-auth';
16
- import { getSettingsControlPlaneSnapshot } from '../settings/control-plane.ts';
17
- import { checkRecoveryFile, readLastSessionPointer, type RecoveryFileInfo } from '../session-persistence.ts';
18
- import { listPersistedWorktreeMeta, summarizeWorktreeOwnership, type ManagedWorktreeMeta, type WorktreeOwnershipSummary } from '../worktree/registry.ts';
19
- import { inspectInboundTls, inspectOutboundTls } from '../network/index.ts';
20
- import type { ManagedRollbackRecord, SettingsConflictRecord, StagedManagedBundle } from '../settings/control-plane-store.ts';
16
+ import { getSettingsControlPlaneSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/settings/control-plane';
17
+ import { checkRecoveryFile, readLastSessionPointer, type RecoveryFileInfo } from '@pellux/goodvibes-sdk/platform/runtime/session-persistence';
18
+ import { listPersistedWorktreeMeta, summarizeWorktreeOwnership, type ManagedWorktreeMeta, type WorktreeOwnershipSummary } from '@pellux/goodvibes-sdk/platform/runtime/worktree/registry';
19
+ import { inspectInboundTls, inspectOutboundTls } from '@pellux/goodvibes-sdk/platform/runtime/network/index';
20
+ import type { ManagedRollbackRecord, SettingsConflictRecord, StagedManagedBundle } from '@pellux/goodvibes-sdk/platform/runtime/settings/control-plane-store';
21
21
 
22
22
  export interface IntegrationHelpersContext {
23
23
  readonly workingDirectory: string;
@@ -4,13 +4,13 @@
4
4
  * Handles ordered teardown: persist session, fire lifecycle hooks,
5
5
  * stop background managers. Terminal teardown remains in main.ts.
6
6
  */
7
- import type { HookDispatcher } from '../hooks/index.ts';
7
+ import type { HookDispatcher } from '@pellux/goodvibes-sdk/platform/hooks/index';
8
8
  import type { HookPhase, HookCategory, HookEventPath } from '@pellux/goodvibes-sdk/platform/hooks/types';
9
9
  import type { ScheduleManager } from '@pellux/goodvibes-sdk/platform/tools/workflow/index';
10
- import type { ProviderRegistry } from '../providers/registry.ts';
10
+ import type { ProviderRegistry } from '@pellux/goodvibes-sdk/platform/providers/registry';
11
11
  import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
12
- export { saveSession } from './session-persistence.ts';
13
- import { saveSession, type SessionPersistenceOptions, type SessionSnapshot } from './session-persistence.ts';
12
+ export { saveSession } from '@pellux/goodvibes-sdk/platform/runtime/session-persistence';
13
+ import { saveSession, type SessionPersistenceOptions, type SessionSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/session-persistence';
14
14
  import type { CrossSessionTaskRegistry } from '@pellux/goodvibes-sdk/platform/sessions/orchestration/index';
15
15
  import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils/error-display';
16
16
 
@@ -12,7 +12,7 @@
12
12
  * - Manager from manager.ts
13
13
  */
14
14
 
15
- export { McpLifecycleManager, type McpEventHandler, type McpLifecycleManagerOptions } from './manager.ts';
15
+ export { McpLifecycleManager, type McpEventHandler, type McpLifecycleManagerOptions } from '@pellux/goodvibes-sdk/platform/runtime/mcp/manager';
16
16
  export { McpPermissionManager, buildMcpAttackPathReview } from '@pellux/goodvibes-sdk/platform/runtime/mcp/permissions';
17
17
  export { McpSchemaFreshnessTracker } from '@pellux/goodvibes-sdk/platform/runtime/mcp/schema-freshness';
18
18
  export {
@@ -50,8 +50,8 @@ export type {
50
50
  } from '@pellux/goodvibes-sdk/platform/runtime/mcp/types';
51
51
  export { DEFAULT_RECONNECT_CONFIG } from '@pellux/goodvibes-sdk/platform/runtime/mcp/types';
52
52
 
53
- import { McpLifecycleManager } from './manager.ts';
54
- import type { McpLifecycleManagerOptions } from './manager.ts';
53
+ import { McpLifecycleManager } from '@pellux/goodvibes-sdk/platform/runtime/mcp/manager';
54
+ import type { McpLifecycleManagerOptions } from '@pellux/goodvibes-sdk/platform/runtime/mcp/manager';
55
55
 
56
56
  /**
57
57
  * Factory function for creating a `McpLifecycleManager`.
@@ -14,7 +14,7 @@
14
14
  * - Delegate schema freshness to McpSchemaFreshnessTracker
15
15
  */
16
16
  import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
17
- import { McpClient } from '../../mcp/client.ts';
17
+ import { McpClient } from '@pellux/goodvibes-sdk/platform/mcp/client';
18
18
  import type { McpServerConfig } from '@pellux/goodvibes-sdk/platform/mcp/config';
19
19
  import type { McpEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/mcp';
20
20
  import {
@@ -1,6 +1,6 @@
1
1
  import { existsSync } from 'node:fs';
2
- import type { ConfigManager } from '../../config/manager.ts';
3
- import { getDefaultInboundCertPaths, inspectPrivateKeyPermissions, resolvePathFromGoodVibesRoot } from './shared.ts';
2
+ import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config/manager';
3
+ import { getDefaultInboundCertPaths, inspectPrivateKeyPermissions, resolvePathFromGoodVibesRoot } from '@pellux/goodvibes-sdk/platform/runtime/network/shared';
4
4
 
5
5
  export type InboundTlsMode = 'off' | 'proxy' | 'direct';
6
6
  export type InboundServerSurface = 'controlPlane' | 'httpListener';
@@ -3,21 +3,21 @@ export type {
3
3
  InboundTlsMode,
4
4
  InboundTlsSnapshot,
5
5
  ResolvedInboundTlsContext,
6
- } from './inbound.ts';
6
+ } from '@pellux/goodvibes-sdk/platform/runtime/network/inbound';
7
7
  export {
8
8
  inspectInboundTls,
9
9
  resolveInboundTlsContext,
10
- } from './inbound.ts';
10
+ } from '@pellux/goodvibes-sdk/platform/runtime/network/inbound';
11
11
  export type {
12
12
  OutboundTlsSnapshot,
13
13
  OutboundTrustMode,
14
- } from './outbound.ts';
14
+ } from '@pellux/goodvibes-sdk/platform/runtime/network/outbound';
15
15
  export {
16
16
  applyOutboundTlsToFetchInit,
17
17
  createNetworkFetch,
18
18
  GlobalNetworkTransportInstaller,
19
19
  inspectOutboundTls,
20
- } from './outbound.ts';
20
+ } from '@pellux/goodvibes-sdk/platform/runtime/network/outbound';
21
21
  export {
22
22
  extractForwardedClientIp,
23
23
  getDefaultCertDirectory,
@@ -27,4 +27,4 @@ export {
27
27
  isLocalHostname,
28
28
  readPemEntriesFromDirectory,
29
29
  resolvePathFromGoodVibesRoot,
30
- } from './shared.ts';
30
+ } from '@pellux/goodvibes-sdk/platform/runtime/network/shared';
@@ -1,8 +1,8 @@
1
1
  import { existsSync, readFileSync } from 'node:fs';
2
2
  import { getCACertificates } from 'node:tls';
3
- import type { ConfigManager } from '../../config/manager.ts';
3
+ import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config/manager';
4
4
  import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
5
- import { isLocalHostname, readPemEntriesFromDirectory, resolvePathFromGoodVibesRoot } from './shared.ts';
5
+ import { isLocalHostname, readPemEntriesFromDirectory, resolvePathFromGoodVibesRoot } from '@pellux/goodvibes-sdk/platform/runtime/network/shared';
6
6
  import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils/error-display';
7
7
 
8
8
  export type OutboundTrustMode = 'bundled' | 'bundled+custom' | 'custom';
@@ -1,6 +1,6 @@
1
1
  import { existsSync, readdirSync, statSync } from 'node:fs';
2
2
  import { basename, dirname, extname, isAbsolute, join, resolve } from 'node:path';
3
- import type { ConfigManager } from '../../config/manager.ts';
3
+ import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config/manager';
4
4
 
5
5
  const PEM_EXTENSIONS = new Set(['.pem', '.crt', '.cer']);
6
6
 
@@ -7,17 +7,17 @@ import type {
7
7
  SharedSessionSubmission,
8
8
  SteerSharedSessionMessageInput,
9
9
  SubmitSharedSessionMessageInput,
10
- } from '../control-plane/index.ts';
11
- import type { RequestSharedApprovalInput } from '../control-plane/index.ts';
12
- import type { PermissionPromptDecision } from '../permissions/prompt.ts';
13
- import { buildAuthInspectionSnapshot, type AuthInspectionSnapshot } from './auth/inspection.ts';
14
- import { buildProviderAccountSnapshot, type ProviderAccountSnapshot } from './provider-accounts/registry.ts';
15
- import type { ProviderRuntimeSnapshot, ProviderUsageSnapshot } from '../providers/runtime-snapshot.ts';
16
- import { getProviderRuntimeSnapshot, getProviderUsageSnapshot, listProviderRuntimeSnapshots } from '../providers/runtime-snapshot.ts';
17
- import type { OperatorClientServices } from './foundation-services.ts';
10
+ } from '@pellux/goodvibes-sdk/platform/control-plane/index';
11
+ import type { RequestSharedApprovalInput } from '@pellux/goodvibes-sdk/platform/control-plane/index';
12
+ import type { PermissionPromptDecision } from '@pellux/goodvibes-sdk/platform/permissions/prompt';
13
+ import { buildAuthInspectionSnapshot, type AuthInspectionSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/auth/inspection';
14
+ import { buildProviderAccountSnapshot, type ProviderAccountSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/provider-accounts/registry';
15
+ import type { ProviderRuntimeSnapshot, ProviderUsageSnapshot } from '@pellux/goodvibes-sdk/platform/providers/runtime-snapshot';
16
+ import { getProviderRuntimeSnapshot, getProviderUsageSnapshot, listProviderRuntimeSnapshots } from '@pellux/goodvibes-sdk/platform/providers/runtime-snapshot';
17
+ import type { OperatorClientServices } from '@pellux/goodvibes-sdk/platform/runtime/foundation-services';
18
18
  import type { RuntimeTask } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/tasks';
19
19
  import type { UiControlPlaneSnapshot, UiSessionSnapshot, UiTasksSnapshot } from './ui-read-models.ts';
20
- import type { UiRuntimeEvents } from './ui-events.ts';
20
+ import type { UiRuntimeEvents } from '@pellux/goodvibes-sdk/platform/runtime/ui-events';
21
21
  import type { ShellPathService } from '@pellux/goodvibes-sdk/platform/runtime/shell-paths';
22
22
 
23
23
  export interface OperatorControlPlaneSnapshot extends UiControlPlaneSnapshot {}
@@ -10,7 +10,7 @@
10
10
  */
11
11
  import { randomUUID } from 'node:crypto';
12
12
  import type { TaskManager } from '@pellux/goodvibes-sdk/platform/runtime/tasks/types';
13
- import type { RuntimeEventBus } from '../events/index.ts';
13
+ import type { RuntimeEventBus } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
14
14
  import { createDomainDispatch } from '../store/index.ts';
15
15
  import type { RuntimeStore, DomainDispatch } from '../store/index.ts';
16
16
  import type { TaskLifecycleState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/tasks';
@@ -22,7 +22,7 @@ import {
22
22
  emitOpsTaskResumed,
23
23
  emitOpsTaskRetried,
24
24
  emitOpsAgentCancelled,
25
- } from '../emitters/ops.ts';
25
+ } from '@pellux/goodvibes-sdk/platform/runtime/emitters/ops';
26
26
  import type { OpsInterventionReason } from '@pellux/goodvibes-sdk/platform/runtime/events/ops';
27
27
 
28
28
  // ---------------------------------------------------------------------------
@@ -7,7 +7,7 @@
7
7
  *
8
8
  * @example
9
9
  * ```ts
10
- * import { getPlaybookRegistry, getPlaybook } from './index.ts';
10
+ * import { getPlaybookRegistry, getPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/index';
11
11
  *
12
12
  * const registry = getPlaybookRegistry();
13
13
  * const playbook = getPlaybook('stuck-turn');
@@ -41,7 +41,7 @@ export {
41
41
  exportRecoveryPlaybook,
42
42
  sessionUnrecoverablePlaybook,
43
43
  compactionFailurePlaybook,
44
- } from './playbooks/index.ts';
44
+ } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/index';
45
45
 
46
46
  import type { Playbook, PlaybookRegistry, PlaybookRegistryEntry } from '@pellux/goodvibes-sdk/platform/runtime/ops/types';
47
47
  import {
@@ -52,7 +52,7 @@ import {
52
52
  exportRecoveryPlaybook,
53
53
  sessionUnrecoverablePlaybook,
54
54
  compactionFailurePlaybook,
55
- } from './playbooks/index.ts';
55
+ } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/index';
56
56
 
57
57
  /** All registered playbooks in definition order. */
58
58
  const ALL_PLAYBOOKS: readonly Playbook[] = [
@@ -1,10 +1,10 @@
1
1
  /**
2
2
  * Barrel export for operational playbooks.
3
3
  */
4
- export { stuckTurnPlaybook } from './stuck-turn.ts';
4
+ export { stuckTurnPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/stuck-turn';
5
5
  export { reconnectFailurePlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/reconnect-failure';
6
6
  export { permissionDeadlockPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/permission-deadlock';
7
7
  export { pluginDegradationPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/plugin-degradation';
8
8
  export { exportRecoveryPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/export-recovery';
9
- export { sessionUnrecoverablePlaybook } from './session-unrecoverable.ts';
9
+ export { sessionUnrecoverablePlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/session-unrecoverable';
10
10
  export { compactionFailurePlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/compaction-failure';
@@ -7,8 +7,8 @@
7
7
  import type { Playbook, DiagnosticCheckResult } from '@pellux/goodvibes-sdk/platform/runtime/ops/types';
8
8
  import { safeCheck } from '@pellux/goodvibes-sdk/platform/runtime/ops/safe-check';
9
9
  import { existsSync } from 'fs';
10
- import { readRecoveryFileMetadata } from '../runtime-context.ts';
11
- import type { OpsRuntimeContextState } from '../runtime-context.ts';
10
+ import { readRecoveryFileMetadata } from '@pellux/goodvibes-sdk/platform/runtime/ops/runtime-context';
11
+ import type { OpsRuntimeContextState } from '@pellux/goodvibes-sdk/platform/runtime/ops/runtime-context';
12
12
 
13
13
  export function createSessionUnrecoverablePlaybook(
14
14
  getRuntimeContext: () => OpsRuntimeContextState | null = () => null,
@@ -6,7 +6,7 @@
6
6
  */
7
7
  import type { Playbook, DiagnosticCheckResult } from '@pellux/goodvibes-sdk/platform/runtime/ops/types';
8
8
  import { safeCheck } from '@pellux/goodvibes-sdk/platform/runtime/ops/safe-check';
9
- import type { OpsRuntimeContextState } from '../runtime-context.ts';
9
+ import type { OpsRuntimeContextState } from '@pellux/goodvibes-sdk/platform/runtime/ops/runtime-context';
10
10
 
11
11
  export function createStuckTurnPlaybook(
12
12
  getRuntimeContext: () => OpsRuntimeContextState | null = () => null,
@@ -1,6 +1,6 @@
1
1
  import { AsyncLocalStorage } from 'async_hooks';
2
2
  import { existsSync, readFileSync } from 'fs';
3
- import type { RuntimeEventBus } from '../events/index.ts';
3
+ import type { RuntimeEventBus } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
4
4
  import type { RuntimeStore } from '../store/index.ts';
5
5
  import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils/error-display';
6
6
 
@@ -1,4 +1,4 @@
1
- import type { ConfigManager } from '../../config/manager.ts';
1
+ import type { ConfigManager } from '@pellux/goodvibes-sdk/platform/config/manager';
2
2
 
3
3
  export type OrchestrationSpawnMode = 'manual-batch' | 'plan-auto' | 'recursive-child';
4
4
 
@@ -10,14 +10,14 @@ import type {
10
10
  DistributedRuntimePairRequest,
11
11
  DistributedWorkPriority,
12
12
  DistributedWorkType,
13
- } from './remote/index.ts';
13
+ } from '@pellux/goodvibes-sdk/platform/runtime/remote/index';
14
14
  import type {
15
15
  RemoteExecutionArtifact,
16
16
  RemoteRunnerContract,
17
17
  RemoteRunnerPool,
18
18
  } from '@pellux/goodvibes-sdk/platform/runtime/remote/types';
19
- import type { RemoteRunnerRegistry } from './remote/runner-registry.ts';
20
- import type { RemoteSupervisor, RemoteSupervisorSnapshot } from './remote/supervisor.ts';
19
+ import type { RemoteRunnerRegistry } from '@pellux/goodvibes-sdk/platform/runtime/remote/runner-registry';
20
+ import type { RemoteSupervisor, RemoteSupervisorSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/remote/supervisor';
21
21
  import type { RemoteSessionStateSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/remote/session-state';
22
22
 
23
23
  export interface PeerClientDependencies {
@@ -25,7 +25,7 @@ export { DEFAULT_BUDGETS } from '@pellux/goodvibes-sdk/platform/runtime/perf/bud
25
25
  export { PerfMonitor } from '@pellux/goodvibes-sdk/platform/runtime/perf/monitor';
26
26
  export type { PerfSnapshot } from '@pellux/goodvibes-sdk/platform/runtime/perf/monitor';
27
27
  export { formatReport, exitCode } from '@pellux/goodvibes-sdk/platform/runtime/perf/reporter';
28
- export { SloCollector, SLO_METRICS } from './slo-collector.ts';
28
+ export { SloCollector, SLO_METRICS } from '@pellux/goodvibes-sdk/platform/runtime/perf/slo-collector';
29
29
  export type {
30
30
  PanelResourceContract,
31
31
  PanelHealthState,
@@ -11,7 +11,7 @@
11
11
  * p95 values for PerfMonitor integration via `getMetrics()`.
12
12
  */
13
13
 
14
- import type { RuntimeEventBus, RuntimeEventEnvelope, AnyRuntimeEvent } from '../events/index.ts';
14
+ import type { RuntimeEventBus, RuntimeEventEnvelope, AnyRuntimeEvent } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
15
15
  import type { PerfMetric } from '@pellux/goodvibes-sdk/platform/runtime/perf/types';
16
16
 
17
17
  /** Metric key constants for each SLO measurement. */
@@ -13,8 +13,8 @@ export { runSafetyChecks } from '@pellux/goodvibes-sdk/platform/runtime/permissi
13
13
  export { PermissionSimulator, SimulationEnforcementError } from '@pellux/goodvibes-sdk/platform/runtime/permissions/simulation';
14
14
  export { buildDefaultPolicySimulationScenarios, runPolicySimulationScenarios } from '@pellux/goodvibes-sdk/platform/runtime/permissions/simulation-scenarios';
15
15
  export { lintPolicyConfig } from '@pellux/goodvibes-sdk/platform/runtime/permissions/lint';
16
- export { buildPolicyPreflightReview } from './preflight.ts';
17
- export { buildPermissionRuleSuggestions } from './rule-suggestions.ts';
16
+ export { buildPolicyPreflightReview } from '@pellux/goodvibes-sdk/platform/runtime/permissions/preflight';
17
+ export { buildPermissionRuleSuggestions } from '@pellux/goodvibes-sdk/platform/runtime/permissions/rule-suggestions';
18
18
  // Policy signing
19
19
  export { signBundle, verifyBundle, canonicalise } from '@pellux/goodvibes-sdk/platform/runtime/permissions/policy-signer';
20
20
  export { loadPolicyBundle, createUnsignedBundle, PolicySignatureError } from '@pellux/goodvibes-sdk/platform/runtime/permissions/policy-loader';
@@ -46,13 +46,13 @@ export type {
46
46
  export type { DecisionLogEntry, DecisionLogQuery } from '@pellux/goodvibes-sdk/platform/runtime/permissions/decision-log';
47
47
  export type { SafetyCheckResult } from '@pellux/goodvibes-sdk/platform/runtime/permissions/safety-checks';
48
48
  export type { PolicyLintFinding, PolicyLintSeverity } from '@pellux/goodvibes-sdk/platform/runtime/permissions/lint';
49
- export type { PermissionRuleSuggestion } from './rule-suggestions.ts';
49
+ export type { PermissionRuleSuggestion } from '@pellux/goodvibes-sdk/platform/runtime/permissions/rule-suggestions';
50
50
  export type {
51
51
  PolicyPreflightStatus,
52
52
  PolicyPreflightServer,
53
53
  PolicyPreflightIssue,
54
54
  PolicyPreflightReview,
55
- } from './preflight.ts';
55
+ } from '@pellux/goodvibes-sdk/platform/runtime/permissions/preflight';
56
56
  export type {
57
57
  PolicySimulationScenario,
58
58
  PolicySimulationScenarioResult,
@@ -98,7 +98,7 @@ export type {
98
98
  export { PolicyRegistry } from '@pellux/goodvibes-sdk/platform/runtime/permissions/policy-registry';
99
99
  export {
100
100
  PolicyRuntimeState,
101
- } from './policy-runtime.ts';
101
+ } from '@pellux/goodvibes-sdk/platform/runtime/permissions/policy-runtime';
102
102
  export type {
103
103
  BundleLifecycleState,
104
104
  PolicyBundleVersion,
@@ -1,175 +1 @@
1
- import { PolicyRegistry } from '@pellux/goodvibes-sdk/platform/runtime/permissions/policy-registry';
2
- import { DivergencePanel } from '@pellux/goodvibes-sdk/platform/runtime/diagnostics/panels/divergence';
3
- import type { PolicyPanelSnapshot } from '../diagnostics/panels/policy.ts';
4
- import { PolicyPanel as PolicyDiagnosticsPanel } from '../diagnostics/panels/policy.ts';
5
- import type { DivergenceDashboard } from '@pellux/goodvibes-sdk/platform/runtime/permissions/divergence-dashboard';
6
- import type { PermissionCheckResult } from '@pellux/goodvibes-sdk/platform/permissions/types';
7
- import { lintPolicyConfig } from '@pellux/goodvibes-sdk/platform/runtime/permissions/lint';
8
- import type { PolicySimulationSummary } from '@pellux/goodvibes-sdk/platform/runtime/permissions/simulation-scenarios';
9
- import type { PolicyPreflightReview } from './preflight.ts';
10
-
11
- const MAX_PERMISSION_AUDIT = 100;
12
-
13
- export interface PermissionAuditEntry {
14
- readonly callId: string;
15
- readonly tool: string;
16
- readonly category: string;
17
- readonly approved?: boolean;
18
- readonly sourceLayer?: string;
19
- readonly reasonCode?: string;
20
- readonly riskLevel: string;
21
- readonly classification: string;
22
- readonly summary: string;
23
- readonly reasons: readonly string[];
24
- readonly target?: string;
25
- readonly host?: string;
26
- readonly requestedAt: number;
27
- readonly decidedAt?: number;
28
- readonly persisted?: boolean;
29
- }
30
-
31
- export class PolicyRuntimeState {
32
- private readonly _registry: PolicyRegistry;
33
- private _dashboard: DivergenceDashboard | null = null;
34
- private _divergencePanel: DivergencePanel | null = null;
35
- private readonly _recentPermissionAudit: PermissionAuditEntry[] = [];
36
- private _lastSimulationSummary: PolicySimulationSummary | null = null;
37
- private _lastPreflightReview: PolicyPreflightReview | null = null;
38
- private readonly _subscribers = new Set<() => void>();
39
-
40
- public constructor(registry: PolicyRegistry = new PolicyRegistry()) {
41
- this._registry = registry;
42
- }
43
-
44
- public getRegistry(): PolicyRegistry {
45
- return this._registry;
46
- }
47
-
48
- public getDashboard(): DivergenceDashboard | null {
49
- return this._dashboard;
50
- }
51
-
52
- public getDivergencePanel(): DivergencePanel | null {
53
- return this._divergencePanel;
54
- }
55
-
56
- public setDashboard(dashboard: DivergenceDashboard | null): void {
57
- this._divergencePanel?.dispose();
58
- this._dashboard = dashboard;
59
- this._divergencePanel = dashboard ? new DivergencePanel(dashboard) : null;
60
- this.notify();
61
- }
62
-
63
- public recordTrendEntry(): void {
64
- this._divergencePanel?.recordTrendEntry();
65
- this.notify();
66
- }
67
-
68
- public getSnapshot(): PolicyPanelSnapshot {
69
- const current = this._registry.getCurrent();
70
- const candidate = this._registry.getCandidate();
71
- const lintFindings = [
72
- ...(current ? lintPolicyConfig({ mode: 'custom', rules: current.rules }) : []),
73
- ...(candidate ? lintPolicyConfig({ mode: 'custom', rules: candidate.rules }) : []),
74
- ];
75
- const panel = new PolicyDiagnosticsPanel(
76
- this._registry,
77
- this._divergencePanel,
78
- this._recentPermissionAudit,
79
- lintFindings,
80
- this._lastSimulationSummary,
81
- this._lastPreflightReview,
82
- );
83
- return panel.getSnapshot();
84
- }
85
-
86
- public recordSimulationSummary(summary: PolicySimulationSummary): void {
87
- this._lastSimulationSummary = summary;
88
- this.notify();
89
- }
90
-
91
- public recordPreflightReview(review: PolicyPreflightReview): void {
92
- this._lastPreflightReview = review;
93
- this.notify();
94
- }
95
-
96
- public recordPermissionRequest(params: {
97
- callId: string;
98
- tool: string;
99
- category: string;
100
- analysis: PermissionCheckResult['analysis'];
101
- }): void {
102
- this._upsertPermissionAudit({
103
- callId: params.callId,
104
- tool: params.tool,
105
- category: params.category,
106
- riskLevel: params.analysis.riskLevel,
107
- classification: params.analysis.classification,
108
- summary: params.analysis.summary,
109
- reasons: params.analysis.reasons,
110
- target: params.analysis.target,
111
- host: params.analysis.host,
112
- requestedAt: Date.now(),
113
- });
114
- this.notify();
115
- }
116
-
117
- public recordPermissionDecision(params: {
118
- callId: string;
119
- tool: string;
120
- category: string;
121
- result: PermissionCheckResult;
122
- }): void {
123
- this._upsertPermissionAudit({
124
- callId: params.callId,
125
- tool: params.tool,
126
- category: params.category,
127
- approved: params.result.approved,
128
- sourceLayer: params.result.sourceLayer,
129
- reasonCode: params.result.reasonCode,
130
- riskLevel: params.result.analysis.riskLevel,
131
- classification: params.result.analysis.classification,
132
- summary: params.result.analysis.summary,
133
- reasons: params.result.analysis.reasons,
134
- target: params.result.analysis.target,
135
- host: params.result.analysis.host,
136
- requestedAt: Date.now(),
137
- decidedAt: Date.now(),
138
- persisted: params.result.persisted,
139
- });
140
- this.notify();
141
- }
142
-
143
- public subscribe(callback: () => void): () => void {
144
- this._subscribers.add(callback);
145
- return () => {
146
- this._subscribers.delete(callback);
147
- };
148
- }
149
-
150
- public notify(): void {
151
- for (const cb of this._subscribers) {
152
- try {
153
- cb();
154
- } catch {
155
- // Panel/runtime subscribers must not break policy state propagation.
156
- }
157
- }
158
- }
159
-
160
- private _upsertPermissionAudit(entry: PermissionAuditEntry): void {
161
- const existingIndex = this._recentPermissionAudit.findIndex((candidate) => candidate.callId === entry.callId);
162
- if (existingIndex >= 0) {
163
- this._recentPermissionAudit[existingIndex] = {
164
- ...this._recentPermissionAudit[existingIndex]!,
165
- ...entry,
166
- requestedAt: this._recentPermissionAudit[existingIndex]!.requestedAt,
167
- };
168
- } else {
169
- this._recentPermissionAudit.unshift(entry);
170
- if (this._recentPermissionAudit.length > MAX_PERMISSION_AUDIT) {
171
- this._recentPermissionAudit.length = MAX_PERMISSION_AUDIT;
172
- }
173
- }
174
- }
175
- }
1
+ export * from '@pellux/goodvibes-sdk/platform/runtime/permissions/policy-runtime';
@@ -1,4 +1,4 @@
1
- import type { PermissionAuditEntry } from './policy-runtime.ts';
1
+ import type { PermissionAuditEntry } from '@pellux/goodvibes-sdk/platform/runtime/permissions/policy-runtime';
2
2
 
3
3
  export interface PermissionRuleSuggestion {
4
4
  readonly id: string;
@@ -11,10 +11,10 @@
11
11
  */
12
12
 
13
13
  import { logger } from '@pellux/goodvibes-sdk/platform/utils/logger';
14
- import type { PluginLoaderDeps } from '../../plugins/loader.ts';
15
- import type { LoadedPlugin } from '../../plugins/loader.ts';
16
- import type { PluginHealthCheckResult, PluginManifestV2 } from './types.ts';
17
- import type { PluginLifecycleManager } from './manager.ts';
14
+ import type { PluginLoaderDeps } from '../../plugins/loader';
15
+ import type { LoadedPlugin } from '../../plugins/loader';
16
+ import type { PluginHealthCheckResult, PluginManifestV2 } from '@pellux/goodvibes-sdk/platform/runtime/plugins/types';
17
+ import type { PluginLifecycleManager } from '@pellux/goodvibes-sdk/platform/runtime/plugins/manager';
18
18
  import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils/error-display';
19
19
 
20
20
  /**
@@ -24,9 +24,9 @@ export type {
24
24
  PluginLifecycleRecord,
25
25
  PluginLifecycleManagerOptions,
26
26
  PluginLifecycleState,
27
- } from './types.ts';
27
+ } from '@pellux/goodvibes-sdk/platform/runtime/plugins/types';
28
28
 
29
- export { ALL_CAPABILITIES, MAX_TRANSITION_HISTORY } from './types.ts';
29
+ export { ALL_CAPABILITIES, MAX_TRANSITION_HISTORY } from '@pellux/goodvibes-sdk/platform/runtime/plugins/types';
30
30
 
31
31
  export {
32
32
  VALID_TRANSITIONS,
@@ -35,37 +35,37 @@ export {
35
35
  isOperational,
36
36
  isReloadable,
37
37
  isTerminal,
38
- } from './lifecycle.ts';
38
+ } from '@pellux/goodvibes-sdk/platform/runtime/plugins/lifecycle';
39
39
 
40
40
  export {
41
41
  resolveCapabilityManifest,
42
42
  hasCapability,
43
43
  validateManifestV2,
44
- } from './manifest.ts';
44
+ } from '@pellux/goodvibes-sdk/platform/runtime/plugins/manifest';
45
45
 
46
- export { PluginLifecycleManager } from './manager.ts';
47
- import { PluginLifecycleManager } from './manager.ts';
46
+ export { PluginLifecycleManager } from '@pellux/goodvibes-sdk/platform/runtime/plugins/manager';
47
+ import { PluginLifecycleManager } from '@pellux/goodvibes-sdk/platform/runtime/plugins/manager';
48
48
 
49
49
  // Trust framework.
50
50
  export type {
51
51
  PluginTrustTier,
52
52
  PluginTrustRecord,
53
53
  SignatureValidationResult,
54
- } from './trust.ts';
54
+ } from '@pellux/goodvibes-sdk/platform/runtime/plugins/trust';
55
55
  export {
56
56
  PluginTrustStore,
57
57
  validatePluginSignature,
58
58
  filterCapabilitiesByTrust,
59
59
  SAFE_CAPABILITIES,
60
- } from './trust.ts';
60
+ } from '@pellux/goodvibes-sdk/platform/runtime/plugins/trust';
61
61
 
62
- export type { QuarantineRecord } from './quarantine.ts';
63
- export { PluginQuarantineEngine } from './quarantine.ts';
62
+ export type { QuarantineRecord } from '@pellux/goodvibes-sdk/platform/runtime/plugins/quarantine';
63
+ export { PluginQuarantineEngine } from '@pellux/goodvibes-sdk/platform/runtime/plugins/quarantine';
64
64
 
65
- export { isHighRiskCapability } from './manifest.ts';
65
+ export { isHighRiskCapability } from '@pellux/goodvibes-sdk/platform/runtime/plugins/manifest';
66
66
 
67
- export type { HotReloadOptions, HotReloadResult } from './hot-reload.ts';
68
- export { runHotReload } from './hot-reload.ts';
67
+ export type { HotReloadOptions, HotReloadResult } from '@pellux/goodvibes-sdk/platform/runtime/plugins/hot-reload';
68
+ export { runHotReload } from '@pellux/goodvibes-sdk/platform/runtime/plugins/hot-reload';
69
69
 
70
70
  /**
71
71
  * createPluginLifecycleManager — Factory function for the PluginLifecycleManager.
@@ -14,7 +14,7 @@
14
14
  */
15
15
 
16
16
  import type { PluginLifecycleState } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/plugins';
17
- import type { TransitionResult } from './types.ts';
17
+ import type { TransitionResult } from '@pellux/goodvibes-sdk/platform/runtime/plugins/types';
18
18
 
19
19
  /**
20
20
  * Adjacency map: from state → set of valid target states.