@adhdev/daemon-core 0.9.82-rc.49 → 0.9.82-rc.491
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/dist/boot/daemon-lifecycle.d.ts +9 -0
- package/dist/boot/process-hardening.d.ts +50 -0
- package/dist/build-info.d.ts +37 -0
- package/dist/chat/source-machine.d.ts +166 -0
- package/dist/chat/source-resolver.d.ts +104 -0
- package/dist/chat/subscription-updates.d.ts +1 -0
- package/dist/cli-adapter-types.d.ts +68 -2
- package/dist/cli-adapters/cli-script-runner.d.ts +117 -0
- package/dist/cli-adapters/cli-state-engine.d.ts +220 -0
- package/dist/cli-adapters/provider-cli-adapter.d.ts +137 -64
- package/dist/cli-adapters/provider-cli-parse.d.ts +5 -0
- package/dist/cli-adapters/provider-cli-runtime.d.ts +34 -0
- package/dist/cli-adapters/provider-cli-shared.d.ts +74 -0
- package/dist/cli-adapters/pty-write-chunking.d.ts +34 -0
- package/dist/cli-adapters/raw-terminal-io.d.ts +37 -0
- package/dist/cli-adapters/resolve-executable.d.ts +69 -0
- package/dist/cli-adapters/terminal-backends/ghostty-vt-backend.d.ts +6 -3
- package/dist/cli-adapters/terminal-backends/types.d.ts +10 -2
- package/dist/cli-adapters/terminal-screen.d.ts +4 -11
- package/dist/commands/chat-commands-debug-bundle.d.ts +14 -0
- package/dist/commands/chat-commands-read.d.ts +23 -0
- package/dist/commands/chat-commands-scope.d.ts +39 -0
- package/dist/commands/chat-commands-shared.d.ts +33 -0
- package/dist/commands/chat-commands-write.d.ts +14 -0
- package/dist/commands/chat-commands.d.ts +10 -23
- package/dist/commands/cli-manager.d.ts +71 -1
- package/dist/commands/handler.d.ts +125 -0
- package/dist/commands/high-family/index.d.ts +3 -0
- package/dist/commands/high-family/mesh-coordinator-launch.d.ts +2 -0
- package/dist/commands/high-family/mesh-events.d.ts +2 -0
- package/dist/commands/high-family/mesh-status.d.ts +2 -0
- package/dist/commands/high-family/types.d.ts +64 -0
- package/dist/commands/low-family/coordinator-prompt.d.ts +9 -0
- package/dist/commands/low-family/daemon-lifecycle.d.ts +2 -0
- package/dist/commands/low-family/diagnostics.d.ts +2 -0
- package/dist/commands/low-family/index.d.ts +3 -0
- package/dist/commands/low-family/mesh-ledger.d.ts +10 -0
- package/dist/commands/low-family/mesh-node-logs.d.ts +2 -0
- package/dist/commands/low-family/notification.d.ts +2 -0
- package/dist/commands/low-family/refine-config.d.ts +2 -0
- package/dist/commands/low-family/session-host.d.ts +2 -0
- package/dist/commands/low-family/spec-providerdev.d.ts +11 -0
- package/dist/commands/low-family/status-meta.d.ts +2 -0
- package/dist/commands/low-family/types.d.ts +33 -0
- package/dist/commands/med-family/cli-agent.d.ts +2 -0
- package/dist/commands/med-family/fast-forward.d.ts +2 -0
- package/dist/commands/med-family/ide.d.ts +10 -0
- package/dist/commands/med-family/index.d.ts +3 -0
- package/dist/commands/med-family/mesh-crud.d.ts +48 -0
- package/dist/commands/med-family/mesh-host-pairing.d.ts +2 -0
- package/dist/commands/med-family/mesh-queue.d.ts +2 -0
- package/dist/commands/med-family/mesh-restart.d.ts +2 -0
- package/dist/commands/med-family/types.d.ts +152 -0
- package/dist/commands/mesh-coordinator.d.ts +85 -1
- package/dist/commands/router-aggregate-status.d.ts +24 -0
- package/dist/commands/router-mesh-session-owner.d.ts +59 -0
- package/dist/commands/router-refine.d.ts +151 -0
- package/dist/commands/router-worktree-cleanup.d.ts +133 -0
- package/dist/commands/router.d.ts +203 -15
- package/dist/commands/upgrade-helper.d.ts +41 -1
- package/dist/config/chat-history.d.ts +11 -0
- package/dist/config/config.d.ts +19 -0
- package/dist/config/mesh-config.d.ts +66 -0
- package/dist/config/mesh-json-config.d.ts +199 -0
- package/dist/config/registry-resolver.d.ts +54 -0
- package/dist/config/repo-settings.d.ts +77 -0
- package/dist/config/state-store.d.ts +30 -0
- package/dist/daemon/dev-server.d.ts +0 -2
- package/dist/detection/cli-detector.d.ts +17 -0
- package/dist/detection/ide-detector.d.ts +13 -0
- package/dist/detection/win32-ide-version.d.ts +37 -0
- package/dist/git/change-impact-config.d.ts +159 -0
- package/dist/git/git-commands.d.ts +26 -2
- package/dist/git/git-diff.d.ts +6 -0
- package/dist/git/git-executor.d.ts +11 -0
- package/dist/git/git-status.d.ts +80 -0
- package/dist/git/git-types.d.ts +2 -50
- package/dist/git/git-worktree.d.ts +71 -1
- package/dist/git/index.d.ts +3 -1
- package/dist/index.d.ts +70 -17
- package/dist/index.js +53556 -19074
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +53380 -19063
- package/dist/index.mjs.map +1 -1
- package/dist/installer.d.ts +1 -4
- package/dist/ipc/local-ipc-server.d.ts +91 -0
- package/dist/launch.d.ts +1 -1
- package/dist/logging/async-batch-writer.d.ts +10 -0
- package/dist/logging/debug-config.d.ts +16 -0
- package/dist/logging/log-redactor.d.ts +24 -0
- package/dist/logging/log-tail-reader.d.ts +81 -0
- package/dist/logging/logger.d.ts +1 -1
- package/dist/mesh/contracts.d.ts +256 -0
- package/dist/mesh/coordinator-prompt.d.ts +76 -0
- package/dist/mesh/coordinator-registry.d.ts +59 -0
- package/dist/mesh/mesh-active-work.d.ts +203 -0
- package/dist/mesh/mesh-clone-grace.d.ts +8 -0
- package/dist/mesh/mesh-completion-synthesis.d.ts +4 -0
- package/dist/mesh/mesh-coordinator-config.d.ts +21 -0
- package/dist/mesh/mesh-delivery-policy.d.ts +104 -0
- package/dist/mesh/mesh-event-classify.d.ts +7 -0
- package/dist/mesh/mesh-event-forwarding.d.ts +58 -0
- package/dist/mesh/mesh-event-trace.d.ts +21 -0
- package/dist/mesh/mesh-events-coordinator.d.ts +4 -0
- package/dist/mesh/mesh-events-pending.d.ts +258 -0
- package/dist/mesh/mesh-events-stale.d.ts +61 -0
- package/dist/mesh/mesh-events-utils.d.ts +75 -0
- package/dist/mesh/mesh-events.d.ts +6 -49
- package/dist/mesh/mesh-fast-forward.d.ts +81 -0
- package/dist/mesh/mesh-host-ownership.d.ts +21 -1
- package/dist/mesh/mesh-init.d.ts +128 -0
- package/dist/mesh/mesh-ledger-reconciliation.d.ts +23 -4
- package/dist/mesh/mesh-ledger.d.ts +139 -1
- package/dist/mesh/mesh-magi-status.d.ts +63 -0
- package/dist/mesh/mesh-missions.d.ts +281 -0
- package/dist/mesh/mesh-node-identity.d.ts +310 -0
- package/dist/mesh/mesh-queue-assignment.d.ts +162 -0
- package/dist/mesh/mesh-reconcile-acked-hold.d.ts +17 -0
- package/dist/mesh/mesh-reconcile-config.d.ts +6 -0
- package/dist/mesh/mesh-reconcile-identity.d.ts +6 -0
- package/dist/mesh/mesh-reconcile-loop.d.ts +84 -0
- package/dist/mesh/mesh-reconcile-v2-backstop.d.ts +16 -0
- package/dist/mesh/mesh-refine-batch.d.ts +68 -0
- package/dist/mesh/mesh-refine-gates.d.ts +457 -0
- package/dist/mesh/mesh-refine-status.d.ts +62 -0
- package/dist/mesh/mesh-remote-event-pull.d.ts +15 -0
- package/dist/mesh/mesh-review-inbox.d.ts +90 -0
- package/dist/mesh/mesh-routing.d.ts +70 -0
- package/dist/mesh/mesh-runtime-store.d.ts +567 -0
- package/dist/mesh/mesh-scheduling-runtime.d.ts +78 -0
- package/dist/mesh/mesh-task-inflight.d.ts +46 -0
- package/dist/mesh/mesh-task-stats.d.ts +49 -0
- package/dist/mesh/mesh-unresolved-forward-outbox.d.ts +34 -0
- package/dist/mesh/mesh-warmup-deadline.d.ts +68 -0
- package/dist/mesh/mesh-work-queue.d.ts +392 -1
- package/dist/mesh/preview-freshness.d.ts +28 -0
- package/dist/mesh/refine-config.d.ts +97 -0
- package/dist/mesh/worktree-bootstrap-config.d.ts +219 -0
- package/dist/providers/acp-provider-instance.d.ts +5 -0
- package/dist/providers/approval-utils.d.ts +46 -0
- package/dist/providers/chat-message-normalization.d.ts +58 -1
- package/dist/providers/cli-provider-effect-format.d.ts +30 -0
- package/dist/providers/cli-provider-history-dedup.d.ts +17 -0
- package/dist/providers/cli-provider-input-prompt.d.ts +12 -0
- package/dist/providers/cli-provider-instance-types.d.ts +45 -0
- package/dist/providers/cli-provider-instance.d.ts +426 -30
- package/dist/providers/cli-provider-status-helpers.d.ts +46 -0
- package/dist/providers/cli-provider-transcript-merge.d.ts +7 -0
- package/dist/providers/contracts.d.ts +196 -6
- package/dist/providers/external-sources.d.ts +71 -0
- package/dist/providers/manual-attendance.d.ts +79 -0
- package/dist/providers/native-history/antigravity-claim-registry.d.ts +39 -0
- package/dist/providers/native-history/antigravity-cli-transcript.d.ts +137 -0
- package/dist/providers/native-history/claude-cli-transcript.d.ts +70 -0
- package/dist/providers/native-history/codex-cli-transcript.d.ts +73 -0
- package/dist/providers/native-history/constants.d.ts +12 -0
- package/dist/providers/native-history/dispatcher.d.ts +44 -0
- package/dist/providers/native-history/hermes-cli-transcript.d.ts +30 -0
- package/dist/providers/native-history/index.d.ts +13 -0
- package/dist/providers/provider-instance-manager.d.ts +30 -0
- package/dist/providers/provider-instance.d.ts +31 -1
- package/dist/providers/provider-loader.d.ts +42 -5
- package/dist/providers/provider-trust.d.ts +31 -0
- package/dist/providers/read-chat-contract.d.ts +29 -0
- package/dist/providers/sdk/v1/builders/acp/detect-status.d.ts +68 -0
- package/dist/providers/sdk/v1/builders/cli/detect-status.d.ts +86 -0
- package/dist/providers/sdk/v1/builders/cli/parse-approval-squash.d.ts +59 -0
- package/dist/providers/sdk/v1/builders/cli/parse-approval.d.ts +65 -0
- package/dist/providers/sdk/v1/builders/cli/parse-session.d.ts +91 -0
- package/dist/providers/sdk/v1/builders/cli/visible-region.d.ts +42 -0
- package/dist/providers/sdk/v1/fixture-tooling/format.d.ts +126 -0
- package/dist/providers/sdk/v1/fixture-tooling/index.d.ts +8 -0
- package/dist/providers/sdk/v1/fixture-tooling/replay.d.ts +38 -0
- package/dist/providers/sdk/v1/index.d.ts +30 -0
- package/dist/providers/sdk/v1/sandbox/README-design.d.ts +193 -0
- package/dist/providers/sdk/v1/sandbox/require-whitelist.d.ts +74 -0
- package/dist/providers/sdk/v1/sandbox/script-runner.d.ts +98 -0
- package/dist/providers/sdk/v1/types/cli/index.d.ts +277 -0
- package/dist/providers/sdk/v1/types/common/index.d.ts +203 -0
- package/dist/providers/sdk/v1/validators/index.d.ts +5 -0
- package/dist/providers/sdk/v1/validators/manifest.d.ts +40 -0
- package/dist/providers/sdk/v1/validators/taint.d.ts +52 -0
- package/dist/providers/spec/adapter.d.ts +98 -0
- package/dist/providers/spec/cli-adapter.d.ts +223 -0
- package/dist/providers/spec/evaluator.d.ts +45 -0
- package/dist/providers/spec/fsm-driver.d.ts +449 -0
- package/dist/providers/spec/fsm-evaluator.d.ts +93 -0
- package/dist/providers/spec/fsm-loader.d.ts +14 -0
- package/dist/providers/spec/fsm-types.d.ts +202 -0
- package/dist/providers/spec/native-history-executor.d.ts +41 -0
- package/dist/providers/spec/pre-launch-trust.d.ts +16 -0
- package/dist/providers/spec/route.d.ts +4 -0
- package/dist/providers/spec/types.d.ts +244 -0
- package/dist/providers/status-monitor.d.ts +7 -7
- package/dist/providers/transcript-v2.d.ts +176 -0
- package/dist/providers/types/interactive-prompt.d.ts +84 -0
- package/dist/providers/working-dir.d.ts +17 -0
- package/dist/repo-mesh-types.d.ts +616 -12
- package/dist/runtime-defaults.d.ts +2 -0
- package/dist/session-host/managed-host.d.ts +64 -0
- package/dist/session-host/runtime-surface.d.ts +10 -16
- package/dist/sessions/registry.d.ts +26 -0
- package/dist/shared-types-extra.d.ts +2 -4
- package/dist/shared-types.d.ts +110 -55
- package/dist/status/chat-tail-hot-sessions.d.ts +40 -0
- package/dist/status/normalize.d.ts +1 -1
- package/dist/status/normalize.js +1 -0
- package/dist/status/normalize.js.map +1 -1
- package/dist/status/normalize.mjs +1 -0
- package/dist/status/normalize.mjs.map +1 -1
- package/dist/status/reporter.d.ts +2 -0
- package/dist/status/snapshot.d.ts +27 -0
- package/dist/system/hash.d.ts +8 -0
- package/dist/system/load-better-sqlite3.d.ts +21 -0
- package/dist/types.d.ts +20 -6
- package/package.json +11 -4
- package/src/agent-stream/poller.ts +2 -3
- package/src/agent-stream/provider-adapter.ts +1 -1
- package/src/boot/daemon-lifecycle.ts +80 -14
- package/src/boot/process-hardening.ts +89 -0
- package/src/build-info.ts +73 -0
- package/src/chat/source-machine.ts +534 -0
- package/src/chat/source-resolver.ts +0 -0
- package/src/chat/subscription-updates.ts +20 -1
- package/src/cli-adapter-types.d.ts +3 -1
- package/src/cli-adapter-types.ts +68 -2
- package/src/cli-adapters/cli-script-runner.ts +421 -0
- package/src/cli-adapters/cli-state-engine.ts +1282 -0
- package/src/cli-adapters/provider-cli-adapter.d.ts +1 -1
- package/src/cli-adapters/provider-cli-adapter.ts +1048 -1143
- package/src/cli-adapters/provider-cli-parse.d.ts +2 -0
- package/src/cli-adapters/provider-cli-parse.ts +19 -0
- package/src/cli-adapters/provider-cli-runtime.ts +56 -7
- package/src/cli-adapters/provider-cli-shared.d.ts +4 -0
- package/src/cli-adapters/provider-cli-shared.ts +121 -11
- package/src/cli-adapters/pty-transport.ts +2 -1
- package/src/cli-adapters/pty-write-chunking.ts +106 -0
- package/src/cli-adapters/raw-terminal-io.ts +252 -0
- package/src/cli-adapters/resolve-executable.ts +204 -0
- package/src/cli-adapters/session-host-transport.ts +2 -1
- package/src/cli-adapters/terminal-backends/ghostty-vt-backend.ts +63 -29
- package/src/cli-adapters/terminal-backends/types.ts +10 -3
- package/src/cli-adapters/terminal-screen.ts +16 -81
- package/src/commands/chat-commands-debug-bundle.ts +398 -0
- package/src/commands/chat-commands-read.ts +2788 -0
- package/src/commands/chat-commands-scope.ts +54 -0
- package/src/commands/chat-commands-shared.ts +114 -0
- package/src/commands/chat-commands-write.ts +891 -0
- package/src/commands/chat-commands.ts +19 -1841
- package/src/commands/cli-manager.d.ts +2 -0
- package/src/commands/cli-manager.ts +724 -27
- package/src/commands/handler.ts +865 -2
- package/src/commands/high-family/index.ts +28 -0
- package/src/commands/high-family/mesh-coordinator-launch.ts +696 -0
- package/src/commands/high-family/mesh-events.ts +102 -0
- package/src/commands/high-family/mesh-status.ts +857 -0
- package/src/commands/high-family/types.ts +80 -0
- package/src/commands/low-family/coordinator-prompt.ts +125 -0
- package/src/commands/low-family/daemon-lifecycle.ts +120 -0
- package/src/commands/low-family/diagnostics.ts +57 -0
- package/src/commands/low-family/index.ts +37 -0
- package/src/commands/low-family/mesh-ledger.ts +62 -0
- package/src/commands/low-family/mesh-node-logs.ts +87 -0
- package/src/commands/low-family/notification.ts +116 -0
- package/src/commands/low-family/refine-config.ts +106 -0
- package/src/commands/low-family/session-host.ts +282 -0
- package/src/commands/low-family/spec-providerdev.ts +217 -0
- package/src/commands/low-family/status-meta.ts +112 -0
- package/src/commands/low-family/types.ts +39 -0
- package/src/commands/med-family/cli-agent.ts +270 -0
- package/src/commands/med-family/fast-forward.ts +230 -0
- package/src/commands/med-family/ide.ts +163 -0
- package/src/commands/med-family/index.ts +37 -0
- package/src/commands/med-family/mesh-crud.ts +1309 -0
- package/src/commands/med-family/mesh-host-pairing.ts +234 -0
- package/src/commands/med-family/mesh-queue.ts +167 -0
- package/src/commands/med-family/mesh-restart.ts +92 -0
- package/src/commands/med-family/types.ts +153 -0
- package/src/commands/mesh-coordinator.ts +334 -124
- package/src/commands/router-aggregate-status.ts +209 -0
- package/src/commands/router-mesh-session-owner.ts +114 -0
- package/src/commands/router-refine.ts +1794 -0
- package/src/commands/router-worktree-cleanup.ts +870 -0
- package/src/commands/router.ts +567 -4149
- package/src/commands/stream-commands.ts +8 -0
- package/src/commands/upgrade-helper.ts +310 -45
- package/src/config/chat-history.ts +517 -24
- package/src/config/config.ts +30 -0
- package/src/config/mesh-config.ts +300 -24
- package/src/config/mesh-json-config.ts +376 -0
- package/src/config/recent-activity.ts +8 -2
- package/src/config/registry-resolver.ts +100 -0
- package/src/config/repo-settings.ts +111 -0
- package/src/config/state-store.ts +55 -0
- package/src/daemon/dev-auto-implement.ts +3 -2
- package/src/daemon/dev-cli-debug.ts +10 -1
- package/src/daemon/dev-server.ts +0 -541
- package/src/detection/cli-detector.ts +94 -9
- package/src/detection/ide-detector.ts +55 -16
- package/src/detection/win32-ide-version.ts +106 -0
- package/src/git/change-impact-config.ts +354 -0
- package/src/git/git-commands.ts +112 -16
- package/src/git/git-diff.ts +81 -11
- package/src/git/git-executor.ts +12 -0
- package/src/git/git-status.ts +822 -48
- package/src/git/git-types.ts +14 -62
- package/src/git/git-worktree.ts +261 -4
- package/src/git/index.ts +17 -0
- package/src/index.ts +190 -13
- package/src/installer.d.ts +1 -1
- package/src/installer.ts +8 -6
- package/src/ipc/local-ipc-server.ts +278 -0
- package/src/launch.d.ts +1 -1
- package/src/launch.ts +37 -28
- package/src/logging/async-batch-writer.ts +55 -0
- package/src/logging/command-log.ts +7 -5
- package/src/logging/debug-config.ts +25 -0
- package/src/logging/debug-trace.ts +7 -2
- package/src/logging/log-redactor.ts +100 -0
- package/src/logging/log-tail-reader.ts +341 -0
- package/src/logging/logger.ts +14 -7
- package/src/mesh/contracts.ts +510 -0
- package/src/mesh/coordinator-prompt.ts +627 -34
- package/src/mesh/coordinator-registry.ts +121 -0
- package/src/mesh/mesh-active-work.ts +706 -0
- package/src/mesh/mesh-clone-grace.ts +68 -0
- package/src/mesh/mesh-completion-synthesis.ts +416 -0
- package/src/mesh/mesh-coordinator-config.ts +97 -0
- package/src/mesh/mesh-delivery-policy.ts +284 -0
- package/src/mesh/mesh-event-classify.ts +78 -0
- package/src/mesh/mesh-event-forwarding.ts +2030 -0
- package/src/mesh/mesh-event-trace.ts +67 -0
- package/src/mesh/mesh-events-coordinator.ts +32 -0
- package/src/mesh/mesh-events-pending.ts +1548 -0
- package/src/mesh/mesh-events-stale.ts +452 -0
- package/src/mesh/mesh-events-utils.ts +443 -0
- package/src/mesh/mesh-events.ts +43 -1035
- package/src/mesh/mesh-fast-forward.ts +856 -0
- package/src/mesh/mesh-host-ownership.ts +41 -3
- package/src/mesh/mesh-init.ts +350 -0
- package/src/mesh/mesh-ledger-reconciliation.ts +12 -7
- package/src/mesh/mesh-ledger.ts +897 -102
- package/src/mesh/mesh-magi-status.ts +223 -0
- package/src/mesh/mesh-missions.ts +695 -0
- package/src/mesh/mesh-node-identity.ts +2065 -0
- package/src/mesh/mesh-queue-assignment.ts +2498 -0
- package/src/mesh/mesh-reconcile-acked-hold.ts +230 -0
- package/src/mesh/mesh-reconcile-config.ts +66 -0
- package/src/mesh/mesh-reconcile-identity.ts +103 -0
- package/src/mesh/mesh-reconcile-loop.ts +1696 -0
- package/src/mesh/mesh-reconcile-v2-backstop.ts +62 -0
- package/src/mesh/mesh-refine-batch.ts +205 -0
- package/src/mesh/mesh-refine-gates.ts +1792 -0
- package/src/mesh/mesh-refine-status.ts +231 -0
- package/src/mesh/mesh-remote-event-pull.ts +279 -0
- package/src/mesh/mesh-review-inbox.ts +308 -0
- package/src/mesh/mesh-routing.ts +291 -0
- package/src/mesh/mesh-runtime-store.ts +2292 -0
- package/src/mesh/mesh-scheduling-runtime.ts +198 -0
- package/src/mesh/mesh-task-inflight.ts +70 -0
- package/src/mesh/mesh-task-stats.ts +161 -0
- package/src/mesh/mesh-unresolved-forward-outbox.ts +215 -0
- package/src/mesh/mesh-warmup-deadline.ts +152 -0
- package/src/mesh/mesh-work-queue.ts +1489 -145
- package/src/mesh/preview-freshness.ts +163 -0
- package/src/mesh/refine-config.ts +129 -12
- package/src/mesh/worktree-bootstrap-config.ts +599 -0
- package/src/providers/acp-provider-instance.ts +43 -10
- package/src/providers/approval-utils.d.ts +5 -0
- package/src/providers/approval-utils.ts +100 -6
- package/src/providers/chat-message-normalization.ts +126 -4
- package/src/providers/cli-provider-effect-format.ts +53 -0
- package/src/providers/cli-provider-history-dedup.ts +75 -0
- package/src/providers/cli-provider-input-prompt.ts +133 -0
- package/src/providers/cli-provider-instance-types.ts +131 -0
- package/src/providers/cli-provider-instance.ts +2771 -499
- package/src/providers/cli-provider-status-helpers.ts +123 -0
- package/src/providers/cli-provider-transcript-merge.ts +114 -0
- package/src/providers/contracts.d.ts +55 -0
- package/src/providers/contracts.ts +207 -6
- package/src/providers/extension-provider-instance.ts +12 -7
- package/src/providers/external-sources.ts +218 -0
- package/src/providers/ide-provider-instance.ts +35 -12
- package/src/providers/manual-attendance.ts +105 -0
- package/src/providers/native-history/antigravity-claim-registry.ts +138 -0
- package/src/providers/native-history/antigravity-cli-transcript.ts +1275 -0
- package/src/providers/native-history/claude-cli-transcript.ts +396 -0
- package/src/providers/native-history/codex-cli-transcript.ts +479 -0
- package/src/providers/native-history/constants.ts +19 -0
- package/src/providers/native-history/dispatcher.ts +617 -0
- package/src/providers/native-history/hermes-cli-transcript.ts +312 -0
- package/src/providers/native-history/index.ts +30 -0
- package/src/providers/provider-instance-manager.ts +71 -0
- package/src/providers/provider-instance.ts +24 -1
- package/src/providers/provider-loader.ts +700 -55
- package/src/providers/provider-schema.ts +93 -14
- package/src/providers/provider-trust.ts +114 -0
- package/src/providers/read-chat-contract.ts +76 -16
- package/src/providers/sdk/README.md +49 -0
- package/src/providers/sdk/v1/builders/acp/detect-status.ts +144 -0
- package/src/providers/sdk/v1/builders/cli/detect-status.ts +313 -0
- package/src/providers/sdk/v1/builders/cli/parse-approval-squash.ts +158 -0
- package/src/providers/sdk/v1/builders/cli/parse-approval.ts +261 -0
- package/src/providers/sdk/v1/builders/cli/parse-session.ts +276 -0
- package/src/providers/sdk/v1/builders/cli/visible-region.ts +143 -0
- package/src/providers/sdk/v1/fixture-tooling/format.ts +130 -0
- package/src/providers/sdk/v1/fixture-tooling/index.ts +22 -0
- package/src/providers/sdk/v1/fixture-tooling/replay.ts +352 -0
- package/src/providers/sdk/v1/index.ts +152 -0
- package/src/providers/sdk/v1/sandbox/README-design.ts +195 -0
- package/src/providers/sdk/v1/sandbox/require-whitelist.ts +472 -0
- package/src/providers/sdk/v1/sandbox/script-runner.ts +150 -0
- package/src/providers/sdk/v1/schemas/cli/provider.schema.json +538 -0
- package/src/providers/sdk/v1/schemas/primitives/acp-session-protocol-v1.json +131 -0
- package/src/providers/sdk/v1/schemas/primitives/native-history-codex-rollout-v1.json +66 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-approval-squash-v1.json +91 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-assistant-block-v1.json +91 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-cue-ordering-v1.json +47 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-dispatch-order-v1.json +32 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-footer-chrome-v1.json +42 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-index-finder-v1.json +27 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-modal-v1.json +125 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-prompt-marker-v1.json +45 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-session-id-extraction-v1.json +46 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-settled-prompt-v1.json +71 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-spinner-v1.json +83 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-transcript-pty-v1.json +83 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-visible-region-v1.json +57 -0
- package/src/providers/sdk/v1/schemas/primitives/tui-welcome-screen-v1.json +35 -0
- package/src/providers/sdk/v1/types/cli/index.ts +365 -0
- package/src/providers/sdk/v1/types/common/index.ts +229 -0
- package/src/providers/sdk/v1/validators/index.ts +19 -0
- package/src/providers/sdk/v1/validators/manifest.ts +110 -0
- package/src/providers/sdk/v1/validators/taint.ts +309 -0
- package/src/providers/spec/adapter.ts +246 -0
- package/src/providers/spec/cli-adapter.ts +1064 -0
- package/src/providers/spec/evaluator.ts +407 -0
- package/src/providers/spec/fsm-driver.ts +1528 -0
- package/src/providers/spec/fsm-evaluator.ts +290 -0
- package/src/providers/spec/fsm-loader.ts +128 -0
- package/src/providers/spec/fsm-types.ts +301 -0
- package/src/providers/spec/native-history-executor.ts +1241 -0
- package/src/providers/spec/pre-launch-trust.ts +104 -0
- package/src/providers/spec/route.ts +51 -0
- package/src/providers/spec/types.ts +284 -0
- package/src/providers/status-monitor.d.ts +7 -7
- package/src/providers/status-monitor.ts +37 -22
- package/src/providers/transcript-v2.ts +567 -0
- package/src/providers/types/interactive-prompt.ts +536 -0
- package/src/providers/version-archive.ts +64 -24
- package/src/providers/working-dir.ts +23 -0
- package/src/repo-mesh-types.ts +861 -14
- package/src/runtime-defaults.ts +39 -0
- package/src/session-host/managed-host.ts +218 -0
- package/src/session-host/runtime-surface.ts +20 -80
- package/src/sessions/registry.ts +44 -0
- package/src/shared-types-extra.ts +2 -4
- package/src/shared-types.d.ts +8 -0
- package/src/shared-types.ts +148 -55
- package/src/status/builders.ts +69 -6
- package/src/status/chat-tail-hot-sessions.ts +117 -2
- package/src/status/normalize.ts +2 -0
- package/src/status/reporter.ts +19 -1
- package/src/status/snapshot.ts +100 -27
- package/src/system/hash.ts +23 -0
- package/src/system/host-memory.ts +29 -12
- package/src/system/load-better-sqlite3.ts +68 -0
- package/src/types.ts +26 -6
- package/dist/cli-adapters/terminal-backends/xterm-backend.d.ts +0 -17
- package/dist/mesh/mesh-sync.d.ts +0 -53
- package/src/cli-adapters/terminal-backends/ghostty-vt-backend.d.ts +0 -16
- package/src/cli-adapters/terminal-backends/xterm-backend.ts +0 -97
- package/src/mesh/mesh-sync.ts +0 -111
|
@@ -9,51 +9,144 @@ import type { ProviderInstance, ProviderState, InstanceContext, HotChatSessionSt
|
|
|
9
9
|
import { ProviderCliAdapter } from '../cli-adapters/provider-cli-adapter.js';
|
|
10
10
|
import type { PtyTransportFactory } from '../cli-adapters/pty-transport.js';
|
|
11
11
|
import type { ChatMessage } from '../types.js';
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
kind?: string;
|
|
16
|
-
senderName?: string;
|
|
17
|
-
receivedAt?: number;
|
|
18
|
-
};
|
|
19
|
-
export declare function buildCliStructuredInputPrompt(input: InputEnvelope, options?: {
|
|
20
|
-
materializeDir?: string;
|
|
21
|
-
}): string;
|
|
22
|
-
export declare function buildIncrementalHistoryAppendMessages(previousMessages: PersistableCliHistoryMessage[], currentMessages: PersistableCliHistoryMessage[]): PersistableCliHistoryMessage[];
|
|
23
|
-
export declare function getForcedNewSessionScriptName(provider: ProviderModule | undefined, launchMode: 'new' | 'resume' | 'manual'): string | null;
|
|
24
|
-
export declare function waitForCliAdapterReady(adapter: {
|
|
25
|
-
isReady?: () => boolean;
|
|
26
|
-
getStatus?: () => {
|
|
27
|
-
status?: string;
|
|
28
|
-
};
|
|
29
|
-
}, options?: {
|
|
30
|
-
timeoutMs?: number;
|
|
31
|
-
pollMs?: number;
|
|
32
|
-
}): Promise<void>;
|
|
12
|
+
export { buildCliStructuredInputPrompt } from './cli-provider-input-prompt.js';
|
|
13
|
+
export { buildIncrementalHistoryAppendMessages } from './cli-provider-history-dedup.js';
|
|
14
|
+
export { computeTurnAnchoredDurationMs, getForcedNewSessionScriptName, waitForCliAdapterReady, } from './cli-provider-status-helpers.js';
|
|
33
15
|
export declare class CliProviderInstance implements ProviderInstance {
|
|
34
16
|
private provider;
|
|
35
17
|
private workingDir;
|
|
36
18
|
private cliArgs;
|
|
37
19
|
readonly type: string;
|
|
38
20
|
readonly category: "cli";
|
|
21
|
+
/**
|
|
22
|
+
* Quiet period an approval modal's signature must be stable before
|
|
23
|
+
* auto-approve sends the approve key. Guards against firing on a prompt
|
|
24
|
+
* that is still streaming into the PTY (the "resolves too fast" symptom):
|
|
25
|
+
* while the modal text/buttons are still changing, every frame yields a
|
|
26
|
+
* new signature and the settle clock restarts. Once the prompt finishes
|
|
27
|
+
* rendering the signature holds and the key is sent after this window.
|
|
28
|
+
* Bounded + small so genuine approvals stay timely. The FSM is already
|
|
29
|
+
* authoritative over the `waiting_approval` state; this only delays the
|
|
30
|
+
* keystroke until the modal *content* has settled.
|
|
31
|
+
*/
|
|
32
|
+
private static readonly AUTO_APPROVE_SETTLE_MS;
|
|
33
|
+
/**
|
|
34
|
+
* Busy-side hysteresis for the settle gate. A momentary `generating` flip
|
|
35
|
+
* while the SAME approval modal's button block is still on screen (its
|
|
36
|
+
* question line scrolled out of the captured frame, only the buttons + a
|
|
37
|
+
* residual `esc to interrupt` spinner remain) briefly reports
|
|
38
|
+
* status!=waiting_approval. Without hysteresis that flip wipes the settle
|
|
39
|
+
* clock, and the modal→generating→modal flap restarts the 600ms window
|
|
40
|
+
* every time so auto-approve never fires. We keep the in-progress settle
|
|
41
|
+
* gate warm across an inactive blip up to this bound; only once the modal
|
|
42
|
+
* has genuinely stayed gone this long (a real resolution → idle) is the
|
|
43
|
+
* gate cleared. Bounded so a genuinely new, later approval still re-settles
|
|
44
|
+
* from scratch rather than firing on a stale timestamp.
|
|
45
|
+
*/
|
|
46
|
+
private static readonly AUTO_APPROVE_GATE_HYSTERESIS_MS;
|
|
47
|
+
/**
|
|
48
|
+
* AUTOAPPROVE-FLAP-RECUR (Fix B): extended busy-side continuity window for a
|
|
49
|
+
* DELEGATED-WORKER auto-approve episode that is genuinely still cycling.
|
|
50
|
+
*
|
|
51
|
+
* The default AUTO_APPROVE_GATE_HYSTERESIS_MS (1500) absorbs a *momentary*
|
|
52
|
+
* `generating` blip. But a delegated worker running a Bash approval observed
|
|
53
|
+
* the FSM cycle the FULL state waiting_approval → busy → waiting_approval on a
|
|
54
|
+
* 2–5s period (the button set scrolls in/out AND the modal question repaints,
|
|
55
|
+
* so the adapter genuinely reports status=generating for whole seconds between
|
|
56
|
+
* approval frames). Each busy phase outran the 1500ms hysteresis, so the
|
|
57
|
+
* settle clock was WIPED (the genuine-resolution branch), the 600ms settle
|
|
58
|
+
* window never accumulated across the flap, resolveModal never fired
|
|
59
|
+
* (resolveModal count 0), and the mask-stall clock instead tripped at 4500ms →
|
|
60
|
+
* coordinator nudge → the flap the coordinator observed.
|
|
61
|
+
*
|
|
62
|
+
* A genuine resolution and a flap both start with a busy phase; they diverge
|
|
63
|
+
* only in whether waiting_approval RETURNS. So we cannot simply lengthen the
|
|
64
|
+
* blanket hysteresis (that would make every real resolution hold the gate
|
|
65
|
+
* open for seconds). Instead this longer window applies ONLY while an active
|
|
66
|
+
* mask episode is alive (autoApproveMaskSince > 0) AND the session is a
|
|
67
|
+
* delegated worker — i.e. exactly the never-resolving-flap case. A foreground
|
|
68
|
+
* / attended session keeps the tight 1500ms window unchanged. The mask-stall
|
|
69
|
+
* bound below still caps the episode, so a worker whose approval truly never
|
|
70
|
+
* returns is surfaced to the coordinator within AUTO_APPROVE_MASK_STALL_MS
|
|
71
|
+
* rather than held forever.
|
|
72
|
+
*
|
|
73
|
+
* INVARIANT (do not regress the ordering): this window must fully BRIDGE a
|
|
74
|
+
* single busy phase, and the mask-stall bound below must in turn exceed it —
|
|
75
|
+
* AUTO_APPROVE_MASK_STALL_MS > AUTO_APPROVE_FLAP_CONTINUITY_MS + max_busy_phase
|
|
76
|
+
* + AUTO_APPROVE_SETTLE_MS. Observed flap geometry (delegated-worker Bash
|
|
77
|
+
* approval): approval frames last ~1.5s, busy phases (modal=none) last
|
|
78
|
+
* ~4.3–4.5s. With the old 4000ms this window was SHORTER than a busy phase, so
|
|
79
|
+
* the settle clock was torn down every cycle and never accrued 600ms while the
|
|
80
|
+
* 4500ms mask-stall tripped INSIDE the first busy phase → a stalled-approval
|
|
81
|
+
* nudge leaked to the coordinator. 6000ms bridges the ~4.5s busy phase with
|
|
82
|
+
* margin so the returning approval frame survives to resume its settle clock.
|
|
83
|
+
*/
|
|
84
|
+
private static readonly AUTO_APPROVE_FLAP_CONTINUITY_MS;
|
|
85
|
+
/**
|
|
86
|
+
* STATUS-MISMATCH: upper bound on how long the auto-approve→`generating` SURFACE
|
|
87
|
+
* mask may hide a worker's `waiting_approval` (status + activeModal) before we give
|
|
88
|
+
* up and surface the real prompt. The mask exists because auto-approve is expected
|
|
89
|
+
* to resolve the modal momentarily; but if it STALLS without ever calling
|
|
90
|
+
* resolveModal — the modal signature never settles for AUTO_APPROVE_SETTLE_MS (a
|
|
91
|
+
* perpetually-flapping/streaming prompt), no concrete modal is ever captured, or the
|
|
92
|
+
* modal is a picker/non-affirmative we never auto-pick — the mask would persist
|
|
93
|
+
* forever and read_chat / mesh_status / the dashboard would NEVER see the pending
|
|
94
|
+
* approval (the coordinator cannot mesh_approve what it cannot see). Once an episode
|
|
95
|
+
* exceeds this bound we stop masking. Generously larger than
|
|
96
|
+
* AUTO_APPROVE_SETTLE_MS (600) + AUTO_APPROVE_GATE_HYSTERESIS_MS (1500) so a
|
|
97
|
+
* legitimately slow-settling / blip-flapping prompt is never unmasked early; a
|
|
98
|
+
* genuine never-resolving stall surfaces within this window. The settle gate keeps
|
|
99
|
+
* running underneath, so a prompt that finally stabilises still auto-approves, and
|
|
100
|
+
* mesh_approve (raw FSM, unmasked) works throughout.
|
|
101
|
+
*
|
|
102
|
+
* INVARIANT (do not regress): must be STRICTLY GREATER than
|
|
103
|
+
* AUTO_APPROVE_FLAP_CONTINUITY_MS + max_busy_phase + AUTO_APPROVE_SETTLE_MS so
|
|
104
|
+
* that during a flap the settle clock (which FLAP_CONTINUITY keeps alive across
|
|
105
|
+
* each busy phase) gets to accrue its 600ms on the RETURNING approval frame
|
|
106
|
+
* before this stall bound can trip. Observed geometry — worker: approval ~1.5s,
|
|
107
|
+
* busy ~4.3–4.5s; coordinator self-session: approval ~1.5s, busy ~2.85s. Both
|
|
108
|
+
* now use the extended window (isAutonomousMeshSession covers worker +
|
|
109
|
+
* meshCoordinatorFor). Worst case: CONTINUITY(6000) + busy(~4.5s) + SETTLE(600)
|
|
110
|
+
* = ~11100ms, so the stall bound must exceed that. 10500ms satisfies the invariant
|
|
111
|
+
* for coordinator (6000 + 2850 + 600 = 9450 < 10500) and was previously 9000ms
|
|
112
|
+
* (which failed for a worker busy phase of 4.5s: 6000+4500+600=11100 > 9000).
|
|
113
|
+
* the old 4500ms tripped inside the very first busy phase (while modal=none, so
|
|
114
|
+
* the nudge was NOT deferred) and leaked to the coordinator.
|
|
115
|
+
*/
|
|
116
|
+
private static readonly AUTO_APPROVE_MASK_STALL_MS;
|
|
39
117
|
private adapter;
|
|
40
118
|
private context;
|
|
41
119
|
private events;
|
|
42
120
|
private lastStatus;
|
|
121
|
+
private agentReadyEmitted;
|
|
43
122
|
private generatingStartedAt;
|
|
123
|
+
private busyEpoch;
|
|
124
|
+
private fastCollapseSynthesizedTaskId;
|
|
125
|
+
private startupGraceCollapseAt;
|
|
44
126
|
private settings;
|
|
45
127
|
private monitor;
|
|
46
128
|
private generatingDebounceTimer;
|
|
47
129
|
private generatingDebouncePending;
|
|
48
|
-
private
|
|
130
|
+
private lastApprovalEventFingerprint;
|
|
49
131
|
private autoApproveBusy;
|
|
50
132
|
private autoApproveBusyTimer;
|
|
133
|
+
private lastAutoApprovalSignature;
|
|
134
|
+
private pendingAutoApprovalSignature;
|
|
135
|
+
private pendingAutoApprovalSince;
|
|
136
|
+
private autoApproveSettleTimer;
|
|
137
|
+
private autoApproveInactiveSince;
|
|
138
|
+
private autoApproveLastModalSeenAt;
|
|
139
|
+
private autoApproveMaskSince;
|
|
140
|
+
private stalledApprovalNudgeEpisode;
|
|
141
|
+
private readonly manualAttendance;
|
|
51
142
|
private controlValues;
|
|
52
143
|
private summaryMetadata;
|
|
53
144
|
private appliedEffectKeys;
|
|
54
145
|
private historyWriter;
|
|
55
146
|
private runtimeMessages;
|
|
56
147
|
private lastPersistedHistoryMessages;
|
|
148
|
+
private lastAcknowledgedUserInputAt;
|
|
149
|
+
private recentUserInputAcks;
|
|
57
150
|
private lastNativeSourceCanonicalCheckAt;
|
|
58
151
|
private lastNativeSourceCanonicalCacheKey;
|
|
59
152
|
private cachedSqliteDb;
|
|
@@ -63,15 +156,21 @@ export declare class CliProviderInstance implements ProviderInstance {
|
|
|
63
156
|
private suppressIdleHistoryReplay;
|
|
64
157
|
private errorMessage;
|
|
65
158
|
private errorReason;
|
|
159
|
+
private activeInteractivePrompt;
|
|
66
160
|
private presentationMode;
|
|
67
161
|
private providerSessionId?;
|
|
68
162
|
private launchMode;
|
|
163
|
+
private initialThinkingLevel?;
|
|
69
164
|
private readonly startedAt;
|
|
70
165
|
private onProviderSessionResolved?;
|
|
71
166
|
constructor(provider: ProviderModule, workingDir: string, cliArgs?: string[], instanceId?: string, transportFactory?: PtyTransportFactory, options?: {
|
|
72
167
|
providerSessionId?: string;
|
|
73
168
|
launchMode?: 'new' | 'resume' | 'manual';
|
|
74
169
|
extraEnv?: Record<string, string>;
|
|
170
|
+
/** BRAIN-ROUTING: standard thinking level to apply post-launch via the
|
|
171
|
+
* provider's thinkingControlId (runtime-control providers like hermes).
|
|
172
|
+
* Providers using thinkingLaunchArgs get it at spawn instead and ignore this. */
|
|
173
|
+
initialThinkingLevel?: string;
|
|
75
174
|
onProviderSessionResolved?: (info: {
|
|
76
175
|
instanceId: string;
|
|
77
176
|
providerType: string;
|
|
@@ -93,44 +192,341 @@ export declare class CliProviderInstance implements ProviderInstance {
|
|
|
93
192
|
setPresentationMode(mode: 'terminal' | 'chat'): void;
|
|
94
193
|
getPresentationMode(): 'terminal' | 'chat';
|
|
95
194
|
getHotChatSessionState(): HotChatSessionState;
|
|
96
|
-
getSessionModalState(): SessionModalState;
|
|
195
|
+
getSessionModalState(sessionId?: string): SessionModalState;
|
|
97
196
|
updateSettings(newSettings: Record<string, any>): void;
|
|
197
|
+
/**
|
|
198
|
+
* Stamp a direct-dispatch mesh assignment on this instance.
|
|
199
|
+
* setupMeshEventForwarding reads settings.meshNodeFor + meshActiveTaskId to
|
|
200
|
+
* route generating_completed back to the originating coordinator. Without
|
|
201
|
+
* this stamp, mesh_send_task --direct targets a plain CLI session whose
|
|
202
|
+
* completion events silently drop because the forwarder has nothing to
|
|
203
|
+
* match against.
|
|
204
|
+
*/
|
|
205
|
+
attachMeshAssignment(assignment: {
|
|
206
|
+
meshId: string;
|
|
207
|
+
nodeId?: string;
|
|
208
|
+
taskId?: string;
|
|
209
|
+
dispatchNonce?: number;
|
|
210
|
+
coordinatorDaemonId?: string;
|
|
211
|
+
coordinatorSessionId?: string;
|
|
212
|
+
}): void;
|
|
213
|
+
/**
|
|
214
|
+
* Clear a previously-attached mesh assignment after the task reaches a
|
|
215
|
+
* terminal state. Leaving meshNodeFor pinned would route this session's
|
|
216
|
+
* subsequent unrelated turns (e.g. ad-hoc dashboard chats) to the
|
|
217
|
+
* coordinator as if they were task completions.
|
|
218
|
+
*
|
|
219
|
+
* MESHID-DROP-ON-DETACH (Fix C): a coordinator-LAUNCHED worker session
|
|
220
|
+
* (launchedByCoordinator) holds its mesh membership (meshNodeFor / meshNodeId /
|
|
221
|
+
* meshCoordinatorDaemonId) at the SESSION level — set once at launch
|
|
222
|
+
* (mesh_launch_session / queue auto-launch), independent of any single task.
|
|
223
|
+
* The original detach wiped meshNodeFor + meshNodeId together with the
|
|
224
|
+
* task-level meshActiveTaskId, so the FIRST task completion stripped the
|
|
225
|
+
* membership and EVERY subsequent completion forwarded with meshId absent —
|
|
226
|
+
* resolveWorkerDelegateRouting fell to mesh_unresolved and the coordinator
|
|
227
|
+
* rejected the forward "meshId required". For a launched member we therefore
|
|
228
|
+
* clear ONLY the task-level marker (meshActiveTaskId) and preserve the
|
|
229
|
+
* session-level membership so its next task's completion still resolves.
|
|
230
|
+
* A task-less ad-hoc turn on a preserved-membership session is NOT misrouted:
|
|
231
|
+
* its completion carries no taskId and the session holds no active assignment,
|
|
232
|
+
* so the forwarder's WARMUPGAP guard skips the dispatch-row flip (it only
|
|
233
|
+
* injects a benign task-less notification). A NON-launched session (a plain CLI
|
|
234
|
+
* session adopted by mesh_send_task --direct, launchedByCoordinator falsy)
|
|
235
|
+
* keeps the original full clear so an ad-hoc session is never left pinned.
|
|
236
|
+
*/
|
|
237
|
+
detachMeshAssignment(): void;
|
|
238
|
+
/**
|
|
239
|
+
* The resolved modal-park status of this session, or null when it is not
|
|
240
|
+
* parked on a modal awaiting a human answer. Mirrors the overlay logic in
|
|
241
|
+
* getState(): an active AskUserQuestion interactive prompt resolves to
|
|
242
|
+
* waiting_choice; otherwise the adapter's waiting_approval (tool consent)
|
|
243
|
+
* counts — UNLESS auto-approve will dismiss it, in which case the session is
|
|
244
|
+
* effectively generating and is NOT modal-parked. This is the single signal
|
|
245
|
+
* the mesh force-inject guard consults, and the same status string the
|
|
246
|
+
* reconcile loop reads off get_status_metadata. Lowercase literals only —
|
|
247
|
+
* the SessionStatus enum is forked across modules and waiting_choice is
|
|
248
|
+
* absent from some of them.
|
|
249
|
+
*/
|
|
250
|
+
resolveModalParkStatus(): 'waiting_choice' | 'waiting_approval' | null;
|
|
251
|
+
/**
|
|
252
|
+
* NOTIF-HELD-DRAIN: true when this `waiting_approval` is a routine, transient tool-consent
|
|
253
|
+
* of an autonomously-progressing mesh session rather than a genuine human-await modal —
|
|
254
|
+
* i.e. it is a mesh coordinator/worker session, a turn is actively in flight
|
|
255
|
+
* (hasAdapterPendingResponse), and no human is attending it by hand. Such a consent is
|
|
256
|
+
* driven to resolution by the harness/operator as part of the in-flight turn, so holding
|
|
257
|
+
* the mesh's completion events behind it (modal_parked) is the false-positive that stalls
|
|
258
|
+
* delivery. Narrow by design: manual attendance or a non-progressing session falls through
|
|
259
|
+
* to the genuine-modal classification.
|
|
260
|
+
*/
|
|
261
|
+
private isTransientToolConsent;
|
|
262
|
+
/** True when this session is parked on a modal awaiting a human answer. */
|
|
263
|
+
isModalParked(): boolean;
|
|
264
|
+
/**
|
|
265
|
+
* PTY-OVERTRUST-DRAIN (Defect B). The deliverability/drain status the mesh
|
|
266
|
+
* reconcile loop must consult — the RAW adapter turn-state, with the
|
|
267
|
+
* auto-approve "hold-idle" visual mask STRIPPED.
|
|
268
|
+
*
|
|
269
|
+
* getState().status overlays `autoApproveHoldIdle`/`autoApproveActive` to paint a
|
|
270
|
+
* genuinely-idle adapter as `generating` (a UI-flicker suppression while an
|
|
271
|
+
* auto-approve key-press settles — see getState() ~:800). That mask is correct
|
|
272
|
+
* for the dashboard, but the reconcile loop trusts it as "the coordinator is
|
|
273
|
+
* busy" and therefore HOLDS a worker's completion under
|
|
274
|
+
* `generating_no_idle_coordinator` even though the coordinator's PTY is at a real
|
|
275
|
+
* turn end and would accept the inject as a turn — the completion is stranded.
|
|
276
|
+
*
|
|
277
|
+
* This accessor reports the drain truth instead:
|
|
278
|
+
* - 'modal_parked' — a GENUINE human-await modal (AskUserQuestion / a non-
|
|
279
|
+
* transient tool-consent). Still excluded from drain (a force-inject here
|
|
280
|
+
* writes raw keystrokes the modal eats → data corruption). Mirrors
|
|
281
|
+
* isModalParked(), evaluated first so a parked session never reads idle.
|
|
282
|
+
* - 'idle' — the RAW adapter is at a turn end (adapter.getStatus(allowParse:false)
|
|
283
|
+
* === 'idle') and the session is not modal-parked. Drain-eligible REGARDLESS
|
|
284
|
+
* of the auto-approve mask. This is the case the mask used to hide.
|
|
285
|
+
* - 'generating' — the raw adapter is genuinely mid-turn. Held (a raw PTY write
|
|
286
|
+
* into a generating claude-cli is not consumed as a turn → data loss). The
|
|
287
|
+
* intentional removal of force-inject-into-generating is preserved.
|
|
288
|
+
* - 'other' — any other raw status (error / starting / waiting_choice handled by
|
|
289
|
+
* modal-park above). Not a drain target.
|
|
290
|
+
*
|
|
291
|
+
* Uses allowParse:false (engine.activeModal only, side-effect-free) so it never
|
|
292
|
+
* mutates the very auto-approve mask state the diagnostics read.
|
|
293
|
+
*/
|
|
294
|
+
getDrainStatus(): 'idle' | 'generating' | 'modal_parked' | 'other';
|
|
98
295
|
onEvent(event: string, data?: any): void;
|
|
296
|
+
recordAcknowledgedUserInput(input: InputEnvelope | string): void;
|
|
297
|
+
/** Drop user-input ack entries older than the dedup window so the map can't grow unbounded. */
|
|
298
|
+
private pruneRecentUserInputAcks;
|
|
299
|
+
/**
|
|
300
|
+
* Owner token for this session in the antigravity conversation-claim
|
|
301
|
+
* registry. Keyed on the daemon instance id — the SAME value the session
|
|
302
|
+
* registry stores as this session's `sessionId` (see cli-manager
|
|
303
|
+
* `sessionRegistry.register({ sessionId: cliInstance.instanceId })`) and the
|
|
304
|
+
* read side hands the dispatcher as `instanceId`. Both sides therefore
|
|
305
|
+
* derive the identical `iid:<instanceId>` token, so the claims the
|
|
306
|
+
* dispatcher records under this session are exactly the ones dispose()
|
|
307
|
+
* releases.
|
|
308
|
+
*
|
|
309
|
+
* This must NOT be derived from a spawn timestamp: the instance's
|
|
310
|
+
* `startedAt`, the adapter's `spawnedAtMs`, and the session registry's
|
|
311
|
+
* `spawnedAtMs` are three INDEPENDENT `Date.now()` samples for the one
|
|
312
|
+
* session, so a workspace+spawn-time token computed here would never equal
|
|
313
|
+
* the read side's — the claim isolation then silently collapses and two
|
|
314
|
+
* concurrent antigravity sessions cross-bind each other's conversation .db
|
|
315
|
+
* (coordinator+worker chat crosswire).
|
|
316
|
+
*/
|
|
317
|
+
private antigravityClaimOwner;
|
|
99
318
|
dispose(): void;
|
|
100
319
|
private completedDebounceTimer;
|
|
101
320
|
private completedDebouncePending;
|
|
321
|
+
private lastExternalCompletionProbe;
|
|
322
|
+
/**
|
|
323
|
+
* The final assistant summary of the last completed turn, cached at
|
|
324
|
+
* completion-emit time. For a native-source provider (antigravity) whose
|
|
325
|
+
* assistant answer lives only in native-history — never in the PTY parse that
|
|
326
|
+
* feeds activeChat.messages — the dashboard's preview / lastMessageRole /
|
|
327
|
+
* completionMarker would otherwise never see the answer and show the session
|
|
328
|
+
* stuck on the user prompt. getState() appends this cached assistant bubble to
|
|
329
|
+
* the status messages when the PTY tail has none, so those fields reflect the
|
|
330
|
+
* real last answer with ZERO per-tick native reads (the native read already ran
|
|
331
|
+
* once at completion). Reset on the next turn's start.
|
|
332
|
+
*/
|
|
333
|
+
private lastCompletionSummary;
|
|
102
334
|
private enforceFreshSessionLaunchIfNeeded;
|
|
335
|
+
/**
|
|
336
|
+
* BRAIN-ROUTING (runtime-control thinking axis): for a provider that selects
|
|
337
|
+
* reasoning effort via a runtime control instead of a launch arg (e.g. hermes
|
|
338
|
+
* `reasoning`), apply the requested initialThinkingLevel after spawn by invoking
|
|
339
|
+
* that control's setScript. The provider names the control via thinkingControlId.
|
|
340
|
+
* The standard level is mapped through thinkingLevelMap first (same as the
|
|
341
|
+
* launch-arg path). Best-effort: any failure logs and never blocks launch.
|
|
342
|
+
*/
|
|
343
|
+
private applyInitialThinkingLevelViaControl;
|
|
103
344
|
private completionHasFinalAssistantMessage;
|
|
345
|
+
private recordPendingTranscriptProbe;
|
|
346
|
+
/**
|
|
347
|
+
* The spawned CLI's env overrides (e.g. the mesh coordinator points hermes
|
|
348
|
+
* at a per-coordinator HERMES_HOME so its state.db lives in a tmpdir instead
|
|
349
|
+
* of ~/.hermes). The native-history executor expands `${HERMES_HOME:-~/.hermes}`
|
|
350
|
+
* from this map, so the completion gate MUST pass it through — otherwise the
|
|
351
|
+
* gate reads ~/.hermes, finds no coordinator-session transcript, and
|
|
352
|
+
* false-fires missing_final_assistant on every coordinator turn.
|
|
353
|
+
*/
|
|
354
|
+
private spawnedEnvOverrides;
|
|
355
|
+
private readExternalCompletionMessages;
|
|
356
|
+
/**
|
|
357
|
+
* The content of the LAST visible assistant bubble in a message list, or ''
|
|
358
|
+
* when the tail is not an assistant reply. Skips trailing system/tool/activity
|
|
359
|
+
* bubbles; stops (returns '') at the first user/human message. Used only for
|
|
360
|
+
* the dashboard tail-repair cache — a display value, not a completion decision.
|
|
361
|
+
*/
|
|
362
|
+
private lastVisibleAssistantSummary;
|
|
363
|
+
private completionFinalAssistantEvidence;
|
|
364
|
+
private completionFinalSummary;
|
|
365
|
+
private buildCompletedFinalizationDiagnostic;
|
|
104
366
|
private hasAdapterPendingResponse;
|
|
105
367
|
private shouldSuppressStaleParsedBusyStatus;
|
|
106
|
-
private
|
|
368
|
+
private getCompletedFinalizationBlock;
|
|
369
|
+
private hasApprovalResolutionEvidence;
|
|
370
|
+
private approvalResolutionFinalizationBlock;
|
|
107
371
|
private scheduleCompletedDebounceFlush;
|
|
372
|
+
private isMeshWorkerSession;
|
|
373
|
+
/**
|
|
374
|
+
* AUTOAPPROVE-FLAP-RECUR (Fix A+B): how long a busy blip / modal scroll-out may
|
|
375
|
+
* persist before the in-progress settle gate is torn down. For a delegated
|
|
376
|
+
* worker whose auto-approve episode is genuinely still cycling (mask clock
|
|
377
|
+
* alive), the FSM's full waiting_approval → busy → waiting_approval flap runs
|
|
378
|
+
* on a multi-second period, so the settle continuity window is extended to
|
|
379
|
+
* AUTO_APPROVE_FLAP_CONTINUITY_MS to bridge it (still bounded, and still capped
|
|
380
|
+
* by AUTO_APPROVE_MASK_STALL_MS). Every other case — foreground/attended
|
|
381
|
+
* session, or no active mask episode — keeps the tight default hysteresis so a
|
|
382
|
+
* genuine resolution frees the gate promptly.
|
|
383
|
+
*/
|
|
384
|
+
private autoApproveContinuityWindowMs;
|
|
385
|
+
/**
|
|
386
|
+
* The settle-gate identity signature for a raw activeModal, or null when the
|
|
387
|
+
* modal is NOT a concrete auto-approvable consent prompt (no captured buttons,
|
|
388
|
+
* a picker/confirm kind, or no reliable affirmative+decline anchor). Mirrors the
|
|
389
|
+
* gates the auto-approve fire path applies before computing modalSignature, so
|
|
390
|
+
* the mask-stall nudge can ask the SAME question the settle gate is tracking —
|
|
391
|
+
* "is THIS frame's modal the identity the settle clock is accruing against?" —
|
|
392
|
+
* without duplicating the button-pick logic. The signature is message +
|
|
393
|
+
* normalized affirmative label only (no volatile counters/button set), matching
|
|
394
|
+
* the fire path exactly (AUTOAPPROVE-SETTLE-FLAP).
|
|
395
|
+
*/
|
|
396
|
+
private approvableModalSignature;
|
|
397
|
+
private isAutonomousMeshSession;
|
|
398
|
+
/**
|
|
399
|
+
* ARCH-REFACTOR R1: the taskId to attribute the CURRENTLY-completing turn to.
|
|
400
|
+
* Prefers the per-turn binding (engine.currentTurnTaskId, set when the turn was
|
|
401
|
+
* submitted and surviving until the next turn starts) over the last-write-wins
|
|
402
|
+
* session scalar (settings.meshActiveTaskId). The scalar is retained only as a
|
|
403
|
+
* backward-compat alias for the "current/last assignment" and is the source of the
|
|
404
|
+
* NOTIF-MISDELIVER / TASK-MSG-MISROUTE race: a second task attaching before this
|
|
405
|
+
* turn completes overwrites it. Returns undefined for a non-task ad-hoc turn.
|
|
406
|
+
*/
|
|
407
|
+
private completingTurnTaskId;
|
|
408
|
+
private meshTraceCtx;
|
|
409
|
+
private completionTraceOn;
|
|
410
|
+
private fsmTraceOn;
|
|
411
|
+
private recordCompletionGateTrace;
|
|
412
|
+
private recordFsmTransitionTrace;
|
|
108
413
|
private flushCompletedDebounceIfFinalized;
|
|
414
|
+
/**
|
|
415
|
+
* A-3 (CLI 완료판정 통합): single authoritative emit for a CLI turn's
|
|
416
|
+
* `agent:generating_completed` event. The completion JUDGMENT — WHETHER and
|
|
417
|
+
* WHEN a turn is done (settle windows, continuity guards, the finalization
|
|
418
|
+
* gate, the short-gen / startup-grace / no-progress-monitor discriminators) —
|
|
419
|
+
* stays at each call site, where it is legitimately path-specific. What used
|
|
420
|
+
* to be duplicated across all five completion paths was the EVENT-SHAPE
|
|
421
|
+
* assembly: the `event` name, the conditional `taskId` spread, and the
|
|
422
|
+
* optional `finalSummary` / `evidenceLevel` / `completionDiagnostic` fields.
|
|
423
|
+
* Folding that assembly here removes the divergence (e.g. one site spreading
|
|
424
|
+
* taskId, others omitting it) without touching any judgment. Callers pass the
|
|
425
|
+
* values they have already computed; omitted optionals are simply absent from
|
|
426
|
+
* the emitted event, exactly as each inline builder produced before.
|
|
427
|
+
*/
|
|
428
|
+
private emitGeneratingCompleted;
|
|
109
429
|
private maybeAutoApproveStatus;
|
|
430
|
+
/**
|
|
431
|
+
* Re-drive the auto-approve check after the settle quiet window elapses.
|
|
432
|
+
* The PTY may have gone silent once the approval prompt finished painting,
|
|
433
|
+
* so no status-change frame is guaranteed to re-enter maybeAutoApproveStatus
|
|
434
|
+
* — this timer-driven re-check picks up the now-settled modal and fires.
|
|
435
|
+
* Deliberately lighter than detectStatusTransition(): it only re-evaluates
|
|
436
|
+
* the approval decision; the next real PTY frame refreshes visible status.
|
|
437
|
+
*/
|
|
438
|
+
private recheckAutoApproveSettled;
|
|
439
|
+
/**
|
|
440
|
+
* Emit the queue-claim agent:ready event at most once per session. Both the
|
|
441
|
+
* boot-time starting→idle one-shot and the fsmReadySeen re-arm call this; the
|
|
442
|
+
* agentReadyEmitted guard ensures the second caller is a no-op so a worker is
|
|
443
|
+
* never claimed twice and a queued task is never double-dispatched.
|
|
444
|
+
*/
|
|
445
|
+
private emitAgentReadyOnce;
|
|
446
|
+
/**
|
|
447
|
+
* GENERATING-BOUNDARY synthetic emit for a first turn that started AND finished
|
|
448
|
+
* inside the startup-grace window without the FSM ever observing a 'generating'
|
|
449
|
+
* frame (an unobservably-fast turn). Synthesizes the agent:generating_started +
|
|
450
|
+
* agent:generating_completed pair so the mesh coordinator learns the worker went
|
|
451
|
+
* idle. Returns true iff it synthesized.
|
|
452
|
+
*
|
|
453
|
+
* Two callers share this defense line:
|
|
454
|
+
* - 'startup_grace_fast_collapse' — the starting→idle transition (the FSM whose
|
|
455
|
+
* spec lacks/hadn't-synced the starting→busy edge collapses starting→idle
|
|
456
|
+
* directly, with no intervening 'generating' frame).
|
|
457
|
+
* - 'startup_grace_idle_turn_collapse' — the idle→idle no-status-change poll
|
|
458
|
+
* (the launch settle already drained starting→idle BEFORE the first turn, so
|
|
459
|
+
* the turn runs+completes while status stays 'idle' the whole time and
|
|
460
|
+
* detectStatusTransition never re-enters its change block — the live rc.403
|
|
461
|
+
* Probe1 miss).
|
|
462
|
+
*
|
|
463
|
+
* False-positive safety (must NOT fire on a benign boot): currentTurnTaskId is
|
|
464
|
+
* set ONLY by onTurnStarted (a real turn STARTED this boot) and persists past
|
|
465
|
+
* completion, so it excludes a true idle boot (null) and a queued-pending first
|
|
466
|
+
* turn that only runs after grace (onTurnStarted not yet called → null).
|
|
467
|
+
* !hasAdapterPendingResponse() excludes a turn still mid-flight. generating
|
|
468
|
+
* never armed (generatingStartedAt===0 && !generatingDebouncePending) means the
|
|
469
|
+
* whole idle→busy→idle never happened for this turn. The once-per-turn guard
|
|
470
|
+
* (fastCollapseSynthesizedTaskId) keeps the re-polled idle-stayed caller from
|
|
471
|
+
* re-emitting every poll.
|
|
472
|
+
*/
|
|
473
|
+
private maybeSynthesizeStartupGraceCollapse;
|
|
110
474
|
private detectStatusTransition;
|
|
111
475
|
private pushEvent;
|
|
112
476
|
private flushEvents;
|
|
113
477
|
private applyProviderResponse;
|
|
114
|
-
private getEffectDedupKey;
|
|
115
|
-
private getPersistedEffectContent;
|
|
116
478
|
getAdapter(): ProviderCliAdapter;
|
|
117
479
|
get cliType(): string;
|
|
118
480
|
get cliName(): string;
|
|
119
481
|
private shouldAutoApprove;
|
|
482
|
+
/** @see ProviderInstance.noteManualInteraction */
|
|
483
|
+
noteManualInteraction(now?: number, opts?: {
|
|
484
|
+
passive?: boolean;
|
|
485
|
+
}): void;
|
|
486
|
+
/**
|
|
487
|
+
* Whether auto-approve should be treated as active *right now* for display
|
|
488
|
+
* and firing decisions: the configured intent AND the user is not currently
|
|
489
|
+
* attending this session by hand. When a human is attending, auto-approve is
|
|
490
|
+
* held so the modal stays visible and they can drive it via the controlbar.
|
|
491
|
+
* Provider-agnostic — the attendance signal is the command set, never any
|
|
492
|
+
* CLI-specific modal text.
|
|
493
|
+
*/
|
|
494
|
+
private autoApproveEffectivelyActive;
|
|
495
|
+
private autoApproveMaskStalled;
|
|
496
|
+
/**
|
|
497
|
+
* NOTIF-APPROVAL-MASKED (Q1b): surface a delegated worker's STALLED auto-approve modal
|
|
498
|
+
* to the mesh COORDINATOR, decoupled from the dashboard visible-status mask.
|
|
499
|
+
*
|
|
500
|
+
* When auto-approve is configured but the episode never settles (modal parse miss / the
|
|
501
|
+
* settle gate never satisfied), getState()/detectStatusTransition() fold the raw
|
|
502
|
+
* `waiting_approval` into `generating` to suppress dashboard flicker — so
|
|
503
|
+
* detectStatusTransition()'s `waiting_approval` arm never runs and NO agent:waiting_approval
|
|
504
|
+
* event is emitted. The coordinator's real-time approval-nudge delivery then has no input and
|
|
505
|
+
* the worker's stuck modal is never surfaced (the live ~25s stall). The dashboard mask is
|
|
506
|
+
* intentional and stays; this emits the coordinator nudge exactly ONCE, gated on the SAME
|
|
507
|
+
* raw-waiting_approval + mask-stalled signal resolveModalParkStatus() distinguishes, the
|
|
508
|
+
* instant the mask-stall threshold trips (the same moment getState un-folds the mask).
|
|
509
|
+
*
|
|
510
|
+
* Only delegated worker sessions qualify: a foreground session has no coordinator to notify,
|
|
511
|
+
* and its own dashboard mask already reveals the modal on stall. A normally-resolving
|
|
512
|
+
* auto-approve never reaches AUTO_APPROVE_MASK_STALL_MS, so it emits nothing here; and if a
|
|
513
|
+
* masked approval clears just as this fires, rc.455's isApprovalNudgeResolved stale-drop
|
|
514
|
+
* discards the nudge coordinator-side without noise. Dedup is per-episode (keyed on the
|
|
515
|
+
* mask-clock value) so a modal that flaps between parsed/unparsed states is announced once.
|
|
516
|
+
*/
|
|
517
|
+
private maybeEmitStalledApprovalNudge;
|
|
120
518
|
private recordAutoApproval;
|
|
121
519
|
recordApprovalSelection(buttonText: string): void;
|
|
122
|
-
private formatMarkerTimestamp;
|
|
123
520
|
private maybeAppendRuntimeRecoveryMessage;
|
|
124
521
|
private appendRuntimeSystemMessage;
|
|
125
522
|
private appendRuntimeMessage;
|
|
126
523
|
mergeRuntimeChatMessages(parsedMessages: ChatMessage[]): ChatMessage[];
|
|
127
|
-
private mergeConversationMessages;
|
|
128
|
-
private formatApprovalRequestMessage;
|
|
129
524
|
private promoteProviderSessionId;
|
|
525
|
+
private shouldHydrateExistingProviderHistory;
|
|
526
|
+
private shouldSuppressFreshLaunchStartupReplay;
|
|
130
527
|
private syncCanonicalSavedHistoryIfNeeded;
|
|
131
528
|
private restorePersistedHistoryFromCurrentSession;
|
|
132
529
|
private getProbeDirectories;
|
|
133
530
|
private buildSqlPlaceholderList;
|
|
134
531
|
private querySqliteText;
|
|
135
532
|
}
|
|
136
|
-
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CLI provider status/launch pure helpers.
|
|
3
|
+
*
|
|
4
|
+
* Pure move out of cli-provider-instance.ts (no behavior change): the
|
|
5
|
+
* side-effect-free status predicates, the turn-anchored duration computation,
|
|
6
|
+
* the forced-new-session script resolver, the adapter-ready poll, and the lazy
|
|
7
|
+
* node:sqlite DatabaseSync loader. cli-provider-instance re-exports the
|
|
8
|
+
* public symbols (computeTurnAnchoredDurationMs, getForcedNewSessionScriptName,
|
|
9
|
+
* waitForCliAdapterReady) so existing importers/tests keep their path.
|
|
10
|
+
*/
|
|
11
|
+
import type { ProviderModule } from './contracts.js';
|
|
12
|
+
export declare function isIdleStatus(value: unknown): boolean;
|
|
13
|
+
export declare function getMessageTime(message: unknown): number;
|
|
14
|
+
export declare function hasNonEmptyCliModalButtons(activeModal: unknown): boolean;
|
|
15
|
+
export declare function isCliGeneratingLikeStatus(status: unknown): boolean;
|
|
16
|
+
/**
|
|
17
|
+
* NOTIF Defect-2a: the REPORTED short-generating duration, anchored on the IMMUTABLE turn
|
|
18
|
+
* start. generatingStartedAt is reset to 0 on every mid-turn waiting_approval/idle blip and
|
|
19
|
+
* re-armed on the next →generating, so a long turn that blips would otherwise measure only the
|
|
20
|
+
* final 1.5-2.5s sliver. engine.currentTurnStartedAt (set once at onTurnStarted, surviving
|
|
21
|
+
* mid-turn blips until the next turn starts) is preferred; generatingStartedAt is the fallback
|
|
22
|
+
* for turns that never recorded an engine turn start. Returns 0 when neither anchor is set.
|
|
23
|
+
* Pure / unit-testable.
|
|
24
|
+
*/
|
|
25
|
+
export declare function computeTurnAnchoredDurationMs(engineTurnStartedAt: number | undefined, generatingStartedAt: number, now: number): {
|
|
26
|
+
durationMs: number;
|
|
27
|
+
anchor: 'turn-start' | 'generatingStartedAt' | 'none';
|
|
28
|
+
};
|
|
29
|
+
export declare function getDatabaseSync(): new (path: string, options?: {
|
|
30
|
+
readOnly?: boolean;
|
|
31
|
+
}) => {
|
|
32
|
+
prepare(sql: string): {
|
|
33
|
+
get(...params: Array<string | number>): unknown;
|
|
34
|
+
};
|
|
35
|
+
close(): void;
|
|
36
|
+
};
|
|
37
|
+
export declare function getForcedNewSessionScriptName(provider: ProviderModule | undefined, launchMode: 'new' | 'resume' | 'manual'): string | null;
|
|
38
|
+
export declare function waitForCliAdapterReady(adapter: {
|
|
39
|
+
isReady?: () => boolean;
|
|
40
|
+
getStatus?: () => {
|
|
41
|
+
status?: string;
|
|
42
|
+
};
|
|
43
|
+
}, options?: {
|
|
44
|
+
timeoutMs?: number;
|
|
45
|
+
pollMs?: number;
|
|
46
|
+
}): Promise<void>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ChatMessage } from '../types.js';
|
|
2
|
+
import type { ExternalTranscriptProbe } from './cli-provider-instance-types.js';
|
|
3
|
+
export declare function mergeConversationMessages(runtimeMessages: Array<{
|
|
4
|
+
key: string;
|
|
5
|
+
message: ChatMessage;
|
|
6
|
+
}>, parsedMessages: any[]): ChatMessage[];
|
|
7
|
+
export declare function buildExternalTranscriptProbe(messages: unknown[], sourcePath?: string, sourceMtimeMs?: number): ExternalTranscriptProbe;
|