@pellux/goodvibes-tui 0.18.11 → 0.18.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +72 -0
- package/README.md +1 -1
- package/docs/foundation-artifacts/operator-contract.json +1 -1
- package/package.json +2 -2
- package/src/config/index.ts +1 -138
- package/src/config/subscription-providers.ts +1 -127
- package/src/core/conversation-rendering.ts +5 -5
- package/src/core/conversation.ts +177 -424
- package/src/core/history.ts +45 -0
- package/src/core/orchestrator.ts +3 -733
- package/src/core/system-message-router.ts +19 -58
- package/src/input/command-registry.ts +3 -3
- package/src/input/commands/session-content.ts +2 -2
- package/src/input/commands/session-workflow.ts +1 -1
- package/src/input/handler-content-actions.ts +2 -2
- package/src/input/handler-feed.ts +2 -2
- package/src/input/handler-modal-token-routes.ts +1 -1
- package/src/input/handler-ui-state.ts +1 -1
- package/src/input/handler.ts +1 -1
- package/src/input/search.ts +1 -1
- package/src/input/selection.ts +2 -2
- package/src/input/session-picker-modal.ts +1 -1
- package/src/main.ts +1 -1
- package/src/panels/agent-inspector-panel.ts +3 -3
- package/src/panels/agent-logs-panel.ts +3 -3
- package/src/panels/approval-panel.ts +2 -2
- package/src/panels/automation-control-panel.ts +3 -3
- package/src/panels/base-panel.ts +14 -14
- package/src/panels/builtin/agent.ts +1 -0
- package/src/panels/builtin/operations.ts +2 -1
- package/src/panels/builtin/session.ts +2 -2
- package/src/panels/builtin/shared.ts +5 -5
- package/src/panels/cockpit-panel.ts +2 -2
- package/src/panels/communication-panel.ts +3 -3
- package/src/panels/context-visualizer-panel.ts +6 -3
- package/src/panels/control-plane-panel.ts +3 -3
- package/src/panels/cost-tracker-panel.ts +3 -3
- package/src/panels/debug-panel.ts +2 -2
- package/src/panels/diff-panel.ts +2 -2
- package/src/panels/docs-panel.ts +1 -1
- package/src/panels/eval-panel.ts +2 -2
- package/src/panels/file-explorer-panel.ts +3 -3
- package/src/panels/file-preview-panel.ts +3 -3
- package/src/panels/forensics-panel.ts +2 -2
- package/src/panels/git-panel.ts +1 -1
- package/src/panels/hooks-panel.ts +3 -3
- package/src/panels/incident-review-panel.ts +1 -1
- package/src/panels/intelligence-panel.ts +2 -2
- package/src/panels/knowledge-panel.ts +1 -1
- package/src/panels/local-auth-panel.ts +2 -2
- package/src/panels/marketplace-panel.ts +1 -1
- package/src/panels/mcp-panel.ts +3 -3
- package/src/panels/memory-panel.ts +1 -1
- package/src/panels/ops-control-panel.ts +3 -3
- package/src/panels/ops-strategy-panel.ts +2 -2
- package/src/panels/orchestration-panel.ts +2 -2
- package/src/panels/panel-list-panel.ts +6 -6
- package/src/panels/plan-dashboard-panel.ts +1 -1
- package/src/panels/plugins-panel.ts +2 -2
- package/src/panels/policy-panel.ts +2 -2
- package/src/panels/polish.ts +3 -3
- package/src/panels/provider-accounts-panel.ts +2 -2
- package/src/panels/provider-health-domains.ts +5 -1
- package/src/panels/provider-health-panel.ts +7 -3
- package/src/panels/provider-stats-panel.ts +3 -3
- package/src/panels/remote-panel.ts +3 -3
- package/src/panels/routes-panel.ts +3 -3
- package/src/panels/sandbox-panel.ts +2 -2
- package/src/panels/schedule-panel.ts +1 -1
- package/src/panels/security-panel.ts +2 -2
- package/src/panels/services-panel.ts +2 -2
- package/src/panels/session-browser-panel.ts +3 -3
- package/src/panels/settings-sync-panel.ts +2 -2
- package/src/panels/skills-panel.ts +6 -6
- package/src/panels/subscription-panel.ts +2 -2
- package/src/panels/symbol-outline-panel.ts +3 -3
- package/src/panels/system-messages-panel.ts +4 -4
- package/src/panels/tasks-panel.ts +2 -2
- package/src/panels/thinking-panel.ts +3 -3
- package/src/panels/token-budget-panel.ts +7 -3
- package/src/panels/tool-inspector-panel.ts +3 -3
- package/src/panels/types.ts +5 -5
- package/src/panels/watchers-panel.ts +3 -3
- package/src/panels/welcome-panel.ts +1 -1
- package/src/panels/worktree-panel.ts +2 -2
- package/src/panels/wrfc-panel.ts +3 -3
- package/src/permissions/prompt.ts +3 -22
- package/src/plugins/loader.ts +15 -304
- package/src/renderer/agent-detail-modal.ts +1 -1
- package/src/renderer/autocomplete-overlay.ts +2 -2
- package/src/renderer/bookmark-modal.ts +1 -1
- package/src/renderer/bottom-bar.ts +2 -2
- package/src/renderer/buffer.ts +1 -1
- package/src/renderer/code-block.ts +2 -2
- package/src/renderer/compositor.ts +2 -2
- package/src/renderer/context-inspector.ts +1 -1
- package/src/renderer/conversation-layout.ts +2 -2
- package/src/renderer/conversation-overlays.ts +1 -1
- package/src/renderer/conversation-surface.ts +2 -2
- package/src/renderer/diff-view.ts +2 -2
- package/src/renderer/diff.ts +1 -1
- package/src/renderer/file-picker-overlay.ts +2 -2
- package/src/renderer/file-tree.ts +2 -2
- package/src/renderer/help-overlay.ts +1 -1
- package/src/renderer/history-search-overlay.ts +2 -2
- package/src/renderer/live-tail-modal.ts +1 -1
- package/src/renderer/markdown.ts +2 -2
- package/src/renderer/modal-factory.ts +3 -3
- package/src/renderer/model-picker-overlay.ts +2 -2
- package/src/renderer/overlay-box.ts +2 -2
- package/src/renderer/panel-composite.ts +1 -1
- package/src/renderer/panel-picker-overlay.ts +2 -2
- package/src/renderer/panel-tab-bar.ts +1 -1
- package/src/renderer/panel-workspace-bar.ts +1 -1
- package/src/renderer/process-indicator.ts +2 -2
- package/src/renderer/process-modal.ts +1 -1
- package/src/renderer/profile-picker-modal.ts +2 -2
- package/src/renderer/progress.ts +2 -2
- package/src/renderer/search-overlay.ts +2 -2
- package/src/renderer/selection-modal-overlay.ts +2 -2
- package/src/renderer/session-picker-modal.ts +2 -2
- package/src/renderer/settings-modal.ts +2 -2
- package/src/renderer/shell-surface.ts +1 -1
- package/src/renderer/system-message.ts +1 -1
- package/src/renderer/tab-strip.ts +2 -2
- package/src/renderer/text-layout.ts +1 -1
- package/src/renderer/thinking.ts +1 -1
- package/src/renderer/tool-call.ts +2 -2
- package/src/renderer/ui-factory.ts +2 -2
- package/src/runtime/bootstrap-command-context.ts +7 -8
- package/src/runtime/bootstrap-command-parts.ts +4 -6
- package/src/runtime/bootstrap-core.ts +5 -4
- package/src/runtime/bootstrap-hook-bridge.ts +16 -175
- package/src/runtime/bootstrap-shell.ts +5 -5
- package/src/runtime/bootstrap.ts +6 -5
- package/src/runtime/context.ts +4 -20
- package/src/runtime/diagnostics/panels/index.ts +1 -1
- package/src/runtime/diagnostics/panels/ops.ts +1 -1
- package/src/runtime/diagnostics/panels/panel-resources.ts +118 -0
- package/src/runtime/perf/panel-contracts.ts +32 -0
- package/src/runtime/perf/panel-health-monitor.ts +18 -0
- package/src/runtime/services.ts +6 -6
- package/src/runtime/store/domains/conversation.ts +1 -181
- package/src/runtime/store/domains/permissions.ts +1 -143
- package/src/runtime/store/helpers/reducers/conversation.ts +1 -228
- package/src/runtime/store/helpers/reducers/lifecycle.ts +1 -440
- package/src/runtime/store/selectors/index.ts +11 -6
- package/src/runtime/store/state.ts +12 -4
- package/src/runtime/ui-read-models-observability-security.ts +2 -2
- package/src/runtime/ui-read-models-observability-system.ts +1 -1
- package/src/runtime/ui-service-queries.ts +1 -1
- package/src/runtime/ui-services.ts +1 -1
- package/src/shell/ui-openers.ts +1 -1
- package/src/tools/index.ts +1 -186
- package/src/types/grid.ts +48 -0
- package/src/utils/clipboard.ts +21 -0
- package/src/utils/splash-lines.ts +1 -1
- package/src/utils/terminal-width.ts +185 -0
- package/src/version.ts +1 -1
- package/src/acp/connection.ts +0 -447
- package/src/acp/index.ts +0 -7
- package/src/acp/manager.ts +0 -1
- package/src/adapters/bluebubbles/index.ts +0 -127
- package/src/adapters/discord/index.ts +0 -297
- package/src/adapters/github/index.ts +0 -73
- package/src/adapters/google-chat/index.ts +0 -119
- package/src/adapters/imessage/index.ts +0 -92
- package/src/adapters/index.ts +0 -15
- package/src/adapters/matrix/index.ts +0 -116
- package/src/adapters/mattermost/index.ts +0 -151
- package/src/adapters/msteams/index.ts +0 -180
- package/src/adapters/ntfy/index.ts +0 -118
- package/src/adapters/signal/index.ts +0 -92
- package/src/adapters/slack/index.ts +0 -323
- package/src/adapters/telegram/index.ts +0 -160
- package/src/adapters/types.ts +0 -97
- package/src/adapters/webhook/index.ts +0 -178
- package/src/adapters/whatsapp/index.ts +0 -135
- package/src/agents/message-bus-core.ts +0 -312
- package/src/agents/message-bus.ts +0 -2
- package/src/agents/orchestrator-prompts.ts +0 -351
- package/src/agents/orchestrator-runner.ts +0 -668
- package/src/agents/orchestrator.ts +0 -438
- package/src/agents/session.ts +0 -108
- package/src/agents/worktree.ts +0 -153
- package/src/agents/wrfc-config.ts +0 -47
- package/src/agents/wrfc-controller.ts +0 -747
- package/src/agents/wrfc-gate-runtime.ts +0 -75
- package/src/agents/wrfc-reporting.ts +0 -284
- package/src/agents/wrfc-runtime-events.ts +0 -150
- package/src/agents/wrfc-types.ts +0 -67
- package/src/automation/delivery-manager.ts +0 -368
- package/src/automation/index.ts +0 -72
- package/src/automation/manager-runtime-delivery.ts +0 -139
- package/src/automation/manager-runtime-events.ts +0 -131
- package/src/automation/manager-runtime-execution.ts +0 -511
- package/src/automation/manager-runtime-helpers.ts +0 -433
- package/src/automation/manager-runtime-job-mutations.ts +0 -175
- package/src/automation/manager-runtime-reconcile.ts +0 -148
- package/src/automation/manager-runtime-scheduling.ts +0 -189
- package/src/automation/manager-runtime-sync.ts +0 -54
- package/src/automation/manager-runtime.ts +0 -721
- package/src/automation/manager.ts +0 -10
- package/src/automation/service.ts +0 -242
- package/src/channels/builtin/account-actions.ts +0 -490
- package/src/channels/builtin/accounts.ts +0 -433
- package/src/channels/builtin/contracts.ts +0 -405
- package/src/channels/builtin/plugins.ts +0 -308
- package/src/channels/builtin/rendering.ts +0 -174
- package/src/channels/builtin/setup-schema.ts +0 -504
- package/src/channels/builtin/shared.ts +0 -96
- package/src/channels/builtin/surfaces.ts +0 -57
- package/src/channels/builtin/targets.ts +0 -693
- package/src/channels/builtin-runtime.ts +0 -443
- package/src/channels/delivery/shared.ts +0 -199
- package/src/channels/delivery/strategies-bridge.ts +0 -246
- package/src/channels/delivery/strategies-core.ts +0 -299
- package/src/channels/delivery/strategies-enterprise.ts +0 -178
- package/src/channels/delivery/types.ts +0 -59
- package/src/channels/delivery-router.ts +0 -127
- package/src/channels/index.ts +0 -77
- package/src/channels/plugin-registry.ts +0 -551
- package/src/channels/provider-runtime.ts +0 -330
- package/src/channels/reply-pipeline.ts +0 -522
- package/src/channels/route-manager.ts +0 -340
- package/src/channels/surface-registry.ts +0 -186
- package/src/config/helper-model.ts +0 -1
- package/src/config/manager.ts +0 -8
- package/src/config/subscription-auth.ts +0 -31
- package/src/config/tool-llm.ts +0 -110
- package/src/control-plane/approval-broker.ts +0 -351
- package/src/control-plane/gateway.ts +0 -1
- package/src/control-plane/index.ts +0 -54
- package/src/control-plane/media-contract-schemas.ts +0 -1
- package/src/control-plane/method-catalog-admin.ts +0 -1
- package/src/control-plane/method-catalog-channels.ts +0 -1
- package/src/control-plane/method-catalog-control-automation.ts +0 -1
- package/src/control-plane/method-catalog-control-core.ts +0 -1
- package/src/control-plane/method-catalog-control.ts +0 -1
- package/src/control-plane/method-catalog-events.ts +0 -1
- package/src/control-plane/method-catalog-knowledge.ts +0 -1
- package/src/control-plane/method-catalog-media.ts +0 -1
- package/src/control-plane/method-catalog-runtime.ts +0 -1
- package/src/control-plane/method-catalog-shared.ts +0 -1
- package/src/control-plane/method-catalog.ts +0 -1
- package/src/control-plane/operator-contract-schemas-admin.ts +0 -1
- package/src/control-plane/operator-contract-schemas-channels.ts +0 -1
- package/src/control-plane/operator-contract-schemas-control.ts +0 -1
- package/src/control-plane/operator-contract-schemas-domains.ts +0 -1
- package/src/control-plane/operator-contract-schemas-knowledge.ts +0 -1
- package/src/control-plane/operator-contract-schemas-media.ts +0 -1
- package/src/control-plane/operator-contract-schemas-permissions.ts +0 -1
- package/src/control-plane/operator-contract-schemas-remote.ts +0 -1
- package/src/control-plane/operator-contract-schemas-runtime.ts +0 -1
- package/src/control-plane/operator-contract-schemas-shared.ts +0 -1
- package/src/control-plane/operator-contract-schemas-telemetry.ts +0 -1
- package/src/control-plane/operator-contract-schemas.ts +0 -1
- package/src/control-plane/operator-contract.ts +0 -165
- package/src/control-plane/session-broker.ts +0 -780
- package/src/core/compaction-sections.ts +0 -492
- package/src/core/compaction-types.ts +0 -147
- package/src/core/context-compaction.ts +0 -542
- package/src/core/conversation-compaction.ts +0 -68
- package/src/core/conversation-diff.ts +0 -55
- package/src/core/conversation-utils.ts +0 -72
- package/src/core/event-replay.ts +0 -287
- package/src/core/orchestrator-context-runtime.ts +0 -407
- package/src/core/orchestrator-follow-up-runtime.ts +0 -134
- package/src/core/orchestrator-runtime.ts +0 -132
- package/src/core/orchestrator-tool-runtime.ts +0 -468
- package/src/core/orchestrator-turn-helpers.ts +0 -355
- package/src/core/orchestrator-turn-loop.ts +0 -443
- package/src/core/plan-command-handler.ts +0 -169
- package/src/core/transcript-events/classify.ts +0 -95
- package/src/core/transcript-events/index.ts +0 -15
- package/src/daemon/control-plane.ts +0 -522
- package/src/daemon/facade-composition.ts +0 -398
- package/src/daemon/facade.ts +0 -638
- package/src/daemon/helpers.ts +0 -74
- package/src/daemon/http/router-route-contexts.ts +0 -370
- package/src/daemon/http/router.ts +0 -531
- package/src/daemon/http-listener.ts +0 -301
- package/src/daemon/index.ts +0 -1
- package/src/daemon/server.ts +0 -1
- package/src/daemon/service-manager.ts +0 -413
- package/src/daemon/surface-actions.ts +0 -183
- package/src/daemon/surface-delivery.ts +0 -530
- package/src/daemon/surface-policy.ts +0 -60
- package/src/daemon/transport-events.ts +0 -110
- package/src/daemon/types.ts +0 -191
- package/src/export/markdown.ts +0 -213
- package/src/export/session-export.ts +0 -1
- package/src/git/index.ts +0 -1
- package/src/git/service.ts +0 -414
- package/src/hooks/chain-engine.ts +0 -414
- package/src/hooks/dispatcher.ts +0 -414
- package/src/hooks/hook-api.ts +0 -170
- package/src/hooks/index.ts +0 -48
- package/src/hooks/runners/agent.ts +0 -93
- package/src/hooks/runners/prompt.ts +0 -69
- package/src/hooks/workbench.ts +0 -360
- package/src/integrations/index.ts +0 -42
- package/src/integrations/notifier.ts +0 -206
- package/src/integrations/webhooks.ts +0 -1
- package/src/knowledge/consolidation.ts +0 -346
- package/src/knowledge/graphql.ts +0 -324
- package/src/knowledge/index.ts +0 -60
- package/src/knowledge/ingest-compile.ts +0 -386
- package/src/knowledge/ingest-context.ts +0 -18
- package/src/knowledge/ingest-inputs.ts +0 -387
- package/src/knowledge/ingest.ts +0 -1
- package/src/knowledge/internal.ts +0 -257
- package/src/knowledge/knowledge-api.ts +0 -432
- package/src/knowledge/lint.ts +0 -121
- package/src/knowledge/memory-sync.ts +0 -62
- package/src/knowledge/packet.ts +0 -370
- package/src/knowledge/scheduling.ts +0 -283
- package/src/knowledge/service.ts +0 -715
- package/src/mcp/client.ts +0 -383
- package/src/mcp/index.ts +0 -12
- package/src/mcp/mcp-api.ts +0 -90
- package/src/mcp/registry.ts +0 -1
- package/src/media/builtin-image-understanding.ts +0 -303
- package/src/media/builtin-providers.ts +0 -26
- package/src/media/index.ts +0 -18
- package/src/multimodal/index.ts +0 -13
- package/src/multimodal/service.ts +0 -492
- package/src/permissions/briefs/build.ts +0 -88
- package/src/permissions/manager.ts +0 -1
- package/src/plugins/api.ts +0 -383
- package/src/plugins/manager.ts +0 -481
- package/src/profiles/shape.ts +0 -58
- package/src/providers/amazon-bedrock-mantle.ts +0 -50
- package/src/providers/amazon-bedrock.ts +0 -61
- package/src/providers/anthropic-compat.ts +0 -373
- package/src/providers/anthropic-sdk-provider.ts +0 -230
- package/src/providers/anthropic-vertex.ts +0 -59
- package/src/providers/anthropic.ts +0 -469
- package/src/providers/auto-register.ts +0 -417
- package/src/providers/builtin-catalog.ts +0 -326
- package/src/providers/builtin-registry.ts +0 -575
- package/src/providers/cache-planner.ts +0 -258
- package/src/providers/capabilities.ts +0 -1
- package/src/providers/custom-loader.ts +0 -425
- package/src/providers/discovered-compat.ts +0 -7
- package/src/providers/discovered-factory.ts +0 -61
- package/src/providers/discovered-traits.ts +0 -138
- package/src/providers/gemini.ts +0 -462
- package/src/providers/github-copilot.ts +0 -254
- package/src/providers/index.ts +0 -1
- package/src/providers/interface.ts +0 -185
- package/src/providers/llama-cpp.ts +0 -402
- package/src/providers/lm-studio-helpers.ts +0 -367
- package/src/providers/lm-studio.ts +0 -484
- package/src/providers/model-catalog-cache.ts +0 -221
- package/src/providers/model-catalog-notifications.ts +0 -97
- package/src/providers/model-catalog-synthetic.ts +0 -202
- package/src/providers/model-catalog.ts +0 -211
- package/src/providers/model-limits.ts +0 -1
- package/src/providers/ollama.ts +0 -469
- package/src/providers/openai-codex.ts +0 -472
- package/src/providers/openai-compat.ts +0 -615
- package/src/providers/openai.ts +0 -231
- package/src/providers/optimizer.ts +0 -1
- package/src/providers/provider-api.ts +0 -1
- package/src/providers/registry-helpers.ts +0 -34
- package/src/providers/registry-models.ts +0 -77
- package/src/providers/registry-types.ts +0 -67
- package/src/providers/registry.ts +0 -1
- package/src/providers/runtime-metadata.ts +0 -149
- package/src/providers/runtime-snapshot.ts +0 -130
- package/src/providers/synthetic.ts +0 -561
- package/src/providers/tier-prompts.ts +0 -84
- package/src/providers/tool-formats.ts +0 -414
- package/src/runtime/auth/inspection.ts +0 -125
- package/src/runtime/bootstrap-background.ts +0 -157
- package/src/runtime/bootstrap-helpers.ts +0 -88
- package/src/runtime/bootstrap-runtime-events.ts +0 -254
- package/src/runtime/bootstrap-services.ts +0 -197
- package/src/runtime/compaction/index.ts +0 -1
- package/src/runtime/compaction/lifecycle.ts +0 -1
- package/src/runtime/compaction/manager.ts +0 -474
- package/src/runtime/compaction/quality-score.ts +0 -1
- package/src/runtime/compaction/resume-repair.ts +0 -1
- package/src/runtime/compaction/strategies/autocompact.ts +0 -1
- package/src/runtime/compaction/strategies/boundary-commit.ts +0 -1
- package/src/runtime/compaction/strategies/collapse.ts +0 -1
- package/src/runtime/compaction/strategies/index.ts +0 -1
- package/src/runtime/compaction/strategies/microcompact.ts +0 -1
- package/src/runtime/compaction/strategies/reactive.ts +0 -1
- package/src/runtime/compaction/types.ts +0 -1
- package/src/runtime/ecosystem/recommendations.ts +0 -117
- package/src/runtime/emitters/agents.ts +0 -96
- package/src/runtime/emitters/automation.ts +0 -112
- package/src/runtime/emitters/communication.ts +0 -53
- package/src/runtime/emitters/compaction.ts +0 -161
- package/src/runtime/emitters/control-plane.ts +0 -65
- package/src/runtime/emitters/deliveries.ts +0 -65
- package/src/runtime/emitters/forensics.ts +0 -17
- package/src/runtime/emitters/index.ts +0 -59
- package/src/runtime/emitters/knowledge.ts +0 -129
- package/src/runtime/emitters/mcp.ts +0 -95
- package/src/runtime/emitters/ops.ts +0 -163
- package/src/runtime/emitters/orchestration.ts +0 -87
- package/src/runtime/emitters/permissions.ts +0 -98
- package/src/runtime/emitters/planner.ts +0 -23
- package/src/runtime/emitters/plugins.ts +0 -78
- package/src/runtime/emitters/providers.ts +0 -30
- package/src/runtime/emitters/routes.ts +0 -57
- package/src/runtime/emitters/security.ts +0 -53
- package/src/runtime/emitters/session.ts +0 -93
- package/src/runtime/emitters/surfaces.ts +0 -57
- package/src/runtime/emitters/tasks.ts +0 -69
- package/src/runtime/emitters/tools.ts +0 -140
- package/src/runtime/emitters/transport.ts +0 -78
- package/src/runtime/emitters/turn.ts +0 -155
- package/src/runtime/emitters/ui.ts +0 -57
- package/src/runtime/emitters/watchers.ts +0 -57
- package/src/runtime/emitters/workflows.ts +0 -79
- package/src/runtime/eval/index.ts +0 -48
- package/src/runtime/eval/runner.ts +0 -163
- package/src/runtime/eval/suites.ts +0 -264
- package/src/runtime/events/domain-map.ts +0 -148
- package/src/runtime/events/index.ts +0 -1
- package/src/runtime/events/turn.ts +0 -1
- package/src/runtime/events/workflows.ts +0 -1
- package/src/runtime/forensics/collector.ts +0 -693
- package/src/runtime/forensics/index.ts +0 -23
- package/src/runtime/foundation-clients.ts +0 -78
- package/src/runtime/foundation-services.ts +0 -96
- package/src/runtime/guidance.ts +0 -183
- package/src/runtime/health/effect-handlers.ts +0 -189
- package/src/runtime/health/index.ts +0 -70
- package/src/runtime/health/wiring.ts +0 -115
- package/src/runtime/integration/helpers.ts +0 -640
- package/src/runtime/lifecycle.ts +0 -107
- package/src/runtime/mcp/index.ts +0 -68
- package/src/runtime/mcp/manager.ts +0 -513
- package/src/runtime/network/inbound.ts +0 -131
- package/src/runtime/network/index.ts +0 -30
- package/src/runtime/network/outbound.ts +0 -292
- package/src/runtime/network/shared.ts +0 -82
- package/src/runtime/operator-client.ts +0 -235
- package/src/runtime/ops/control-plane.ts +0 -363
- package/src/runtime/ops/index.ts +0 -122
- package/src/runtime/ops/playbooks/index.ts +0 -10
- package/src/runtime/ops/playbooks/session-unrecoverable.ts +0 -196
- package/src/runtime/ops/playbooks/stuck-turn.ts +0 -197
- package/src/runtime/ops/runtime-context.ts +0 -100
- package/src/runtime/ops-api.ts +0 -27
- package/src/runtime/orchestration/spawn-policy.ts +0 -83
- package/src/runtime/peer-client.ts +0 -404
- package/src/runtime/perf/index.ts +0 -57
- package/src/runtime/perf/slo-collector.ts +0 -375
- package/src/runtime/permissions/index.ts +0 -190
- package/src/runtime/permissions/policy-runtime.ts +0 -1
- package/src/runtime/permissions/preflight.ts +0 -101
- package/src/runtime/permissions/rule-suggestions.ts +0 -36
- package/src/runtime/plugins/hot-reload.ts +0 -221
- package/src/runtime/plugins/index.ts +0 -84
- package/src/runtime/plugins/lifecycle.ts +0 -95
- package/src/runtime/plugins/manager.ts +0 -474
- package/src/runtime/plugins/manifest.ts +0 -167
- package/src/runtime/plugins/quarantine.ts +0 -202
- package/src/runtime/plugins/trust.ts +0 -291
- package/src/runtime/plugins/types.ts +0 -205
- package/src/runtime/provider-accounts/registry.ts +0 -326
- package/src/runtime/remote/distributed-runtime-contract-schemas.ts +0 -386
- package/src/runtime/remote/index.ts +0 -488
- package/src/runtime/remote/runner-registry.ts +0 -438
- package/src/runtime/remote/supervisor.ts +0 -70
- package/src/runtime/runtime-hook-api.ts +0 -5
- package/src/runtime/runtime-knowledge-api.ts +0 -14
- package/src/runtime/runtime-mcp-api.ts +0 -5
- package/src/runtime/runtime-ops-api.ts +0 -86
- package/src/runtime/runtime-provider-api.ts +0 -18
- package/src/runtime/session-maintenance.ts +0 -188
- package/src/runtime/session-persistence.ts +0 -288
- package/src/runtime/session-return-context.ts +0 -195
- package/src/runtime/settings/control-plane-store.ts +0 -258
- package/src/runtime/settings/control-plane.ts +0 -599
- package/src/runtime/shell-command-extensions.ts +0 -54
- package/src/runtime/shell-command-ops.ts +0 -207
- package/src/runtime/shell-command-platform.ts +0 -47
- package/src/runtime/shell-command-services.ts +0 -143
- package/src/runtime/shell-command-workspace.ts +0 -31
- package/src/runtime/tasks/adapters/acp-adapter.ts +0 -211
- package/src/runtime/tasks/adapters/agent-adapter.ts +0 -208
- package/src/runtime/tasks/adapters/index.ts +0 -16
- package/src/runtime/tasks/adapters/process-adapter.ts +0 -214
- package/src/runtime/tasks/adapters/scheduler-adapter.ts +0 -193
- package/src/runtime/tasks/index.ts +0 -68
- package/src/runtime/tasks/manager.ts +0 -415
- package/src/runtime/telemetry/api-helpers.ts +0 -517
- package/src/runtime/telemetry/api.ts +0 -768
- package/src/runtime/telemetry/index.ts +0 -178
- package/src/runtime/telemetry/instrumentation/domain-bridge-agent-session.ts +0 -440
- package/src/runtime/telemetry/instrumentation/domain-bridge-plugin-mcp.ts +0 -200
- package/src/runtime/telemetry/instrumentation/domain-bridge-shared.ts +0 -18
- package/src/runtime/telemetry/instrumentation/domain-bridge-transport-task.ts +0 -204
- package/src/runtime/telemetry/instrumentation/domain-bridge.ts +0 -125
- package/src/runtime/telemetry/instrumentation/index.ts +0 -67
- package/src/runtime/tools/context.ts +0 -114
- package/src/runtime/tools/index.ts +0 -46
- package/src/runtime/tools/phased-executor.ts +0 -448
- package/src/runtime/tools/phases/budget.ts +0 -130
- package/src/runtime/tools/phases/execute.ts +0 -69
- package/src/runtime/tools/phases/index.ts +0 -13
- package/src/runtime/tools/phases/map-output.ts +0 -98
- package/src/runtime/tools/phases/permission.ts +0 -133
- package/src/runtime/tools/phases/posthook.ts +0 -57
- package/src/runtime/tools/phases/prehook.ts +0 -68
- package/src/runtime/tools/phases/validate.ts +0 -53
- package/src/runtime/transports/direct.ts +0 -73
- package/src/runtime/transports/http-helpers.ts +0 -218
- package/src/runtime/transports/http-types.ts +0 -364
- package/src/runtime/transports/http.ts +0 -629
- package/src/runtime/transports/realtime.ts +0 -50
- package/src/runtime/transports/remote-events.ts +0 -16
- package/src/runtime/transports/shared.ts +0 -39
- package/src/runtime/transports/ui-runtime-events.ts +0 -35
- package/src/runtime/ui-read-models-core.ts +0 -95
- package/src/runtime/ui-read-models-operations.ts +0 -203
- package/src/runtime/worktree/registry.ts +0 -252
- package/src/sessions/manager.ts +0 -14
- package/src/state/file-watcher.ts +0 -294
- package/src/state/index.ts +0 -56
- package/src/state/knowledge-injection.ts +0 -214
- package/src/state/memory-embedding-http.ts +0 -642
- package/src/state/memory-embeddings.ts +0 -312
- package/src/state/memory-ingest.ts +0 -132
- package/src/state/memory-registry.ts +0 -111
- package/src/state/memory-store-helpers.ts +0 -160
- package/src/state/memory-store.ts +0 -728
- package/src/state/memory-vector-store.ts +0 -418
- package/src/templates/manager.ts +0 -187
- package/src/tools/agent/index.ts +0 -610
- package/src/tools/agent/manager.ts +0 -476
- package/src/tools/analyze/git-modes.ts +0 -380
- package/src/tools/analyze/index.ts +0 -128
- package/src/tools/channel/agent-tools.ts +0 -16
- package/src/tools/channel/index.ts +0 -268
- package/src/tools/control/index.ts +0 -90
- package/src/tools/edit/core.ts +0 -619
- package/src/tools/edit/index.ts +0 -4
- package/src/tools/edit/phased.ts +0 -33
- package/src/tools/fetch/index.ts +0 -3
- package/src/tools/fetch/phased.ts +0 -34
- package/src/tools/fetch/runtime.ts +0 -499
- package/src/tools/mcp/index.ts +0 -190
- package/src/tools/remote-trigger/index.ts +0 -130
- package/src/tools/shared/auto-heal.ts +0 -282
- package/src/tools/state/index.ts +0 -688
- package/src/tools/web-search/index.ts +0 -38
- package/src/tools/write/index.ts +0 -604
- package/src/tools/write/phased.ts +0 -41
- package/src/types/generated/foundation-client-types.ts +0 -22
- package/src/watchers/index.ts +0 -11
- package/src/watchers/registry.ts +0 -517
- package/src/web-search/index.ts +0 -26
- package/src/web-search/provider-registry.ts +0 -64
- package/src/web-search/providers/brave.ts +0 -100
- package/src/web-search/providers/duckduckgo.ts +0 -270
- package/src/web-search/providers/exa.ts +0 -77
- package/src/web-search/providers/firecrawl.ts +0 -90
- package/src/web-search/providers/perplexity.ts +0 -86
- package/src/web-search/providers/searxng.ts +0 -88
- package/src/web-search/providers/shared.ts +0 -249
- package/src/web-search/providers/tavily.ts +0 -90
- package/src/web-search/service.ts +0 -142
package/src/runtime/ops/index.ts
DELETED
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Operational runbook registry for the goodvibes-tui runtime.
|
|
3
|
-
*
|
|
4
|
-
* Provides a machine-readable playbook registry consumed by the diagnostics
|
|
5
|
-
* panel. Each playbook describes symptoms, diagnostic checks, resolution
|
|
6
|
-
* steps, and escalation criteria for a specific failure scenario.
|
|
7
|
-
*
|
|
8
|
-
* @example
|
|
9
|
-
* ```ts
|
|
10
|
-
* import { getPlaybookRegistry, getPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/index';
|
|
11
|
-
*
|
|
12
|
-
* const registry = getPlaybookRegistry();
|
|
13
|
-
* const playbook = getPlaybook('stuck-turn');
|
|
14
|
-
* if (playbook) {
|
|
15
|
-
* for (const check of playbook.checks) {
|
|
16
|
-
* const result = await check.run();
|
|
17
|
-
* console.log(check.label, result.passed ? 'PASS' : 'FAIL', result.summary);
|
|
18
|
-
* }
|
|
19
|
-
* }
|
|
20
|
-
* ```
|
|
21
|
-
*/
|
|
22
|
-
|
|
23
|
-
// Re-export types
|
|
24
|
-
export type {
|
|
25
|
-
DiagnosticSeverity,
|
|
26
|
-
DiagnosticCheckResult,
|
|
27
|
-
DiagnosticCheck,
|
|
28
|
-
PlaybookStepKind,
|
|
29
|
-
PlaybookStep,
|
|
30
|
-
Playbook,
|
|
31
|
-
PlaybookRegistryEntry,
|
|
32
|
-
PlaybookRegistry,
|
|
33
|
-
} from '@pellux/goodvibes-sdk/platform/runtime/ops/types';
|
|
34
|
-
|
|
35
|
-
// Re-export all playbooks
|
|
36
|
-
export {
|
|
37
|
-
stuckTurnPlaybook,
|
|
38
|
-
reconnectFailurePlaybook,
|
|
39
|
-
permissionDeadlockPlaybook,
|
|
40
|
-
pluginDegradationPlaybook,
|
|
41
|
-
exportRecoveryPlaybook,
|
|
42
|
-
sessionUnrecoverablePlaybook,
|
|
43
|
-
compactionFailurePlaybook,
|
|
44
|
-
} from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/index';
|
|
45
|
-
|
|
46
|
-
import type { Playbook, PlaybookRegistry, PlaybookRegistryEntry } from '@pellux/goodvibes-sdk/platform/runtime/ops/types';
|
|
47
|
-
import {
|
|
48
|
-
stuckTurnPlaybook,
|
|
49
|
-
reconnectFailurePlaybook,
|
|
50
|
-
permissionDeadlockPlaybook,
|
|
51
|
-
pluginDegradationPlaybook,
|
|
52
|
-
exportRecoveryPlaybook,
|
|
53
|
-
sessionUnrecoverablePlaybook,
|
|
54
|
-
compactionFailurePlaybook,
|
|
55
|
-
} from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/index';
|
|
56
|
-
|
|
57
|
-
/** All registered playbooks in definition order. */
|
|
58
|
-
const ALL_PLAYBOOKS: readonly Playbook[] = [
|
|
59
|
-
stuckTurnPlaybook,
|
|
60
|
-
reconnectFailurePlaybook,
|
|
61
|
-
permissionDeadlockPlaybook,
|
|
62
|
-
pluginDegradationPlaybook,
|
|
63
|
-
exportRecoveryPlaybook,
|
|
64
|
-
sessionUnrecoverablePlaybook,
|
|
65
|
-
compactionFailurePlaybook,
|
|
66
|
-
] as const;
|
|
67
|
-
|
|
68
|
-
/** Registry version — bump when playbooks are added or updated. */
|
|
69
|
-
export const REGISTRY_VERSION = '1.0.0';
|
|
70
|
-
|
|
71
|
-
/**
|
|
72
|
-
* Build and return the playbook registry.
|
|
73
|
-
*
|
|
74
|
-
* The registry is a Map keyed by playbook ID for O(1) lookup.
|
|
75
|
-
*/
|
|
76
|
-
export function getPlaybookRegistry(): PlaybookRegistry {
|
|
77
|
-
const registry: PlaybookRegistry = new Map<string, PlaybookRegistryEntry>();
|
|
78
|
-
for (const playbook of ALL_PLAYBOOKS) {
|
|
79
|
-
registry.set(playbook.id, {
|
|
80
|
-
playbook,
|
|
81
|
-
version: REGISTRY_VERSION,
|
|
82
|
-
updatedAt: new Date().toISOString(),
|
|
83
|
-
});
|
|
84
|
-
}
|
|
85
|
-
return registry;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
/**
|
|
89
|
-
* Look up a single playbook by ID.
|
|
90
|
-
*
|
|
91
|
-
* @param id - The playbook ID (e.g. 'stuck-turn').
|
|
92
|
-
* @returns The playbook, or undefined if not found.
|
|
93
|
-
*/
|
|
94
|
-
export function getPlaybook(id: string): Playbook | undefined {
|
|
95
|
-
return ALL_PLAYBOOKS.find((p) => p.id === id);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
/**
|
|
99
|
-
* Find playbooks whose tags overlap with the provided set.
|
|
100
|
-
*
|
|
101
|
-
* @param tags - One or more tag strings to match.
|
|
102
|
-
* @returns Playbooks that have at least one matching tag.
|
|
103
|
-
*/
|
|
104
|
-
export function findPlaybooksByTag(...tags: string[]): Playbook[] {
|
|
105
|
-
const tagSet = new Set(tags);
|
|
106
|
-
return ALL_PLAYBOOKS.filter((p) => p.tags.some((t) => tagSet.has(t)));
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
/**
|
|
110
|
-
* Find playbooks whose symptoms partially match the provided query string.
|
|
111
|
-
*
|
|
112
|
-
* @param query - A substring to search for in symptom descriptions.
|
|
113
|
-
* @returns Matching playbooks, sorted by number of matching symptoms (desc).
|
|
114
|
-
*/
|
|
115
|
-
export function findPlaybooksBySymptom(query: string): Playbook[] {
|
|
116
|
-
const lower = query.toLowerCase();
|
|
117
|
-
const scored = ALL_PLAYBOOKS.map((p) => ({
|
|
118
|
-
playbook: p,
|
|
119
|
-
matches: p.symptoms.filter((s) => s.toLowerCase().includes(lower)).length,
|
|
120
|
-
})).filter(({ matches }) => matches > 0);
|
|
121
|
-
return scored.sort((a, b) => b.matches - a.matches).map(({ playbook }) => playbook);
|
|
122
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Barrel export for operational playbooks.
|
|
3
|
-
*/
|
|
4
|
-
export { stuckTurnPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/stuck-turn';
|
|
5
|
-
export { reconnectFailurePlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/reconnect-failure';
|
|
6
|
-
export { permissionDeadlockPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/permission-deadlock';
|
|
7
|
-
export { pluginDegradationPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/plugin-degradation';
|
|
8
|
-
export { exportRecoveryPlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/export-recovery';
|
|
9
|
-
export { sessionUnrecoverablePlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/session-unrecoverable';
|
|
10
|
-
export { compactionFailurePlaybook } from '@pellux/goodvibes-sdk/platform/runtime/ops/playbooks/compaction-failure';
|
|
@@ -1,196 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Playbook: Session Unrecoverable
|
|
3
|
-
*
|
|
4
|
-
* Handles the scenario where session recovery has been exhausted and the
|
|
5
|
-
* runtime has emitted SESSION_UNRECOVERABLE — triggering a full-system cascade.
|
|
6
|
-
*/
|
|
7
|
-
import type { Playbook, DiagnosticCheckResult } from '@pellux/goodvibes-sdk/platform/runtime/ops/types';
|
|
8
|
-
import { safeCheck } from '@pellux/goodvibes-sdk/platform/runtime/ops/safe-check';
|
|
9
|
-
import { existsSync } from 'fs';
|
|
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
|
-
|
|
13
|
-
export function createSessionUnrecoverablePlaybook(
|
|
14
|
-
getRuntimeContext: () => OpsRuntimeContextState | null = () => null,
|
|
15
|
-
): Playbook {
|
|
16
|
-
return {
|
|
17
|
-
id: 'session-unrecoverable',
|
|
18
|
-
name: 'Session Unrecoverable',
|
|
19
|
-
description:
|
|
20
|
-
'Diagnoses and recovers from SESSION_UNRECOVERABLE events. ' +
|
|
21
|
-
'Fired when all session recovery attempts are exhausted, cascading to all domains.',
|
|
22
|
-
symptoms: [
|
|
23
|
-
'SESSION_UNRECOVERABLE event emitted on the runtime event bus',
|
|
24
|
-
'All domain health checks transitioning to failed or unknown',
|
|
25
|
-
'No new turns can be started; all in-flight operations cancelled',
|
|
26
|
-
'TUI shows system-wide failure banner',
|
|
27
|
-
'Session state file missing or corrupted',
|
|
28
|
-
],
|
|
29
|
-
checks: [
|
|
30
|
-
{
|
|
31
|
-
id: 'session.recovery-attempts',
|
|
32
|
-
label: 'Session recovery attempts exhausted',
|
|
33
|
-
description: 'Confirms that all configured recovery attempts have been made before the cascade.',
|
|
34
|
-
run: async (): Promise<DiagnosticCheckResult> =>
|
|
35
|
-
safeCheck(async () => {
|
|
36
|
-
const runtime = getRuntimeContext();
|
|
37
|
-
if (!runtime) {
|
|
38
|
-
return {
|
|
39
|
-
passed: false,
|
|
40
|
-
summary: 'Ops runtime context is not configured.',
|
|
41
|
-
severity: 'warning',
|
|
42
|
-
};
|
|
43
|
-
}
|
|
44
|
-
const { session } = runtime.store.getState();
|
|
45
|
-
const exhausted = session.recoveryState === 'failed';
|
|
46
|
-
return {
|
|
47
|
-
passed: !exhausted,
|
|
48
|
-
summary: exhausted
|
|
49
|
-
? `Session recovery is in a failed state${session.recoveryError ? `: ${session.recoveryError}` : '.'}`
|
|
50
|
-
: `Session recovery state is ${session.recoveryState}.`,
|
|
51
|
-
severity: exhausted ? 'critical' : 'info',
|
|
52
|
-
context: {
|
|
53
|
-
recoveryState: session.recoveryState,
|
|
54
|
-
recoveryError: session.recoveryError ?? '',
|
|
55
|
-
},
|
|
56
|
-
};
|
|
57
|
-
}),
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
id: 'session.state-file',
|
|
61
|
-
label: 'Session state file integrity',
|
|
62
|
-
description: 'Checks whether the session state file exists and is parseable.',
|
|
63
|
-
run: async (): Promise<DiagnosticCheckResult> =>
|
|
64
|
-
safeCheck(async () => {
|
|
65
|
-
const runtime = getRuntimeContext();
|
|
66
|
-
if (!runtime) {
|
|
67
|
-
return {
|
|
68
|
-
passed: false,
|
|
69
|
-
summary: 'Ops runtime context is not configured.',
|
|
70
|
-
severity: 'warning',
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
const recoveryMeta = readRecoveryFileMetadata(runtime.recoveryFilePath);
|
|
74
|
-
const pointerExists = existsSync(runtime.lastSessionPointerPath);
|
|
75
|
-
const passed = recoveryMeta.ok && pointerExists;
|
|
76
|
-
return {
|
|
77
|
-
passed,
|
|
78
|
-
summary: passed
|
|
79
|
-
? 'Recovery artifact and last-session pointer are both present and readable.'
|
|
80
|
-
: `${recoveryMeta.summary}${pointerExists ? '' : ' Last-session pointer file is missing.'}`,
|
|
81
|
-
severity: passed ? 'info' : 'error',
|
|
82
|
-
context: {
|
|
83
|
-
recoveryFilePresent: existsSync(runtime.recoveryFilePath),
|
|
84
|
-
lastSessionPointerPresent: pointerExists,
|
|
85
|
-
},
|
|
86
|
-
};
|
|
87
|
-
}),
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
id: 'session.event-bus-silent',
|
|
91
|
-
label: 'Event bus silent after cascade',
|
|
92
|
-
description: 'Verifies that no further domain events are being processed after SESSION_UNRECOVERABLE.',
|
|
93
|
-
run: async (): Promise<DiagnosticCheckResult> =>
|
|
94
|
-
safeCheck(async () => {
|
|
95
|
-
const runtime = getRuntimeContext();
|
|
96
|
-
if (!runtime) {
|
|
97
|
-
return {
|
|
98
|
-
passed: false,
|
|
99
|
-
summary: 'Ops runtime context is not configured.',
|
|
100
|
-
severity: 'warning',
|
|
101
|
-
};
|
|
102
|
-
}
|
|
103
|
-
if (!runtime.sessionRecoveryFailedAt) {
|
|
104
|
-
return {
|
|
105
|
-
passed: true,
|
|
106
|
-
summary: 'No SESSION_RECOVERY_FAILED event has been observed in this runtime context.',
|
|
107
|
-
severity: 'info',
|
|
108
|
-
context: {
|
|
109
|
-
sessionRecoveryFailedCount: runtime.sessionRecoveryFailedCount,
|
|
110
|
-
sessionRecoveryFailedAt: 0,
|
|
111
|
-
lastEventAt: runtime.lastEventAt,
|
|
112
|
-
},
|
|
113
|
-
};
|
|
114
|
-
}
|
|
115
|
-
const postCascadeActivity = runtime.lastEventAt > runtime.sessionRecoveryFailedAt;
|
|
116
|
-
return {
|
|
117
|
-
passed: !postCascadeActivity,
|
|
118
|
-
summary: postCascadeActivity
|
|
119
|
-
? 'Runtime events are still being processed after SESSION_UNRECOVERABLE.'
|
|
120
|
-
: 'No runtime events have been observed after SESSION_UNRECOVERABLE.',
|
|
121
|
-
severity: postCascadeActivity ? 'warning' : 'info',
|
|
122
|
-
context: {
|
|
123
|
-
sessionRecoveryFailedAt: runtime.sessionRecoveryFailedAt,
|
|
124
|
-
lastEventAt: runtime.lastEventAt,
|
|
125
|
-
sessionRecoveryFailedCount: runtime.sessionRecoveryFailedCount,
|
|
126
|
-
},
|
|
127
|
-
};
|
|
128
|
-
}),
|
|
129
|
-
},
|
|
130
|
-
],
|
|
131
|
-
steps: [
|
|
132
|
-
{
|
|
133
|
-
step: 1,
|
|
134
|
-
title: 'Capture full session state dump',
|
|
135
|
-
action:
|
|
136
|
-
'Before any recovery attempt, export the full runtime state snapshot ' +
|
|
137
|
-
'(health, tasks, agents, active spans) to a diagnostic file.',
|
|
138
|
-
kind: 'observe',
|
|
139
|
-
expectedOutcome: 'State dump captured for post-mortem analysis.',
|
|
140
|
-
automatable: false,
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
step: 2,
|
|
144
|
-
title: 'Attempt graceful session restart',
|
|
145
|
-
action:
|
|
146
|
-
'Call runtime.session.restart() to attempt a clean session re-initialization. ' +
|
|
147
|
-
'This resets all domain health, clears the event queue, and reinitialises plugins.',
|
|
148
|
-
kind: 'command',
|
|
149
|
-
command: 'runtime.session.restart()',
|
|
150
|
-
expectedOutcome: 'Session health returns to healthy; all domains reinitialise.',
|
|
151
|
-
automatable: true,
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
step: 3,
|
|
155
|
-
title: 'Clear corrupted session state',
|
|
156
|
-
action:
|
|
157
|
-
'If restart fails, remove or rename the corrupted session state file and restart. ' +
|
|
158
|
-
'This loses in-progress turns but allows the runtime to boot fresh.',
|
|
159
|
-
kind: 'command',
|
|
160
|
-
command: 'runtime.session.clearState()',
|
|
161
|
-
expectedOutcome: 'Clean session state; turns must be re-submitted.',
|
|
162
|
-
automatable: true,
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
step: 4,
|
|
166
|
-
title: 'Verify plugin and MCP connectivity',
|
|
167
|
-
action:
|
|
168
|
-
'After session restart, confirm all plugins have re-connected to their MCP servers ' +
|
|
169
|
-
'and tool registrations are complete.',
|
|
170
|
-
kind: 'observe',
|
|
171
|
-
expectedOutcome: 'All plugins HEALTHY; tool registry populated.',
|
|
172
|
-
automatable: false,
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
step: 5,
|
|
176
|
-
title: 'Escalate if restart loop detected',
|
|
177
|
-
action:
|
|
178
|
-
'If the session reaches SESSION_UNRECOVERABLE again within 5 minutes, ' +
|
|
179
|
-
'escalate to human review — the root cause is not self-healing.',
|
|
180
|
-
kind: 'escalate',
|
|
181
|
-
expectedOutcome: 'Human-reviewed root cause identified and resolved.',
|
|
182
|
-
automatable: false,
|
|
183
|
-
},
|
|
184
|
-
],
|
|
185
|
-
escalationCriteria: [
|
|
186
|
-
'SESSION_UNRECOVERABLE fires more than once within 5 minutes',
|
|
187
|
-
'Session state file cannot be written (disk full, permission denied)',
|
|
188
|
-
'All plugins fail to reconnect after session restart',
|
|
189
|
-
'Runtime process exits immediately after restart attempt',
|
|
190
|
-
],
|
|
191
|
-
tags: ['session', 'unrecoverable', 'cascade', 'critical'],
|
|
192
|
-
};
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
/** Session unrecoverable resolution playbook. */
|
|
196
|
-
export const sessionUnrecoverablePlaybook: Playbook = createSessionUnrecoverablePlaybook();
|
|
@@ -1,197 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Playbook: Stuck Turn / Task
|
|
3
|
-
*
|
|
4
|
-
* Diagnoses and resolves turns or tasks that have stopped progressing.
|
|
5
|
-
* Common causes: LLM timeout, tool deadlock, event loop stall.
|
|
6
|
-
*/
|
|
7
|
-
import type { Playbook, DiagnosticCheckResult } from '@pellux/goodvibes-sdk/platform/runtime/ops/types';
|
|
8
|
-
import { safeCheck } from '@pellux/goodvibes-sdk/platform/runtime/ops/safe-check';
|
|
9
|
-
import type { OpsRuntimeContextState } from '@pellux/goodvibes-sdk/platform/runtime/ops/runtime-context';
|
|
10
|
-
|
|
11
|
-
export function createStuckTurnPlaybook(
|
|
12
|
-
getRuntimeContext: () => OpsRuntimeContextState | null = () => null,
|
|
13
|
-
): Playbook {
|
|
14
|
-
return {
|
|
15
|
-
id: 'stuck-turn',
|
|
16
|
-
name: 'Stuck Turn / Task',
|
|
17
|
-
description:
|
|
18
|
-
'Diagnoses turns or tasks that have stopped progressing. ' +
|
|
19
|
-
'Covers LLM timeout, tool deadlock, and event-loop stall scenarios.',
|
|
20
|
-
symptoms: [
|
|
21
|
-
'Turn has been in-flight longer than the configured timeout',
|
|
22
|
-
'No new events emitted on the task event bus for > 30 s',
|
|
23
|
-
'Spinner/progress indicator frozen in TUI',
|
|
24
|
-
'CPU near 0% with pending async operations',
|
|
25
|
-
'Health check reports degraded turn throughput',
|
|
26
|
-
],
|
|
27
|
-
checks: [
|
|
28
|
-
{
|
|
29
|
-
id: 'turn.timeout-elapsed',
|
|
30
|
-
label: 'Turn timeout elapsed',
|
|
31
|
-
description: 'Checks whether the active turn has exceeded its configured timeout.',
|
|
32
|
-
run: async (): Promise<DiagnosticCheckResult> =>
|
|
33
|
-
safeCheck(async () => {
|
|
34
|
-
const runtime = getRuntimeContext();
|
|
35
|
-
if (!runtime) {
|
|
36
|
-
return {
|
|
37
|
-
passed: false,
|
|
38
|
-
summary: 'Ops runtime context is not configured.',
|
|
39
|
-
severity: 'warning',
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
const { conversation } = runtime.store.getState();
|
|
43
|
-
if (!conversation.currentTurnId || !conversation.turnStartedAt || conversation.turnState === 'idle') {
|
|
44
|
-
return {
|
|
45
|
-
passed: true,
|
|
46
|
-
summary: 'No active turn is currently in flight.',
|
|
47
|
-
severity: 'info',
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
const elapsedMs = runtime.now() - conversation.turnStartedAt;
|
|
51
|
-
const thresholdMs = 30_000;
|
|
52
|
-
const exceeded = elapsedMs > thresholdMs;
|
|
53
|
-
return {
|
|
54
|
-
passed: !exceeded,
|
|
55
|
-
summary: exceeded
|
|
56
|
-
? `Active turn ${conversation.currentTurnId} has exceeded ${thresholdMs}ms (${elapsedMs}ms elapsed).`
|
|
57
|
-
: `Active turn ${conversation.currentTurnId} is still within the ${thresholdMs}ms threshold.`,
|
|
58
|
-
severity: exceeded ? 'error' : 'info',
|
|
59
|
-
context: {
|
|
60
|
-
turnId: conversation.currentTurnId,
|
|
61
|
-
turnState: conversation.turnState,
|
|
62
|
-
elapsedMs,
|
|
63
|
-
thresholdMs,
|
|
64
|
-
},
|
|
65
|
-
};
|
|
66
|
-
}),
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
id: 'turn.event-bus-silent',
|
|
70
|
-
label: 'Event bus silent',
|
|
71
|
-
description: 'Checks whether the RuntimeEventBus has emitted any events recently.',
|
|
72
|
-
run: async (): Promise<DiagnosticCheckResult> =>
|
|
73
|
-
safeCheck(async () => {
|
|
74
|
-
const runtime = getRuntimeContext();
|
|
75
|
-
if (!runtime) {
|
|
76
|
-
return {
|
|
77
|
-
passed: false,
|
|
78
|
-
summary: 'Ops runtime context is not configured.',
|
|
79
|
-
severity: 'warning',
|
|
80
|
-
};
|
|
81
|
-
}
|
|
82
|
-
const silenceMs = runtime.now() - runtime.lastEventAt;
|
|
83
|
-
const thresholdMs = 30_000;
|
|
84
|
-
const silent = silenceMs > thresholdMs;
|
|
85
|
-
return {
|
|
86
|
-
passed: !silent,
|
|
87
|
-
summary: silent
|
|
88
|
-
? `No runtime events have been observed for ${silenceMs}ms.`
|
|
89
|
-
: `Runtime event flow is active (${silenceMs}ms since the last event).`,
|
|
90
|
-
severity: silent ? 'warning' : 'info',
|
|
91
|
-
context: {
|
|
92
|
-
silenceMs,
|
|
93
|
-
thresholdMs,
|
|
94
|
-
lastEventAt: runtime.lastEventAt,
|
|
95
|
-
},
|
|
96
|
-
};
|
|
97
|
-
}),
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
id: 'turn.pending-tool-calls',
|
|
101
|
-
label: 'Pending tool calls',
|
|
102
|
-
description: 'Checks for tool calls that have been dispatched but not yet resolved.',
|
|
103
|
-
run: async (): Promise<DiagnosticCheckResult> =>
|
|
104
|
-
safeCheck(async () => {
|
|
105
|
-
const runtime = getRuntimeContext();
|
|
106
|
-
if (!runtime) {
|
|
107
|
-
return {
|
|
108
|
-
passed: false,
|
|
109
|
-
summary: 'Ops runtime context is not configured.',
|
|
110
|
-
severity: 'warning',
|
|
111
|
-
};
|
|
112
|
-
}
|
|
113
|
-
const { conversation, permissions } = runtime.store.getState();
|
|
114
|
-
const pendingToolCalls = conversation.activeToolCalls.size;
|
|
115
|
-
const awaitingDecision = permissions.awaitingDecision;
|
|
116
|
-
const blocked = pendingToolCalls > 0 || awaitingDecision;
|
|
117
|
-
return {
|
|
118
|
-
passed: !blocked,
|
|
119
|
-
summary: blocked
|
|
120
|
-
? `Detected ${pendingToolCalls} active tool call(s)${awaitingDecision ? ' with a permission decision still pending' : ''}.`
|
|
121
|
-
: 'No active tool calls or pending permission decisions detected.',
|
|
122
|
-
severity: blocked ? 'warning' : 'info',
|
|
123
|
-
context: {
|
|
124
|
-
pendingToolCalls,
|
|
125
|
-
awaitingDecision,
|
|
126
|
-
},
|
|
127
|
-
};
|
|
128
|
-
}),
|
|
129
|
-
},
|
|
130
|
-
],
|
|
131
|
-
steps: [
|
|
132
|
-
{
|
|
133
|
-
step: 1,
|
|
134
|
-
title: 'Identify stuck span',
|
|
135
|
-
action:
|
|
136
|
-
'Query the active span list from the RuntimeTracer. ' +
|
|
137
|
-
'Look for spans with durationMs > turnTimeoutMs and status UNSET.',
|
|
138
|
-
kind: 'observe',
|
|
139
|
-
expectedOutcome: 'One or more spans identified as candidates.',
|
|
140
|
-
automatable: false,
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
step: 2,
|
|
144
|
-
title: 'Check for tool deadlock',
|
|
145
|
-
action:
|
|
146
|
-
'Inspect the PhasedToolExecutor queue for tools awaiting permissions or locks. ' +
|
|
147
|
-
'Cross-reference with PermissionManager.pendingRequests().',
|
|
148
|
-
kind: 'observe',
|
|
149
|
-
command: 'runtime.tools.executor.dumpState()',
|
|
150
|
-
expectedOutcome: 'Tool queue is empty or shows a specific blocked tool.',
|
|
151
|
-
automatable: false,
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
step: 3,
|
|
155
|
-
title: 'Cancel the stuck turn',
|
|
156
|
-
action:
|
|
157
|
-
'Emit a task.cancel event on the RuntimeEventBus with the stuck taskId. ' +
|
|
158
|
-
'The TaskStateMachine should transition to CANCELLED within 1 s.',
|
|
159
|
-
kind: 'command',
|
|
160
|
-
command: 'eventBus.emit("task.cancel", { taskId })',
|
|
161
|
-
expectedOutcome: 'Turn transitions to CANCELLED; health check recovers.',
|
|
162
|
-
automatable: true,
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
step: 4,
|
|
166
|
-
title: 'Restart turn with reduced timeout',
|
|
167
|
-
action:
|
|
168
|
-
'Re-submit the failed turn with a shorter LLM timeout (e.g. 30 s) and ' +
|
|
169
|
-
'tool-use disabled to isolate whether the model or a tool is the root cause.',
|
|
170
|
-
kind: 'command',
|
|
171
|
-
command: 'runtime.submitTurn({ ...turnPayload, timeoutMs: 30_000, tools: [] })',
|
|
172
|
-
expectedOutcome: 'Turn completes or fails fast with a clear error.',
|
|
173
|
-
automatable: false,
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
step: 5,
|
|
177
|
-
title: 'Review LLM provider health',
|
|
178
|
-
action:
|
|
179
|
-
'Check the provider health dashboard or call the provider status endpoint. ' +
|
|
180
|
-
'Consider switching to a fallback provider if degraded.',
|
|
181
|
-
kind: 'observe',
|
|
182
|
-
expectedOutcome: 'Provider status confirmed healthy or fallback selected.',
|
|
183
|
-
automatable: false,
|
|
184
|
-
},
|
|
185
|
-
],
|
|
186
|
-
escalationCriteria: [
|
|
187
|
-
'Multiple consecutive turns stuck after attempting cancel+restart',
|
|
188
|
-
'Event loop stall confirmed by > 60 s with zero runtime events',
|
|
189
|
-
'Memory usage growing continuously without turns completing',
|
|
190
|
-
'Core health check reports CRITICAL for > 5 minutes',
|
|
191
|
-
],
|
|
192
|
-
tags: ['turn', 'task', 'timeout', 'deadlock', 'llm'],
|
|
193
|
-
};
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
/** Stuck turn / task resolution playbook. */
|
|
197
|
-
export const stuckTurnPlaybook: Playbook = createStuckTurnPlaybook();
|
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import { AsyncLocalStorage } from 'async_hooks';
|
|
2
|
-
import { existsSync, readFileSync } from 'fs';
|
|
3
|
-
import type { RuntimeEventBus } from '@pellux/goodvibes-sdk/platform/runtime/events/index';
|
|
4
|
-
import type { RuntimeStore } from '../store/index.ts';
|
|
5
|
-
import { summarizeError } from '@pellux/goodvibes-sdk/platform/utils/error-display';
|
|
6
|
-
|
|
7
|
-
export interface OpsRuntimeContextConfig {
|
|
8
|
-
runtimeBus: RuntimeEventBus;
|
|
9
|
-
store: RuntimeStore;
|
|
10
|
-
recoveryFilePath: string;
|
|
11
|
-
lastSessionPointerPath: string;
|
|
12
|
-
now?: () => number;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
export interface OpsRuntimeContextState {
|
|
16
|
-
runtimeBus: RuntimeEventBus;
|
|
17
|
-
store: RuntimeStore;
|
|
18
|
-
recoveryFilePath: string;
|
|
19
|
-
lastSessionPointerPath: string;
|
|
20
|
-
now: () => number;
|
|
21
|
-
lastEventAt: number;
|
|
22
|
-
sessionRecoveryFailedAt?: number;
|
|
23
|
-
sessionRecoveryFailedCount: number;
|
|
24
|
-
detach: () => void;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
const OBSERVED_DOMAINS = [
|
|
28
|
-
'session',
|
|
29
|
-
'turn',
|
|
30
|
-
'tools',
|
|
31
|
-
'tasks',
|
|
32
|
-
'agents',
|
|
33
|
-
'workflows',
|
|
34
|
-
'providers',
|
|
35
|
-
'permissions',
|
|
36
|
-
'planner',
|
|
37
|
-
'plugins',
|
|
38
|
-
'mcp',
|
|
39
|
-
'transport',
|
|
40
|
-
'ops',
|
|
41
|
-
] as const;
|
|
42
|
-
|
|
43
|
-
const scopedContext = new AsyncLocalStorage<OpsRuntimeContextState | null>();
|
|
44
|
-
|
|
45
|
-
function createOpsRuntimeContextState(config: OpsRuntimeContextConfig): OpsRuntimeContextState {
|
|
46
|
-
const now = config.now ?? Date.now;
|
|
47
|
-
const unsubs = OBSERVED_DOMAINS.map((domain) =>
|
|
48
|
-
config.runtimeBus.onDomain(domain, (envelope) => {
|
|
49
|
-
state.lastEventAt = envelope.ts;
|
|
50
|
-
if (envelope.type === 'SESSION_RECOVERY_FAILED') {
|
|
51
|
-
state.sessionRecoveryFailedAt = envelope.ts;
|
|
52
|
-
state.sessionRecoveryFailedCount += 1;
|
|
53
|
-
}
|
|
54
|
-
}));
|
|
55
|
-
|
|
56
|
-
const state: OpsRuntimeContextState = {
|
|
57
|
-
runtimeBus: config.runtimeBus,
|
|
58
|
-
store: config.store,
|
|
59
|
-
recoveryFilePath: config.recoveryFilePath,
|
|
60
|
-
lastSessionPointerPath: config.lastSessionPointerPath,
|
|
61
|
-
now,
|
|
62
|
-
lastEventAt: now(),
|
|
63
|
-
sessionRecoveryFailedCount: 0,
|
|
64
|
-
detach: () => {
|
|
65
|
-
for (const unsub of unsubs) unsub();
|
|
66
|
-
},
|
|
67
|
-
};
|
|
68
|
-
return state;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
export async function withOpsRuntimeContext<T>(
|
|
72
|
-
config: OpsRuntimeContextConfig,
|
|
73
|
-
fn: () => Promise<T> | T,
|
|
74
|
-
): Promise<T> {
|
|
75
|
-
const state = createOpsRuntimeContextState(config);
|
|
76
|
-
try {
|
|
77
|
-
return await scopedContext.run(state, fn);
|
|
78
|
-
} finally {
|
|
79
|
-
state.detach();
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
export function readRecoveryFileMetadata(path: string): { ok: boolean; summary: string } {
|
|
84
|
-
if (!existsSync(path)) {
|
|
85
|
-
return { ok: false, summary: 'Recovery file does not exist.' };
|
|
86
|
-
}
|
|
87
|
-
try {
|
|
88
|
-
const [firstLine] = readFileSync(path, 'utf-8').split('\n');
|
|
89
|
-
if (!firstLine) {
|
|
90
|
-
return { ok: false, summary: 'Recovery file exists but is empty.' };
|
|
91
|
-
}
|
|
92
|
-
JSON.parse(firstLine);
|
|
93
|
-
return { ok: true, summary: 'Recovery file exists and has valid metadata.' };
|
|
94
|
-
} catch (error) {
|
|
95
|
-
return {
|
|
96
|
-
ok: false,
|
|
97
|
-
summary: `Recovery file is not parseable: ${summarizeError(error)}`,
|
|
98
|
-
};
|
|
99
|
-
}
|
|
100
|
-
}
|
package/src/runtime/ops-api.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import type { RuntimeTask } from '@pellux/goodvibes-sdk/platform/runtime/store/domains/tasks';
|
|
2
|
-
import type { UiTasksSnapshot } from './ui-read-models.ts';
|
|
3
|
-
import type { TaskCreateParams, TaskFailParams, TaskUpdateParams } from '@pellux/goodvibes-sdk/platform/runtime/tasks/types';
|
|
4
|
-
|
|
5
|
-
export interface OpsTaskApi {
|
|
6
|
-
snapshot(): UiTasksSnapshot;
|
|
7
|
-
list(limit?: number): readonly RuntimeTask[];
|
|
8
|
-
get(taskId: string): RuntimeTask | null;
|
|
9
|
-
running(): readonly RuntimeTask[];
|
|
10
|
-
create(input: TaskCreateParams): RuntimeTask;
|
|
11
|
-
update(taskId: string, input: TaskUpdateParams): RuntimeTask;
|
|
12
|
-
complete(taskId: string, result?: unknown): RuntimeTask;
|
|
13
|
-
fail(taskId: string, input: TaskFailParams): RuntimeTask;
|
|
14
|
-
cancel(taskId: string, note?: string): void;
|
|
15
|
-
pause(taskId: string, note?: string): void;
|
|
16
|
-
resume(taskId: string, note?: string): void;
|
|
17
|
-
retry(taskId: string, note?: string): void;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export interface OpsAgentApi {
|
|
21
|
-
cancel(agentId: string, note?: string): void;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export interface OpsApi {
|
|
25
|
-
readonly tasks: OpsTaskApi;
|
|
26
|
-
readonly agents: OpsAgentApi;
|
|
27
|
-
}
|