@adhdev/daemon-core 0.9.82-rc.47 → 0.9.82-rc.470

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (468) hide show
  1. package/dist/boot/daemon-lifecycle.d.ts +9 -0
  2. package/dist/boot/process-hardening.d.ts +50 -0
  3. package/dist/build-info.d.ts +37 -0
  4. package/dist/chat/source-machine.d.ts +166 -0
  5. package/dist/chat/source-resolver.d.ts +104 -0
  6. package/dist/chat/subscription-updates.d.ts +1 -0
  7. package/dist/cli-adapter-types.d.ts +68 -2
  8. package/dist/cli-adapters/cli-script-runner.d.ts +117 -0
  9. package/dist/cli-adapters/cli-state-engine.d.ts +200 -0
  10. package/dist/cli-adapters/provider-cli-adapter.d.ts +126 -64
  11. package/dist/cli-adapters/provider-cli-parse.d.ts +5 -0
  12. package/dist/cli-adapters/provider-cli-runtime.d.ts +34 -0
  13. package/dist/cli-adapters/provider-cli-shared.d.ts +74 -0
  14. package/dist/cli-adapters/pty-write-chunking.d.ts +34 -0
  15. package/dist/cli-adapters/raw-terminal-io.d.ts +37 -0
  16. package/dist/cli-adapters/resolve-executable.d.ts +69 -0
  17. package/dist/cli-adapters/terminal-backends/ghostty-vt-backend.d.ts +6 -3
  18. package/dist/cli-adapters/terminal-backends/types.d.ts +10 -2
  19. package/dist/cli-adapters/terminal-screen.d.ts +4 -11
  20. package/dist/commands/chat-commands-debug-bundle.d.ts +14 -0
  21. package/dist/commands/chat-commands-read.d.ts +7 -0
  22. package/dist/commands/chat-commands-scope.d.ts +39 -0
  23. package/dist/commands/chat-commands-shared.d.ts +33 -0
  24. package/dist/commands/chat-commands-write.d.ts +14 -0
  25. package/dist/commands/chat-commands.d.ts +10 -23
  26. package/dist/commands/cli-manager.d.ts +25 -1
  27. package/dist/commands/handler.d.ts +125 -0
  28. package/dist/commands/high-family/index.d.ts +3 -0
  29. package/dist/commands/high-family/mesh-coordinator-launch.d.ts +2 -0
  30. package/dist/commands/high-family/mesh-events.d.ts +2 -0
  31. package/dist/commands/high-family/mesh-status.d.ts +2 -0
  32. package/dist/commands/high-family/types.d.ts +64 -0
  33. package/dist/commands/low-family/coordinator-prompt.d.ts +9 -0
  34. package/dist/commands/low-family/daemon-lifecycle.d.ts +2 -0
  35. package/dist/commands/low-family/diagnostics.d.ts +2 -0
  36. package/dist/commands/low-family/index.d.ts +3 -0
  37. package/dist/commands/low-family/mesh-ledger.d.ts +10 -0
  38. package/dist/commands/low-family/mesh-node-logs.d.ts +2 -0
  39. package/dist/commands/low-family/notification.d.ts +2 -0
  40. package/dist/commands/low-family/refine-config.d.ts +2 -0
  41. package/dist/commands/low-family/session-host.d.ts +2 -0
  42. package/dist/commands/low-family/spec-providerdev.d.ts +11 -0
  43. package/dist/commands/low-family/status-meta.d.ts +2 -0
  44. package/dist/commands/low-family/types.d.ts +33 -0
  45. package/dist/commands/med-family/cli-agent.d.ts +2 -0
  46. package/dist/commands/med-family/fast-forward.d.ts +2 -0
  47. package/dist/commands/med-family/ide.d.ts +10 -0
  48. package/dist/commands/med-family/index.d.ts +3 -0
  49. package/dist/commands/med-family/mesh-crud.d.ts +48 -0
  50. package/dist/commands/med-family/mesh-host-pairing.d.ts +2 -0
  51. package/dist/commands/med-family/mesh-queue.d.ts +2 -0
  52. package/dist/commands/med-family/mesh-restart.d.ts +2 -0
  53. package/dist/commands/med-family/types.d.ts +152 -0
  54. package/dist/commands/mesh-coordinator.d.ts +85 -1
  55. package/dist/commands/router-aggregate-status.d.ts +24 -0
  56. package/dist/commands/router-mesh-session-owner.d.ts +59 -0
  57. package/dist/commands/router-refine.d.ts +137 -0
  58. package/dist/commands/router-worktree-cleanup.d.ts +133 -0
  59. package/dist/commands/router.d.ts +204 -15
  60. package/dist/commands/upgrade-helper.d.ts +41 -1
  61. package/dist/config/chat-history.d.ts +9 -0
  62. package/dist/config/config.d.ts +19 -0
  63. package/dist/config/mesh-config.d.ts +136 -1
  64. package/dist/config/mesh-json-config.d.ts +199 -0
  65. package/dist/config/registry-resolver.d.ts +54 -0
  66. package/dist/config/repo-settings.d.ts +77 -0
  67. package/dist/daemon/dev-server.d.ts +0 -2
  68. package/dist/detection/cli-detector.d.ts +17 -0
  69. package/dist/detection/ide-detector.d.ts +13 -0
  70. package/dist/detection/win32-ide-version.d.ts +37 -0
  71. package/dist/git/change-impact-config.d.ts +159 -0
  72. package/dist/git/git-commands.d.ts +26 -2
  73. package/dist/git/git-diff.d.ts +6 -0
  74. package/dist/git/git-executor.d.ts +11 -0
  75. package/dist/git/git-status.d.ts +57 -0
  76. package/dist/git/git-types.d.ts +2 -50
  77. package/dist/git/git-worktree.d.ts +71 -1
  78. package/dist/git/index.d.ts +3 -1
  79. package/dist/index.d.ts +70 -16
  80. package/dist/index.js +58255 -24541
  81. package/dist/index.js.map +1 -1
  82. package/dist/index.mjs +59189 -25650
  83. package/dist/index.mjs.map +1 -1
  84. package/dist/installer.d.ts +1 -4
  85. package/dist/ipc/local-ipc-server.d.ts +91 -0
  86. package/dist/launch.d.ts +1 -1
  87. package/dist/logging/async-batch-writer.d.ts +10 -0
  88. package/dist/logging/debug-config.d.ts +16 -0
  89. package/dist/logging/log-redactor.d.ts +24 -0
  90. package/dist/logging/log-tail-reader.d.ts +81 -0
  91. package/dist/logging/logger.d.ts +1 -1
  92. package/dist/mesh/contracts.d.ts +230 -0
  93. package/dist/mesh/coordinator-prompt.d.ts +76 -0
  94. package/dist/mesh/coordinator-registry.d.ts +59 -0
  95. package/dist/mesh/mesh-active-work.d.ts +203 -0
  96. package/dist/mesh/mesh-clone-grace.d.ts +8 -0
  97. package/dist/mesh/mesh-completion-synthesis.d.ts +4 -0
  98. package/dist/mesh/mesh-coordinator-config.d.ts +21 -0
  99. package/dist/mesh/mesh-delivery-policy.d.ts +104 -0
  100. package/dist/mesh/mesh-event-classify.d.ts +7 -0
  101. package/dist/mesh/mesh-event-forwarding.d.ts +41 -0
  102. package/dist/mesh/mesh-event-trace.d.ts +21 -0
  103. package/dist/mesh/mesh-events-coordinator.d.ts +4 -0
  104. package/dist/mesh/mesh-events-pending.d.ts +246 -0
  105. package/dist/mesh/mesh-events-stale.d.ts +61 -0
  106. package/dist/mesh/mesh-events-utils.d.ts +75 -0
  107. package/dist/mesh/mesh-events.d.ts +6 -49
  108. package/dist/mesh/mesh-fast-forward.d.ts +81 -0
  109. package/dist/mesh/mesh-host-ownership.d.ts +29 -0
  110. package/dist/mesh/mesh-init.d.ts +128 -0
  111. package/dist/mesh/mesh-ledger-reconciliation.d.ts +23 -4
  112. package/dist/mesh/mesh-ledger.d.ts +139 -1
  113. package/dist/mesh/mesh-magi-status.d.ts +63 -0
  114. package/dist/mesh/mesh-missions.d.ts +226 -0
  115. package/dist/mesh/mesh-node-identity.d.ts +310 -0
  116. package/dist/mesh/mesh-queue-assignment.d.ts +158 -0
  117. package/dist/mesh/mesh-reconcile-acked-hold.d.ts +17 -0
  118. package/dist/mesh/mesh-reconcile-config.d.ts +6 -0
  119. package/dist/mesh/mesh-reconcile-identity.d.ts +6 -0
  120. package/dist/mesh/mesh-reconcile-loop.d.ts +80 -0
  121. package/dist/mesh/mesh-reconcile-v2-backstop.d.ts +16 -0
  122. package/dist/mesh/mesh-refine-batch.d.ts +68 -0
  123. package/dist/mesh/mesh-refine-gates.d.ts +428 -0
  124. package/dist/mesh/mesh-refine-status.d.ts +62 -0
  125. package/dist/mesh/mesh-remote-event-pull.d.ts +15 -0
  126. package/dist/mesh/mesh-review-inbox.d.ts +90 -0
  127. package/dist/mesh/mesh-routing.d.ts +70 -0
  128. package/dist/mesh/mesh-runtime-store.d.ts +508 -0
  129. package/dist/mesh/mesh-scheduling-runtime.d.ts +78 -0
  130. package/dist/mesh/mesh-task-inflight.d.ts +46 -0
  131. package/dist/mesh/mesh-task-stats.d.ts +49 -0
  132. package/dist/mesh/mesh-unresolved-forward-outbox.d.ts +30 -0
  133. package/dist/mesh/mesh-warmup-deadline.d.ts +68 -0
  134. package/dist/mesh/mesh-work-queue.d.ts +363 -5
  135. package/dist/mesh/preview-freshness.d.ts +28 -0
  136. package/dist/mesh/refine-config.d.ts +216 -0
  137. package/dist/mesh/worktree-bootstrap-config.d.ts +219 -0
  138. package/dist/providers/acp-provider-instance.d.ts +5 -0
  139. package/dist/providers/approval-utils.d.ts +46 -0
  140. package/dist/providers/chat-message-normalization.d.ts +58 -1
  141. package/dist/providers/cli-provider-effect-format.d.ts +30 -0
  142. package/dist/providers/cli-provider-history-dedup.d.ts +17 -0
  143. package/dist/providers/cli-provider-input-prompt.d.ts +12 -0
  144. package/dist/providers/cli-provider-instance-types.d.ts +45 -0
  145. package/dist/providers/cli-provider-instance.d.ts +340 -30
  146. package/dist/providers/cli-provider-status-helpers.d.ts +46 -0
  147. package/dist/providers/cli-provider-transcript-merge.d.ts +7 -0
  148. package/dist/providers/contracts.d.ts +149 -6
  149. package/dist/providers/external-sources.d.ts +71 -0
  150. package/dist/providers/manual-attendance.d.ts +79 -0
  151. package/dist/providers/native-history/antigravity-claim-registry.d.ts +28 -0
  152. package/dist/providers/native-history/antigravity-cli-transcript.d.ts +137 -0
  153. package/dist/providers/native-history/claude-cli-transcript.d.ts +70 -0
  154. package/dist/providers/native-history/codex-cli-transcript.d.ts +73 -0
  155. package/dist/providers/native-history/constants.d.ts +12 -0
  156. package/dist/providers/native-history/dispatcher.d.ts +31 -0
  157. package/dist/providers/native-history/hermes-cli-transcript.d.ts +30 -0
  158. package/dist/providers/native-history/index.d.ts +13 -0
  159. package/dist/providers/provider-instance-manager.d.ts +29 -0
  160. package/dist/providers/provider-instance.d.ts +30 -1
  161. package/dist/providers/provider-loader.d.ts +42 -5
  162. package/dist/providers/provider-trust.d.ts +31 -0
  163. package/dist/providers/read-chat-contract.d.ts +29 -0
  164. package/dist/providers/sdk/v1/builders/acp/detect-status.d.ts +68 -0
  165. package/dist/providers/sdk/v1/builders/cli/detect-status.d.ts +86 -0
  166. package/dist/providers/sdk/v1/builders/cli/parse-approval-squash.d.ts +59 -0
  167. package/dist/providers/sdk/v1/builders/cli/parse-approval.d.ts +65 -0
  168. package/dist/providers/sdk/v1/builders/cli/parse-session.d.ts +91 -0
  169. package/dist/providers/sdk/v1/builders/cli/visible-region.d.ts +42 -0
  170. package/dist/providers/sdk/v1/fixture-tooling/format.d.ts +126 -0
  171. package/dist/providers/sdk/v1/fixture-tooling/index.d.ts +8 -0
  172. package/dist/providers/sdk/v1/fixture-tooling/replay.d.ts +38 -0
  173. package/dist/providers/sdk/v1/index.d.ts +30 -0
  174. package/dist/providers/sdk/v1/sandbox/README-design.d.ts +193 -0
  175. package/dist/providers/sdk/v1/sandbox/require-whitelist.d.ts +74 -0
  176. package/dist/providers/sdk/v1/sandbox/script-runner.d.ts +98 -0
  177. package/dist/providers/sdk/v1/types/cli/index.d.ts +277 -0
  178. package/dist/providers/sdk/v1/types/common/index.d.ts +203 -0
  179. package/dist/providers/sdk/v1/validators/index.d.ts +5 -0
  180. package/dist/providers/sdk/v1/validators/manifest.d.ts +40 -0
  181. package/dist/providers/sdk/v1/validators/taint.d.ts +52 -0
  182. package/dist/providers/spec/adapter.d.ts +98 -0
  183. package/dist/providers/spec/cli-adapter.d.ts +223 -0
  184. package/dist/providers/spec/evaluator.d.ts +45 -0
  185. package/dist/providers/spec/fsm-driver.d.ts +449 -0
  186. package/dist/providers/spec/fsm-evaluator.d.ts +93 -0
  187. package/dist/providers/spec/fsm-loader.d.ts +14 -0
  188. package/dist/providers/spec/fsm-types.d.ts +202 -0
  189. package/dist/providers/spec/native-history-executor.d.ts +41 -0
  190. package/dist/providers/spec/pre-launch-trust.d.ts +16 -0
  191. package/dist/providers/spec/route.d.ts +4 -0
  192. package/dist/providers/spec/types.d.ts +244 -0
  193. package/dist/providers/status-monitor.d.ts +7 -7
  194. package/dist/providers/transcript-v2.d.ts +176 -0
  195. package/dist/providers/types/interactive-prompt.d.ts +84 -0
  196. package/dist/providers/working-dir.d.ts +17 -0
  197. package/dist/repo-mesh-types.d.ts +629 -12
  198. package/dist/runtime-defaults.d.ts +2 -0
  199. package/dist/session-host/managed-host.d.ts +64 -0
  200. package/dist/session-host/runtime-surface.d.ts +10 -16
  201. package/dist/sessions/registry.d.ts +6 -0
  202. package/dist/shared-types-extra.d.ts +2 -4
  203. package/dist/shared-types.d.ts +86 -55
  204. package/dist/status/normalize.d.ts +1 -1
  205. package/dist/status/normalize.js +1 -0
  206. package/dist/status/normalize.js.map +1 -1
  207. package/dist/status/normalize.mjs +1 -0
  208. package/dist/status/normalize.mjs.map +1 -1
  209. package/dist/status/reporter.d.ts +2 -0
  210. package/dist/status/snapshot.d.ts +26 -0
  211. package/dist/system/hash.d.ts +8 -0
  212. package/dist/system/load-better-sqlite3.d.ts +21 -0
  213. package/dist/types.d.ts +5 -0
  214. package/package.json +11 -4
  215. package/src/agent-stream/poller.ts +2 -3
  216. package/src/agent-stream/provider-adapter.ts +1 -1
  217. package/src/boot/daemon-lifecycle.ts +80 -14
  218. package/src/boot/process-hardening.ts +89 -0
  219. package/src/build-info.ts +73 -0
  220. package/src/chat/source-machine.ts +534 -0
  221. package/src/chat/source-resolver.ts +0 -0
  222. package/src/chat/subscription-updates.ts +20 -1
  223. package/src/cli-adapter-types.d.ts +3 -1
  224. package/src/cli-adapter-types.ts +68 -2
  225. package/src/cli-adapters/cli-script-runner.ts +421 -0
  226. package/src/cli-adapters/cli-state-engine.ts +1246 -0
  227. package/src/cli-adapters/provider-cli-adapter.d.ts +1 -1
  228. package/src/cli-adapters/provider-cli-adapter.ts +914 -1144
  229. package/src/cli-adapters/provider-cli-parse.d.ts +2 -0
  230. package/src/cli-adapters/provider-cli-parse.ts +19 -0
  231. package/src/cli-adapters/provider-cli-runtime.ts +56 -7
  232. package/src/cli-adapters/provider-cli-shared.d.ts +4 -0
  233. package/src/cli-adapters/provider-cli-shared.ts +121 -11
  234. package/src/cli-adapters/pty-transport.ts +2 -1
  235. package/src/cli-adapters/pty-write-chunking.ts +106 -0
  236. package/src/cli-adapters/raw-terminal-io.ts +252 -0
  237. package/src/cli-adapters/resolve-executable.ts +204 -0
  238. package/src/cli-adapters/session-host-transport.ts +2 -1
  239. package/src/cli-adapters/terminal-backends/ghostty-vt-backend.ts +63 -29
  240. package/src/cli-adapters/terminal-backends/types.ts +10 -3
  241. package/src/cli-adapters/terminal-screen.ts +16 -81
  242. package/src/commands/chat-commands-debug-bundle.ts +398 -0
  243. package/src/commands/chat-commands-read.ts +2488 -0
  244. package/src/commands/chat-commands-scope.ts +54 -0
  245. package/src/commands/chat-commands-shared.ts +114 -0
  246. package/src/commands/chat-commands-write.ts +891 -0
  247. package/src/commands/chat-commands.ts +19 -1841
  248. package/src/commands/cli-manager.ts +596 -27
  249. package/src/commands/handler.ts +845 -2
  250. package/src/commands/high-family/index.ts +28 -0
  251. package/src/commands/high-family/mesh-coordinator-launch.ts +680 -0
  252. package/src/commands/high-family/mesh-events.ts +102 -0
  253. package/src/commands/high-family/mesh-status.ts +849 -0
  254. package/src/commands/high-family/types.ts +80 -0
  255. package/src/commands/low-family/coordinator-prompt.ts +72 -0
  256. package/src/commands/low-family/daemon-lifecycle.ts +120 -0
  257. package/src/commands/low-family/diagnostics.ts +57 -0
  258. package/src/commands/low-family/index.ts +37 -0
  259. package/src/commands/low-family/mesh-ledger.ts +62 -0
  260. package/src/commands/low-family/mesh-node-logs.ts +87 -0
  261. package/src/commands/low-family/notification.ts +116 -0
  262. package/src/commands/low-family/refine-config.ts +106 -0
  263. package/src/commands/low-family/session-host.ts +274 -0
  264. package/src/commands/low-family/spec-providerdev.ts +217 -0
  265. package/src/commands/low-family/status-meta.ts +112 -0
  266. package/src/commands/low-family/types.ts +39 -0
  267. package/src/commands/med-family/cli-agent.ts +241 -0
  268. package/src/commands/med-family/fast-forward.ts +230 -0
  269. package/src/commands/med-family/ide.ts +163 -0
  270. package/src/commands/med-family/index.ts +37 -0
  271. package/src/commands/med-family/mesh-crud.ts +1287 -0
  272. package/src/commands/med-family/mesh-host-pairing.ts +234 -0
  273. package/src/commands/med-family/mesh-queue.ts +167 -0
  274. package/src/commands/med-family/mesh-restart.ts +92 -0
  275. package/src/commands/med-family/types.ts +153 -0
  276. package/src/commands/mesh-coordinator.ts +334 -124
  277. package/src/commands/router-aggregate-status.ts +209 -0
  278. package/src/commands/router-mesh-session-owner.ts +114 -0
  279. package/src/commands/router-refine.ts +1711 -0
  280. package/src/commands/router-worktree-cleanup.ts +870 -0
  281. package/src/commands/router.ts +795 -4143
  282. package/src/commands/stream-commands.ts +8 -0
  283. package/src/commands/upgrade-helper.ts +310 -45
  284. package/src/config/chat-history.ts +493 -24
  285. package/src/config/config.ts +30 -0
  286. package/src/config/mesh-config.ts +632 -23
  287. package/src/config/mesh-json-config.ts +376 -0
  288. package/src/config/recent-activity.ts +8 -2
  289. package/src/config/registry-resolver.ts +100 -0
  290. package/src/config/repo-settings.ts +111 -0
  291. package/src/daemon/dev-auto-implement.ts +3 -2
  292. package/src/daemon/dev-cli-debug.ts +10 -1
  293. package/src/daemon/dev-server.ts +0 -541
  294. package/src/detection/cli-detector.ts +94 -9
  295. package/src/detection/ide-detector.ts +55 -16
  296. package/src/detection/win32-ide-version.ts +106 -0
  297. package/src/git/change-impact-config.ts +354 -0
  298. package/src/git/git-commands.ts +112 -16
  299. package/src/git/git-diff.ts +81 -11
  300. package/src/git/git-executor.ts +12 -0
  301. package/src/git/git-status.ts +767 -48
  302. package/src/git/git-types.ts +14 -62
  303. package/src/git/git-worktree.ts +261 -4
  304. package/src/git/index.ts +17 -0
  305. package/src/index.ts +207 -13
  306. package/src/installer.d.ts +1 -1
  307. package/src/installer.ts +8 -6
  308. package/src/ipc/local-ipc-server.ts +278 -0
  309. package/src/launch.d.ts +1 -1
  310. package/src/launch.ts +37 -28
  311. package/src/logging/async-batch-writer.ts +55 -0
  312. package/src/logging/command-log.ts +7 -5
  313. package/src/logging/debug-config.ts +25 -0
  314. package/src/logging/debug-trace.ts +7 -2
  315. package/src/logging/log-redactor.ts +100 -0
  316. package/src/logging/log-tail-reader.ts +341 -0
  317. package/src/logging/logger.ts +14 -7
  318. package/src/mesh/contracts.ts +469 -0
  319. package/src/mesh/coordinator-prompt.ts +572 -34
  320. package/src/mesh/coordinator-registry.ts +121 -0
  321. package/src/mesh/mesh-active-work.ts +706 -0
  322. package/src/mesh/mesh-clone-grace.ts +68 -0
  323. package/src/mesh/mesh-completion-synthesis.ts +398 -0
  324. package/src/mesh/mesh-coordinator-config.ts +97 -0
  325. package/src/mesh/mesh-delivery-policy.ts +284 -0
  326. package/src/mesh/mesh-event-classify.ts +78 -0
  327. package/src/mesh/mesh-event-forwarding.ts +1964 -0
  328. package/src/mesh/mesh-event-trace.ts +67 -0
  329. package/src/mesh/mesh-events-coordinator.ts +32 -0
  330. package/src/mesh/mesh-events-pending.ts +1494 -0
  331. package/src/mesh/mesh-events-stale.ts +440 -0
  332. package/src/mesh/mesh-events-utils.ts +443 -0
  333. package/src/mesh/mesh-events.ts +43 -1035
  334. package/src/mesh/mesh-fast-forward.ts +856 -0
  335. package/src/mesh/mesh-host-ownership.ts +111 -0
  336. package/src/mesh/mesh-init.ts +350 -0
  337. package/src/mesh/mesh-ledger-reconciliation.ts +12 -7
  338. package/src/mesh/mesh-ledger.ts +898 -102
  339. package/src/mesh/mesh-magi-status.ts +223 -0
  340. package/src/mesh/mesh-missions.ts +568 -0
  341. package/src/mesh/mesh-node-identity.ts +2065 -0
  342. package/src/mesh/mesh-queue-assignment.ts +2247 -0
  343. package/src/mesh/mesh-reconcile-acked-hold.ts +230 -0
  344. package/src/mesh/mesh-reconcile-config.ts +66 -0
  345. package/src/mesh/mesh-reconcile-identity.ts +103 -0
  346. package/src/mesh/mesh-reconcile-loop.ts +1473 -0
  347. package/src/mesh/mesh-reconcile-v2-backstop.ts +62 -0
  348. package/src/mesh/mesh-refine-batch.ts +205 -0
  349. package/src/mesh/mesh-refine-gates.ts +1686 -0
  350. package/src/mesh/mesh-refine-status.ts +231 -0
  351. package/src/mesh/mesh-remote-event-pull.ts +279 -0
  352. package/src/mesh/mesh-review-inbox.ts +308 -0
  353. package/src/mesh/mesh-routing.ts +291 -0
  354. package/src/mesh/mesh-runtime-store.ts +2150 -0
  355. package/src/mesh/mesh-scheduling-runtime.ts +198 -0
  356. package/src/mesh/mesh-task-inflight.ts +70 -0
  357. package/src/mesh/mesh-task-stats.ts +161 -0
  358. package/src/mesh/mesh-unresolved-forward-outbox.ts +185 -0
  359. package/src/mesh/mesh-warmup-deadline.ts +152 -0
  360. package/src/mesh/mesh-work-queue.ts +1437 -147
  361. package/src/mesh/preview-freshness.ts +163 -0
  362. package/src/mesh/refine-config.ts +423 -0
  363. package/src/mesh/worktree-bootstrap-config.ts +599 -0
  364. package/src/providers/acp-provider-instance.ts +43 -10
  365. package/src/providers/approval-utils.d.ts +5 -0
  366. package/src/providers/approval-utils.ts +100 -6
  367. package/src/providers/chat-message-normalization.ts +126 -4
  368. package/src/providers/cli-provider-effect-format.ts +53 -0
  369. package/src/providers/cli-provider-history-dedup.ts +75 -0
  370. package/src/providers/cli-provider-input-prompt.ts +133 -0
  371. package/src/providers/cli-provider-instance-types.ts +131 -0
  372. package/src/providers/cli-provider-instance.ts +2500 -497
  373. package/src/providers/cli-provider-status-helpers.ts +123 -0
  374. package/src/providers/cli-provider-transcript-merge.ts +114 -0
  375. package/src/providers/contracts.d.ts +55 -0
  376. package/src/providers/contracts.ts +160 -6
  377. package/src/providers/extension-provider-instance.ts +12 -7
  378. package/src/providers/external-sources.ts +218 -0
  379. package/src/providers/ide-provider-instance.ts +35 -12
  380. package/src/providers/manual-attendance.ts +105 -0
  381. package/src/providers/native-history/antigravity-claim-registry.ts +131 -0
  382. package/src/providers/native-history/antigravity-cli-transcript.ts +1193 -0
  383. package/src/providers/native-history/claude-cli-transcript.ts +396 -0
  384. package/src/providers/native-history/codex-cli-transcript.ts +479 -0
  385. package/src/providers/native-history/constants.ts +19 -0
  386. package/src/providers/native-history/dispatcher.ts +503 -0
  387. package/src/providers/native-history/hermes-cli-transcript.ts +312 -0
  388. package/src/providers/native-history/index.ts +30 -0
  389. package/src/providers/provider-instance-manager.ts +71 -0
  390. package/src/providers/provider-instance.ts +24 -1
  391. package/src/providers/provider-loader.ts +700 -55
  392. package/src/providers/provider-schema.ts +87 -14
  393. package/src/providers/provider-trust.ts +114 -0
  394. package/src/providers/read-chat-contract.ts +76 -16
  395. package/src/providers/sdk/README.md +49 -0
  396. package/src/providers/sdk/v1/builders/acp/detect-status.ts +144 -0
  397. package/src/providers/sdk/v1/builders/cli/detect-status.ts +313 -0
  398. package/src/providers/sdk/v1/builders/cli/parse-approval-squash.ts +158 -0
  399. package/src/providers/sdk/v1/builders/cli/parse-approval.ts +261 -0
  400. package/src/providers/sdk/v1/builders/cli/parse-session.ts +276 -0
  401. package/src/providers/sdk/v1/builders/cli/visible-region.ts +143 -0
  402. package/src/providers/sdk/v1/fixture-tooling/format.ts +130 -0
  403. package/src/providers/sdk/v1/fixture-tooling/index.ts +22 -0
  404. package/src/providers/sdk/v1/fixture-tooling/replay.ts +352 -0
  405. package/src/providers/sdk/v1/index.ts +152 -0
  406. package/src/providers/sdk/v1/sandbox/README-design.ts +195 -0
  407. package/src/providers/sdk/v1/sandbox/require-whitelist.ts +472 -0
  408. package/src/providers/sdk/v1/sandbox/script-runner.ts +150 -0
  409. package/src/providers/sdk/v1/schemas/cli/provider.schema.json +509 -0
  410. package/src/providers/sdk/v1/schemas/primitives/acp-session-protocol-v1.json +131 -0
  411. package/src/providers/sdk/v1/schemas/primitives/native-history-codex-rollout-v1.json +66 -0
  412. package/src/providers/sdk/v1/schemas/primitives/tui-approval-squash-v1.json +91 -0
  413. package/src/providers/sdk/v1/schemas/primitives/tui-assistant-block-v1.json +91 -0
  414. package/src/providers/sdk/v1/schemas/primitives/tui-cue-ordering-v1.json +47 -0
  415. package/src/providers/sdk/v1/schemas/primitives/tui-dispatch-order-v1.json +32 -0
  416. package/src/providers/sdk/v1/schemas/primitives/tui-footer-chrome-v1.json +42 -0
  417. package/src/providers/sdk/v1/schemas/primitives/tui-index-finder-v1.json +27 -0
  418. package/src/providers/sdk/v1/schemas/primitives/tui-modal-v1.json +125 -0
  419. package/src/providers/sdk/v1/schemas/primitives/tui-prompt-marker-v1.json +45 -0
  420. package/src/providers/sdk/v1/schemas/primitives/tui-session-id-extraction-v1.json +46 -0
  421. package/src/providers/sdk/v1/schemas/primitives/tui-settled-prompt-v1.json +71 -0
  422. package/src/providers/sdk/v1/schemas/primitives/tui-spinner-v1.json +83 -0
  423. package/src/providers/sdk/v1/schemas/primitives/tui-transcript-pty-v1.json +83 -0
  424. package/src/providers/sdk/v1/schemas/primitives/tui-visible-region-v1.json +57 -0
  425. package/src/providers/sdk/v1/schemas/primitives/tui-welcome-screen-v1.json +35 -0
  426. package/src/providers/sdk/v1/types/cli/index.ts +365 -0
  427. package/src/providers/sdk/v1/types/common/index.ts +229 -0
  428. package/src/providers/sdk/v1/validators/index.ts +19 -0
  429. package/src/providers/sdk/v1/validators/manifest.ts +110 -0
  430. package/src/providers/sdk/v1/validators/taint.ts +309 -0
  431. package/src/providers/spec/adapter.ts +246 -0
  432. package/src/providers/spec/cli-adapter.ts +1064 -0
  433. package/src/providers/spec/evaluator.ts +407 -0
  434. package/src/providers/spec/fsm-driver.ts +1528 -0
  435. package/src/providers/spec/fsm-evaluator.ts +290 -0
  436. package/src/providers/spec/fsm-loader.ts +128 -0
  437. package/src/providers/spec/fsm-types.ts +301 -0
  438. package/src/providers/spec/native-history-executor.ts +1241 -0
  439. package/src/providers/spec/pre-launch-trust.ts +104 -0
  440. package/src/providers/spec/route.ts +51 -0
  441. package/src/providers/spec/types.ts +284 -0
  442. package/src/providers/status-monitor.d.ts +7 -7
  443. package/src/providers/status-monitor.ts +37 -22
  444. package/src/providers/transcript-v2.ts +567 -0
  445. package/src/providers/types/interactive-prompt.ts +536 -0
  446. package/src/providers/version-archive.ts +64 -24
  447. package/src/providers/working-dir.ts +23 -0
  448. package/src/repo-mesh-types.ts +868 -13
  449. package/src/runtime-defaults.ts +39 -0
  450. package/src/session-host/managed-host.ts +218 -0
  451. package/src/session-host/runtime-surface.ts +20 -80
  452. package/src/sessions/registry.ts +6 -0
  453. package/src/shared-types-extra.ts +2 -4
  454. package/src/shared-types.d.ts +8 -0
  455. package/src/shared-types.ts +124 -55
  456. package/src/status/builders.ts +26 -6
  457. package/src/status/normalize.ts +2 -0
  458. package/src/status/reporter.ts +19 -1
  459. package/src/status/snapshot.ts +95 -26
  460. package/src/system/hash.ts +23 -0
  461. package/src/system/host-memory.ts +29 -12
  462. package/src/system/load-better-sqlite3.ts +68 -0
  463. package/src/types.ts +5 -0
  464. package/dist/cli-adapters/terminal-backends/xterm-backend.d.ts +0 -17
  465. package/dist/mesh/mesh-sync.d.ts +0 -53
  466. package/src/cli-adapters/terminal-backends/ghostty-vt-backend.d.ts +0 -16
  467. package/src/cli-adapters/terminal-backends/xterm-backend.ts +0 -97
  468. package/src/mesh/mesh-sync.ts +0 -111
@@ -0,0 +1,45 @@
1
+ export declare const STATUS_HYDRATION_TAIL_LIMIT = 200;
2
+ export type CompletedDebouncePending = {
3
+ chatTitle: string;
4
+ duration: number;
5
+ timestamp: number;
6
+ firstObservedAt: number;
7
+ previousStatus: string;
8
+ loggedBlockReason?: string;
9
+ loggedTranscriptProbe?: boolean;
10
+ transcriptProbeHistory?: ExternalTranscriptProbe[];
11
+ taskId?: string;
12
+ turnStartedAt?: number;
13
+ busyEpochAtArm?: number;
14
+ lastOutputAtArm?: number;
15
+ };
16
+ export type CompletedFinalizationBlock = {
17
+ reason: string;
18
+ terminal?: boolean;
19
+ allowTimeout?: boolean;
20
+ holdForTranscript?: boolean;
21
+ };
22
+ export type CompletionFinalAssistantEvidence = {
23
+ present: boolean;
24
+ messages: unknown[];
25
+ source: 'parsed' | 'external-native' | 'unavailable';
26
+ };
27
+ export type ExternalTranscriptProbe = {
28
+ readAt: number;
29
+ msgCount: number;
30
+ lastRole: string | null;
31
+ lastKind: string | null;
32
+ contentLen: number;
33
+ sourcePath: string | null;
34
+ sourceMtimeMs: number | null;
35
+ mtimeAgeMs: number | null;
36
+ };
37
+ export declare const COMPLETED_FINALIZATION_RETRY_MS = 1000;
38
+ export declare const COMPLETED_FINALIZATION_MAX_WAIT_MS = 30000;
39
+ export declare const NATIVE_HISTORY_MESH_IDLE_SETTLE_MS = 4000;
40
+ export declare const USER_INPUT_ACK_DEDUP_WINDOW_MS = 60000;
41
+ export declare const STARTUP_GRACE_IDLE_COLLAPSE_WINDOW_MS = 12000;
42
+ /** Events that signal a dispatched mesh task has reached a terminal state.
43
+ * Detach the mesh assignment after emitting one of these so the worker's
44
+ * next unrelated turn doesn't impersonate another completion. */
45
+ export declare const TERMINAL_MESH_EVENTS: Set<string>;
@@ -9,51 +9,119 @@ 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
- type PersistableCliHistoryMessage = {
13
- role: string;
14
- content: string;
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
+ private static readonly AUTO_APPROVE_FLAP_CONTINUITY_MS;
74
+ /**
75
+ * STATUS-MISMATCH: upper bound on how long the auto-approve→`generating` SURFACE
76
+ * mask may hide a worker's `waiting_approval` (status + activeModal) before we give
77
+ * up and surface the real prompt. The mask exists because auto-approve is expected
78
+ * to resolve the modal momentarily; but if it STALLS without ever calling
79
+ * resolveModal — the modal signature never settles for AUTO_APPROVE_SETTLE_MS (a
80
+ * perpetually-flapping/streaming prompt), no concrete modal is ever captured, or the
81
+ * modal is a picker/non-affirmative we never auto-pick — the mask would persist
82
+ * forever and read_chat / mesh_status / the dashboard would NEVER see the pending
83
+ * approval (the coordinator cannot mesh_approve what it cannot see). Once an episode
84
+ * exceeds this bound we stop masking. Generously larger than
85
+ * AUTO_APPROVE_SETTLE_MS (600) + AUTO_APPROVE_GATE_HYSTERESIS_MS (1500) so a
86
+ * legitimately slow-settling / blip-flapping prompt is never unmasked early; a
87
+ * genuine never-resolving stall surfaces within this window. The settle gate keeps
88
+ * running underneath, so a prompt that finally stabilises still auto-approves, and
89
+ * mesh_approve (raw FSM, unmasked) works throughout.
90
+ */
91
+ private static readonly AUTO_APPROVE_MASK_STALL_MS;
39
92
  private adapter;
40
93
  private context;
41
94
  private events;
42
95
  private lastStatus;
96
+ private agentReadyEmitted;
43
97
  private generatingStartedAt;
98
+ private busyEpoch;
99
+ private fastCollapseSynthesizedTaskId;
100
+ private startupGraceCollapseAt;
44
101
  private settings;
45
102
  private monitor;
46
103
  private generatingDebounceTimer;
47
104
  private generatingDebouncePending;
48
- private lastApprovalEventAt;
105
+ private lastApprovalEventFingerprint;
49
106
  private autoApproveBusy;
50
107
  private autoApproveBusyTimer;
108
+ private lastAutoApprovalSignature;
109
+ private pendingAutoApprovalSignature;
110
+ private pendingAutoApprovalSince;
111
+ private autoApproveSettleTimer;
112
+ private autoApproveInactiveSince;
113
+ private autoApproveLastModalSeenAt;
114
+ private autoApproveMaskSince;
115
+ private stalledApprovalNudgeEpisode;
116
+ private readonly manualAttendance;
51
117
  private controlValues;
52
118
  private summaryMetadata;
53
119
  private appliedEffectKeys;
54
120
  private historyWriter;
55
121
  private runtimeMessages;
56
122
  private lastPersistedHistoryMessages;
123
+ private lastAcknowledgedUserInputAt;
124
+ private recentUserInputAcks;
57
125
  private lastNativeSourceCanonicalCheckAt;
58
126
  private lastNativeSourceCanonicalCacheKey;
59
127
  private cachedSqliteDb;
@@ -63,6 +131,7 @@ export declare class CliProviderInstance implements ProviderInstance {
63
131
  private suppressIdleHistoryReplay;
64
132
  private errorMessage;
65
133
  private errorReason;
134
+ private activeInteractivePrompt;
66
135
  private presentationMode;
67
136
  private providerSessionId?;
68
137
  private launchMode;
@@ -93,44 +162,285 @@ export declare class CliProviderInstance implements ProviderInstance {
93
162
  setPresentationMode(mode: 'terminal' | 'chat'): void;
94
163
  getPresentationMode(): 'terminal' | 'chat';
95
164
  getHotChatSessionState(): HotChatSessionState;
96
- getSessionModalState(): SessionModalState;
165
+ getSessionModalState(sessionId?: string): SessionModalState;
97
166
  updateSettings(newSettings: Record<string, any>): void;
167
+ /**
168
+ * Stamp a direct-dispatch mesh assignment on this instance.
169
+ * setupMeshEventForwarding reads settings.meshNodeFor + meshActiveTaskId to
170
+ * route generating_completed back to the originating coordinator. Without
171
+ * this stamp, mesh_send_task --direct targets a plain CLI session whose
172
+ * completion events silently drop because the forwarder has nothing to
173
+ * match against.
174
+ */
175
+ attachMeshAssignment(assignment: {
176
+ meshId: string;
177
+ nodeId?: string;
178
+ taskId?: string;
179
+ coordinatorDaemonId?: string;
180
+ coordinatorSessionId?: string;
181
+ }): void;
182
+ /**
183
+ * Clear a previously-attached mesh assignment after the task reaches a
184
+ * terminal state. Leaving meshNodeFor pinned would route this session's
185
+ * subsequent unrelated turns (e.g. ad-hoc dashboard chats) to the
186
+ * coordinator as if they were task completions.
187
+ *
188
+ * MESHID-DROP-ON-DETACH (Fix C): a coordinator-LAUNCHED worker session
189
+ * (launchedByCoordinator) holds its mesh membership (meshNodeFor / meshNodeId /
190
+ * meshCoordinatorDaemonId) at the SESSION level — set once at launch
191
+ * (mesh_launch_session / queue auto-launch), independent of any single task.
192
+ * The original detach wiped meshNodeFor + meshNodeId together with the
193
+ * task-level meshActiveTaskId, so the FIRST task completion stripped the
194
+ * membership and EVERY subsequent completion forwarded with meshId absent —
195
+ * resolveWorkerDelegateRouting fell to mesh_unresolved and the coordinator
196
+ * rejected the forward "meshId required". For a launched member we therefore
197
+ * clear ONLY the task-level marker (meshActiveTaskId) and preserve the
198
+ * session-level membership so its next task's completion still resolves.
199
+ * A task-less ad-hoc turn on a preserved-membership session is NOT misrouted:
200
+ * its completion carries no taskId and the session holds no active assignment,
201
+ * so the forwarder's WARMUPGAP guard skips the dispatch-row flip (it only
202
+ * injects a benign task-less notification). A NON-launched session (a plain CLI
203
+ * session adopted by mesh_send_task --direct, launchedByCoordinator falsy)
204
+ * keeps the original full clear so an ad-hoc session is never left pinned.
205
+ */
206
+ detachMeshAssignment(): void;
207
+ /**
208
+ * The resolved modal-park status of this session, or null when it is not
209
+ * parked on a modal awaiting a human answer. Mirrors the overlay logic in
210
+ * getState(): an active AskUserQuestion interactive prompt resolves to
211
+ * waiting_choice; otherwise the adapter's waiting_approval (tool consent)
212
+ * counts — UNLESS auto-approve will dismiss it, in which case the session is
213
+ * effectively generating and is NOT modal-parked. This is the single signal
214
+ * the mesh force-inject guard consults, and the same status string the
215
+ * reconcile loop reads off get_status_metadata. Lowercase literals only —
216
+ * the SessionStatus enum is forked across modules and waiting_choice is
217
+ * absent from some of them.
218
+ */
219
+ resolveModalParkStatus(): 'waiting_choice' | 'waiting_approval' | null;
220
+ /**
221
+ * NOTIF-HELD-DRAIN: true when this `waiting_approval` is a routine, transient tool-consent
222
+ * of an autonomously-progressing mesh session rather than a genuine human-await modal —
223
+ * i.e. it is a mesh coordinator/worker session, a turn is actively in flight
224
+ * (hasAdapterPendingResponse), and no human is attending it by hand. Such a consent is
225
+ * driven to resolution by the harness/operator as part of the in-flight turn, so holding
226
+ * the mesh's completion events behind it (modal_parked) is the false-positive that stalls
227
+ * delivery. Narrow by design: manual attendance or a non-progressing session falls through
228
+ * to the genuine-modal classification.
229
+ */
230
+ private isTransientToolConsent;
231
+ /** True when this session is parked on a modal awaiting a human answer. */
232
+ isModalParked(): boolean;
233
+ /**
234
+ * PTY-OVERTRUST-DRAIN (Defect B). The deliverability/drain status the mesh
235
+ * reconcile loop must consult — the RAW adapter turn-state, with the
236
+ * auto-approve "hold-idle" visual mask STRIPPED.
237
+ *
238
+ * getState().status overlays `autoApproveHoldIdle`/`autoApproveActive` to paint a
239
+ * genuinely-idle adapter as `generating` (a UI-flicker suppression while an
240
+ * auto-approve key-press settles — see getState() ~:800). That mask is correct
241
+ * for the dashboard, but the reconcile loop trusts it as "the coordinator is
242
+ * busy" and therefore HOLDS a worker's completion under
243
+ * `generating_no_idle_coordinator` even though the coordinator's PTY is at a real
244
+ * turn end and would accept the inject as a turn — the completion is stranded.
245
+ *
246
+ * This accessor reports the drain truth instead:
247
+ * - 'modal_parked' — a GENUINE human-await modal (AskUserQuestion / a non-
248
+ * transient tool-consent). Still excluded from drain (a force-inject here
249
+ * writes raw keystrokes the modal eats → data corruption). Mirrors
250
+ * isModalParked(), evaluated first so a parked session never reads idle.
251
+ * - 'idle' — the RAW adapter is at a turn end (adapter.getStatus(allowParse:false)
252
+ * === 'idle') and the session is not modal-parked. Drain-eligible REGARDLESS
253
+ * of the auto-approve mask. This is the case the mask used to hide.
254
+ * - 'generating' — the raw adapter is genuinely mid-turn. Held (a raw PTY write
255
+ * into a generating claude-cli is not consumed as a turn → data loss). The
256
+ * intentional removal of force-inject-into-generating is preserved.
257
+ * - 'other' — any other raw status (error / starting / waiting_choice handled by
258
+ * modal-park above). Not a drain target.
259
+ *
260
+ * Uses allowParse:false (engine.activeModal only, side-effect-free) so it never
261
+ * mutates the very auto-approve mask state the diagnostics read.
262
+ */
263
+ getDrainStatus(): 'idle' | 'generating' | 'modal_parked' | 'other';
98
264
  onEvent(event: string, data?: any): void;
265
+ recordAcknowledgedUserInput(input: InputEnvelope | string): void;
266
+ /** Drop user-input ack entries older than the dedup window so the map can't grow unbounded. */
267
+ private pruneRecentUserInputAcks;
268
+ /**
269
+ * Owner token for this session in the antigravity conversation-claim
270
+ * registry. Derived identically to the dispatcher's read-side token
271
+ * (workspace + spawn time) so the claims the dispatcher records under this
272
+ * session are the ones dispose() releases.
273
+ */
274
+ private antigravityClaimOwner;
99
275
  dispose(): void;
100
276
  private completedDebounceTimer;
101
277
  private completedDebouncePending;
278
+ private lastExternalCompletionProbe;
102
279
  private enforceFreshSessionLaunchIfNeeded;
103
280
  private completionHasFinalAssistantMessage;
281
+ private recordPendingTranscriptProbe;
282
+ /**
283
+ * The spawned CLI's env overrides (e.g. the mesh coordinator points hermes
284
+ * at a per-coordinator HERMES_HOME so its state.db lives in a tmpdir instead
285
+ * of ~/.hermes). The native-history executor expands `${HERMES_HOME:-~/.hermes}`
286
+ * from this map, so the completion gate MUST pass it through — otherwise the
287
+ * gate reads ~/.hermes, finds no coordinator-session transcript, and
288
+ * false-fires missing_final_assistant on every coordinator turn.
289
+ */
290
+ private spawnedEnvOverrides;
291
+ private readExternalCompletionMessages;
292
+ private completionFinalAssistantEvidence;
293
+ private completionFinalSummary;
294
+ private buildCompletedFinalizationDiagnostic;
104
295
  private hasAdapterPendingResponse;
105
296
  private shouldSuppressStaleParsedBusyStatus;
106
- private getCompletedFinalizationBlockReason;
297
+ private getCompletedFinalizationBlock;
298
+ private hasApprovalResolutionEvidence;
299
+ private approvalResolutionFinalizationBlock;
107
300
  private scheduleCompletedDebounceFlush;
301
+ private isMeshWorkerSession;
302
+ /**
303
+ * AUTOAPPROVE-FLAP-RECUR (Fix A+B): how long a busy blip / modal scroll-out may
304
+ * persist before the in-progress settle gate is torn down. For a delegated
305
+ * worker whose auto-approve episode is genuinely still cycling (mask clock
306
+ * alive), the FSM's full waiting_approval → busy → waiting_approval flap runs
307
+ * on a multi-second period, so the settle continuity window is extended to
308
+ * AUTO_APPROVE_FLAP_CONTINUITY_MS to bridge it (still bounded, and still capped
309
+ * by AUTO_APPROVE_MASK_STALL_MS). Every other case — foreground/attended
310
+ * session, or no active mask episode — keeps the tight default hysteresis so a
311
+ * genuine resolution frees the gate promptly.
312
+ */
313
+ private autoApproveContinuityWindowMs;
314
+ /**
315
+ * The settle-gate identity signature for a raw activeModal, or null when the
316
+ * modal is NOT a concrete auto-approvable consent prompt (no captured buttons,
317
+ * a picker/confirm kind, or no reliable affirmative+decline anchor). Mirrors the
318
+ * gates the auto-approve fire path applies before computing modalSignature, so
319
+ * the mask-stall nudge can ask the SAME question the settle gate is tracking —
320
+ * "is THIS frame's modal the identity the settle clock is accruing against?" —
321
+ * without duplicating the button-pick logic. The signature is message +
322
+ * normalized affirmative label only (no volatile counters/button set), matching
323
+ * the fire path exactly (AUTOAPPROVE-SETTLE-FLAP).
324
+ */
325
+ private approvableModalSignature;
326
+ private isAutonomousMeshSession;
327
+ /**
328
+ * ARCH-REFACTOR R1: the taskId to attribute the CURRENTLY-completing turn to.
329
+ * Prefers the per-turn binding (engine.currentTurnTaskId, set when the turn was
330
+ * submitted and surviving until the next turn starts) over the last-write-wins
331
+ * session scalar (settings.meshActiveTaskId). The scalar is retained only as a
332
+ * backward-compat alias for the "current/last assignment" and is the source of the
333
+ * NOTIF-MISDELIVER / TASK-MSG-MISROUTE race: a second task attaching before this
334
+ * turn completes overwrites it. Returns undefined for a non-task ad-hoc turn.
335
+ */
336
+ private completingTurnTaskId;
337
+ private meshTraceCtx;
338
+ private completionTraceOn;
339
+ private fsmTraceOn;
340
+ private recordCompletionGateTrace;
341
+ private recordFsmTransitionTrace;
108
342
  private flushCompletedDebounceIfFinalized;
109
343
  private maybeAutoApproveStatus;
344
+ /**
345
+ * Re-drive the auto-approve check after the settle quiet window elapses.
346
+ * The PTY may have gone silent once the approval prompt finished painting,
347
+ * so no status-change frame is guaranteed to re-enter maybeAutoApproveStatus
348
+ * — this timer-driven re-check picks up the now-settled modal and fires.
349
+ * Deliberately lighter than detectStatusTransition(): it only re-evaluates
350
+ * the approval decision; the next real PTY frame refreshes visible status.
351
+ */
352
+ private recheckAutoApproveSettled;
353
+ /**
354
+ * Emit the queue-claim agent:ready event at most once per session. Both the
355
+ * boot-time starting→idle one-shot and the fsmReadySeen re-arm call this; the
356
+ * agentReadyEmitted guard ensures the second caller is a no-op so a worker is
357
+ * never claimed twice and a queued task is never double-dispatched.
358
+ */
359
+ private emitAgentReadyOnce;
360
+ /**
361
+ * GENERATING-BOUNDARY synthetic emit for a first turn that started AND finished
362
+ * inside the startup-grace window without the FSM ever observing a 'generating'
363
+ * frame (an unobservably-fast turn). Synthesizes the agent:generating_started +
364
+ * agent:generating_completed pair so the mesh coordinator learns the worker went
365
+ * idle. Returns true iff it synthesized.
366
+ *
367
+ * Two callers share this defense line:
368
+ * - 'startup_grace_fast_collapse' — the starting→idle transition (the FSM whose
369
+ * spec lacks/hadn't-synced the starting→busy edge collapses starting→idle
370
+ * directly, with no intervening 'generating' frame).
371
+ * - 'startup_grace_idle_turn_collapse' — the idle→idle no-status-change poll
372
+ * (the launch settle already drained starting→idle BEFORE the first turn, so
373
+ * the turn runs+completes while status stays 'idle' the whole time and
374
+ * detectStatusTransition never re-enters its change block — the live rc.403
375
+ * Probe1 miss).
376
+ *
377
+ * False-positive safety (must NOT fire on a benign boot): currentTurnTaskId is
378
+ * set ONLY by onTurnStarted (a real turn STARTED this boot) and persists past
379
+ * completion, so it excludes a true idle boot (null) and a queued-pending first
380
+ * turn that only runs after grace (onTurnStarted not yet called → null).
381
+ * !hasAdapterPendingResponse() excludes a turn still mid-flight. generating
382
+ * never armed (generatingStartedAt===0 && !generatingDebouncePending) means the
383
+ * whole idle→busy→idle never happened for this turn. The once-per-turn guard
384
+ * (fastCollapseSynthesizedTaskId) keeps the re-polled idle-stayed caller from
385
+ * re-emitting every poll.
386
+ */
387
+ private maybeSynthesizeStartupGraceCollapse;
110
388
  private detectStatusTransition;
111
389
  private pushEvent;
112
390
  private flushEvents;
113
391
  private applyProviderResponse;
114
- private getEffectDedupKey;
115
- private getPersistedEffectContent;
116
392
  getAdapter(): ProviderCliAdapter;
117
393
  get cliType(): string;
118
394
  get cliName(): string;
119
395
  private shouldAutoApprove;
396
+ /** @see ProviderInstance.noteManualInteraction */
397
+ noteManualInteraction(now?: number, opts?: {
398
+ passive?: boolean;
399
+ }): void;
400
+ /**
401
+ * Whether auto-approve should be treated as active *right now* for display
402
+ * and firing decisions: the configured intent AND the user is not currently
403
+ * attending this session by hand. When a human is attending, auto-approve is
404
+ * held so the modal stays visible and they can drive it via the controlbar.
405
+ * Provider-agnostic — the attendance signal is the command set, never any
406
+ * CLI-specific modal text.
407
+ */
408
+ private autoApproveEffectivelyActive;
409
+ private autoApproveMaskStalled;
410
+ /**
411
+ * NOTIF-APPROVAL-MASKED (Q1b): surface a delegated worker's STALLED auto-approve modal
412
+ * to the mesh COORDINATOR, decoupled from the dashboard visible-status mask.
413
+ *
414
+ * When auto-approve is configured but the episode never settles (modal parse miss / the
415
+ * settle gate never satisfied), getState()/detectStatusTransition() fold the raw
416
+ * `waiting_approval` into `generating` to suppress dashboard flicker — so
417
+ * detectStatusTransition()'s `waiting_approval` arm never runs and NO agent:waiting_approval
418
+ * event is emitted. The coordinator's real-time approval-nudge delivery then has no input and
419
+ * the worker's stuck modal is never surfaced (the live ~25s stall). The dashboard mask is
420
+ * intentional and stays; this emits the coordinator nudge exactly ONCE, gated on the SAME
421
+ * raw-waiting_approval + mask-stalled signal resolveModalParkStatus() distinguishes, the
422
+ * instant the mask-stall threshold trips (the same moment getState un-folds the mask).
423
+ *
424
+ * Only delegated worker sessions qualify: a foreground session has no coordinator to notify,
425
+ * and its own dashboard mask already reveals the modal on stall. A normally-resolving
426
+ * auto-approve never reaches AUTO_APPROVE_MASK_STALL_MS, so it emits nothing here; and if a
427
+ * masked approval clears just as this fires, rc.455's isApprovalNudgeResolved stale-drop
428
+ * discards the nudge coordinator-side without noise. Dedup is per-episode (keyed on the
429
+ * mask-clock value) so a modal that flaps between parsed/unparsed states is announced once.
430
+ */
431
+ private maybeEmitStalledApprovalNudge;
120
432
  private recordAutoApproval;
121
433
  recordApprovalSelection(buttonText: string): void;
122
- private formatMarkerTimestamp;
123
434
  private maybeAppendRuntimeRecoveryMessage;
124
435
  private appendRuntimeSystemMessage;
125
436
  private appendRuntimeMessage;
126
437
  mergeRuntimeChatMessages(parsedMessages: ChatMessage[]): ChatMessage[];
127
- private mergeConversationMessages;
128
- private formatApprovalRequestMessage;
129
438
  private promoteProviderSessionId;
439
+ private shouldHydrateExistingProviderHistory;
440
+ private shouldSuppressFreshLaunchStartupReplay;
130
441
  private syncCanonicalSavedHistoryIfNeeded;
131
442
  private restorePersistedHistoryFromCurrentSession;
132
443
  private getProbeDirectories;
133
444
  private buildSqlPlaceholderList;
134
445
  private querySqliteText;
135
446
  }
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;