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

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 +58296 -24540
  81. package/dist/index.js.map +1 -1
  82. package/dist/index.mjs +59238 -25657
  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 +375 -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 +2554 -499
  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,139 @@ 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
+ * 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 ~4.3–4.5s busy phase) gets to accrue its 600ms on the RETURNING approval
106
+ * frame before this stall bound can trip. Observed geometry: approval ~1.5s,
107
+ * busy ~4.3–4.5s. 9000ms ≥ CONTINUITY(6000) + busy(~4.5s) + SETTLE(600) headroom;
108
+ * the old 4500ms tripped inside the very first busy phase (while modal=none, so
109
+ * the nudge was NOT deferred) and leaked to the coordinator.
110
+ */
111
+ private static readonly AUTO_APPROVE_MASK_STALL_MS;
39
112
  private adapter;
40
113
  private context;
41
114
  private events;
42
115
  private lastStatus;
116
+ private agentReadyEmitted;
43
117
  private generatingStartedAt;
118
+ private busyEpoch;
119
+ private fastCollapseSynthesizedTaskId;
120
+ private startupGraceCollapseAt;
44
121
  private settings;
45
122
  private monitor;
46
123
  private generatingDebounceTimer;
47
124
  private generatingDebouncePending;
48
- private lastApprovalEventAt;
125
+ private lastApprovalEventFingerprint;
49
126
  private autoApproveBusy;
50
127
  private autoApproveBusyTimer;
128
+ private lastAutoApprovalSignature;
129
+ private pendingAutoApprovalSignature;
130
+ private pendingAutoApprovalSince;
131
+ private autoApproveSettleTimer;
132
+ private autoApproveInactiveSince;
133
+ private autoApproveLastModalSeenAt;
134
+ private autoApproveMaskSince;
135
+ private stalledApprovalNudgeEpisode;
136
+ private readonly manualAttendance;
51
137
  private controlValues;
52
138
  private summaryMetadata;
53
139
  private appliedEffectKeys;
54
140
  private historyWriter;
55
141
  private runtimeMessages;
56
142
  private lastPersistedHistoryMessages;
143
+ private lastAcknowledgedUserInputAt;
144
+ private recentUserInputAcks;
57
145
  private lastNativeSourceCanonicalCheckAt;
58
146
  private lastNativeSourceCanonicalCacheKey;
59
147
  private cachedSqliteDb;
@@ -63,6 +151,7 @@ export declare class CliProviderInstance implements ProviderInstance {
63
151
  private suppressIdleHistoryReplay;
64
152
  private errorMessage;
65
153
  private errorReason;
154
+ private activeInteractivePrompt;
66
155
  private presentationMode;
67
156
  private providerSessionId?;
68
157
  private launchMode;
@@ -93,44 +182,300 @@ export declare class CliProviderInstance implements ProviderInstance {
93
182
  setPresentationMode(mode: 'terminal' | 'chat'): void;
94
183
  getPresentationMode(): 'terminal' | 'chat';
95
184
  getHotChatSessionState(): HotChatSessionState;
96
- getSessionModalState(): SessionModalState;
185
+ getSessionModalState(sessionId?: string): SessionModalState;
97
186
  updateSettings(newSettings: Record<string, any>): void;
187
+ /**
188
+ * Stamp a direct-dispatch mesh assignment on this instance.
189
+ * setupMeshEventForwarding reads settings.meshNodeFor + meshActiveTaskId to
190
+ * route generating_completed back to the originating coordinator. Without
191
+ * this stamp, mesh_send_task --direct targets a plain CLI session whose
192
+ * completion events silently drop because the forwarder has nothing to
193
+ * match against.
194
+ */
195
+ attachMeshAssignment(assignment: {
196
+ meshId: string;
197
+ nodeId?: string;
198
+ taskId?: string;
199
+ coordinatorDaemonId?: string;
200
+ coordinatorSessionId?: string;
201
+ }): void;
202
+ /**
203
+ * Clear a previously-attached mesh assignment after the task reaches a
204
+ * terminal state. Leaving meshNodeFor pinned would route this session's
205
+ * subsequent unrelated turns (e.g. ad-hoc dashboard chats) to the
206
+ * coordinator as if they were task completions.
207
+ *
208
+ * MESHID-DROP-ON-DETACH (Fix C): a coordinator-LAUNCHED worker session
209
+ * (launchedByCoordinator) holds its mesh membership (meshNodeFor / meshNodeId /
210
+ * meshCoordinatorDaemonId) at the SESSION level — set once at launch
211
+ * (mesh_launch_session / queue auto-launch), independent of any single task.
212
+ * The original detach wiped meshNodeFor + meshNodeId together with the
213
+ * task-level meshActiveTaskId, so the FIRST task completion stripped the
214
+ * membership and EVERY subsequent completion forwarded with meshId absent —
215
+ * resolveWorkerDelegateRouting fell to mesh_unresolved and the coordinator
216
+ * rejected the forward "meshId required". For a launched member we therefore
217
+ * clear ONLY the task-level marker (meshActiveTaskId) and preserve the
218
+ * session-level membership so its next task's completion still resolves.
219
+ * A task-less ad-hoc turn on a preserved-membership session is NOT misrouted:
220
+ * its completion carries no taskId and the session holds no active assignment,
221
+ * so the forwarder's WARMUPGAP guard skips the dispatch-row flip (it only
222
+ * injects a benign task-less notification). A NON-launched session (a plain CLI
223
+ * session adopted by mesh_send_task --direct, launchedByCoordinator falsy)
224
+ * keeps the original full clear so an ad-hoc session is never left pinned.
225
+ */
226
+ detachMeshAssignment(): void;
227
+ /**
228
+ * The resolved modal-park status of this session, or null when it is not
229
+ * parked on a modal awaiting a human answer. Mirrors the overlay logic in
230
+ * getState(): an active AskUserQuestion interactive prompt resolves to
231
+ * waiting_choice; otherwise the adapter's waiting_approval (tool consent)
232
+ * counts — UNLESS auto-approve will dismiss it, in which case the session is
233
+ * effectively generating and is NOT modal-parked. This is the single signal
234
+ * the mesh force-inject guard consults, and the same status string the
235
+ * reconcile loop reads off get_status_metadata. Lowercase literals only —
236
+ * the SessionStatus enum is forked across modules and waiting_choice is
237
+ * absent from some of them.
238
+ */
239
+ resolveModalParkStatus(): 'waiting_choice' | 'waiting_approval' | null;
240
+ /**
241
+ * NOTIF-HELD-DRAIN: true when this `waiting_approval` is a routine, transient tool-consent
242
+ * of an autonomously-progressing mesh session rather than a genuine human-await modal —
243
+ * i.e. it is a mesh coordinator/worker session, a turn is actively in flight
244
+ * (hasAdapterPendingResponse), and no human is attending it by hand. Such a consent is
245
+ * driven to resolution by the harness/operator as part of the in-flight turn, so holding
246
+ * the mesh's completion events behind it (modal_parked) is the false-positive that stalls
247
+ * delivery. Narrow by design: manual attendance or a non-progressing session falls through
248
+ * to the genuine-modal classification.
249
+ */
250
+ private isTransientToolConsent;
251
+ /** True when this session is parked on a modal awaiting a human answer. */
252
+ isModalParked(): boolean;
253
+ /**
254
+ * PTY-OVERTRUST-DRAIN (Defect B). The deliverability/drain status the mesh
255
+ * reconcile loop must consult — the RAW adapter turn-state, with the
256
+ * auto-approve "hold-idle" visual mask STRIPPED.
257
+ *
258
+ * getState().status overlays `autoApproveHoldIdle`/`autoApproveActive` to paint a
259
+ * genuinely-idle adapter as `generating` (a UI-flicker suppression while an
260
+ * auto-approve key-press settles — see getState() ~:800). That mask is correct
261
+ * for the dashboard, but the reconcile loop trusts it as "the coordinator is
262
+ * busy" and therefore HOLDS a worker's completion under
263
+ * `generating_no_idle_coordinator` even though the coordinator's PTY is at a real
264
+ * turn end and would accept the inject as a turn — the completion is stranded.
265
+ *
266
+ * This accessor reports the drain truth instead:
267
+ * - 'modal_parked' — a GENUINE human-await modal (AskUserQuestion / a non-
268
+ * transient tool-consent). Still excluded from drain (a force-inject here
269
+ * writes raw keystrokes the modal eats → data corruption). Mirrors
270
+ * isModalParked(), evaluated first so a parked session never reads idle.
271
+ * - 'idle' — the RAW adapter is at a turn end (adapter.getStatus(allowParse:false)
272
+ * === 'idle') and the session is not modal-parked. Drain-eligible REGARDLESS
273
+ * of the auto-approve mask. This is the case the mask used to hide.
274
+ * - 'generating' — the raw adapter is genuinely mid-turn. Held (a raw PTY write
275
+ * into a generating claude-cli is not consumed as a turn → data loss). The
276
+ * intentional removal of force-inject-into-generating is preserved.
277
+ * - 'other' — any other raw status (error / starting / waiting_choice handled by
278
+ * modal-park above). Not a drain target.
279
+ *
280
+ * Uses allowParse:false (engine.activeModal only, side-effect-free) so it never
281
+ * mutates the very auto-approve mask state the diagnostics read.
282
+ */
283
+ getDrainStatus(): 'idle' | 'generating' | 'modal_parked' | 'other';
98
284
  onEvent(event: string, data?: any): void;
285
+ recordAcknowledgedUserInput(input: InputEnvelope | string): void;
286
+ /** Drop user-input ack entries older than the dedup window so the map can't grow unbounded. */
287
+ private pruneRecentUserInputAcks;
288
+ /**
289
+ * Owner token for this session in the antigravity conversation-claim
290
+ * registry. Derived identically to the dispatcher's read-side token
291
+ * (workspace + spawn time) so the claims the dispatcher records under this
292
+ * session are the ones dispose() releases.
293
+ */
294
+ private antigravityClaimOwner;
99
295
  dispose(): void;
100
296
  private completedDebounceTimer;
101
297
  private completedDebouncePending;
298
+ private lastExternalCompletionProbe;
102
299
  private enforceFreshSessionLaunchIfNeeded;
103
300
  private completionHasFinalAssistantMessage;
301
+ private recordPendingTranscriptProbe;
302
+ /**
303
+ * The spawned CLI's env overrides (e.g. the mesh coordinator points hermes
304
+ * at a per-coordinator HERMES_HOME so its state.db lives in a tmpdir instead
305
+ * of ~/.hermes). The native-history executor expands `${HERMES_HOME:-~/.hermes}`
306
+ * from this map, so the completion gate MUST pass it through — otherwise the
307
+ * gate reads ~/.hermes, finds no coordinator-session transcript, and
308
+ * false-fires missing_final_assistant on every coordinator turn.
309
+ */
310
+ private spawnedEnvOverrides;
311
+ private readExternalCompletionMessages;
312
+ private completionFinalAssistantEvidence;
313
+ private completionFinalSummary;
314
+ private buildCompletedFinalizationDiagnostic;
104
315
  private hasAdapterPendingResponse;
105
316
  private shouldSuppressStaleParsedBusyStatus;
106
- private getCompletedFinalizationBlockReason;
317
+ private getCompletedFinalizationBlock;
318
+ private hasApprovalResolutionEvidence;
319
+ private approvalResolutionFinalizationBlock;
107
320
  private scheduleCompletedDebounceFlush;
321
+ private isMeshWorkerSession;
322
+ /**
323
+ * AUTOAPPROVE-FLAP-RECUR (Fix A+B): how long a busy blip / modal scroll-out may
324
+ * persist before the in-progress settle gate is torn down. For a delegated
325
+ * worker whose auto-approve episode is genuinely still cycling (mask clock
326
+ * alive), the FSM's full waiting_approval → busy → waiting_approval flap runs
327
+ * on a multi-second period, so the settle continuity window is extended to
328
+ * AUTO_APPROVE_FLAP_CONTINUITY_MS to bridge it (still bounded, and still capped
329
+ * by AUTO_APPROVE_MASK_STALL_MS). Every other case — foreground/attended
330
+ * session, or no active mask episode — keeps the tight default hysteresis so a
331
+ * genuine resolution frees the gate promptly.
332
+ */
333
+ private autoApproveContinuityWindowMs;
334
+ /**
335
+ * The settle-gate identity signature for a raw activeModal, or null when the
336
+ * modal is NOT a concrete auto-approvable consent prompt (no captured buttons,
337
+ * a picker/confirm kind, or no reliable affirmative+decline anchor). Mirrors the
338
+ * gates the auto-approve fire path applies before computing modalSignature, so
339
+ * the mask-stall nudge can ask the SAME question the settle gate is tracking —
340
+ * "is THIS frame's modal the identity the settle clock is accruing against?" —
341
+ * without duplicating the button-pick logic. The signature is message +
342
+ * normalized affirmative label only (no volatile counters/button set), matching
343
+ * the fire path exactly (AUTOAPPROVE-SETTLE-FLAP).
344
+ */
345
+ private approvableModalSignature;
346
+ private isAutonomousMeshSession;
347
+ /**
348
+ * ARCH-REFACTOR R1: the taskId to attribute the CURRENTLY-completing turn to.
349
+ * Prefers the per-turn binding (engine.currentTurnTaskId, set when the turn was
350
+ * submitted and surviving until the next turn starts) over the last-write-wins
351
+ * session scalar (settings.meshActiveTaskId). The scalar is retained only as a
352
+ * backward-compat alias for the "current/last assignment" and is the source of the
353
+ * NOTIF-MISDELIVER / TASK-MSG-MISROUTE race: a second task attaching before this
354
+ * turn completes overwrites it. Returns undefined for a non-task ad-hoc turn.
355
+ */
356
+ private completingTurnTaskId;
357
+ private meshTraceCtx;
358
+ private completionTraceOn;
359
+ private fsmTraceOn;
360
+ private recordCompletionGateTrace;
361
+ private recordFsmTransitionTrace;
108
362
  private flushCompletedDebounceIfFinalized;
363
+ /**
364
+ * A-3 (CLI 완료판정 통합): single authoritative emit for a CLI turn's
365
+ * `agent:generating_completed` event. The completion JUDGMENT — WHETHER and
366
+ * WHEN a turn is done (settle windows, continuity guards, the finalization
367
+ * gate, the short-gen / startup-grace / no-progress-monitor discriminators) —
368
+ * stays at each call site, where it is legitimately path-specific. What used
369
+ * to be duplicated across all five completion paths was the EVENT-SHAPE
370
+ * assembly: the `event` name, the conditional `taskId` spread, and the
371
+ * optional `finalSummary` / `evidenceLevel` / `completionDiagnostic` fields.
372
+ * Folding that assembly here removes the divergence (e.g. one site spreading
373
+ * taskId, others omitting it) without touching any judgment. Callers pass the
374
+ * values they have already computed; omitted optionals are simply absent from
375
+ * the emitted event, exactly as each inline builder produced before.
376
+ */
377
+ private emitGeneratingCompleted;
109
378
  private maybeAutoApproveStatus;
379
+ /**
380
+ * Re-drive the auto-approve check after the settle quiet window elapses.
381
+ * The PTY may have gone silent once the approval prompt finished painting,
382
+ * so no status-change frame is guaranteed to re-enter maybeAutoApproveStatus
383
+ * — this timer-driven re-check picks up the now-settled modal and fires.
384
+ * Deliberately lighter than detectStatusTransition(): it only re-evaluates
385
+ * the approval decision; the next real PTY frame refreshes visible status.
386
+ */
387
+ private recheckAutoApproveSettled;
388
+ /**
389
+ * Emit the queue-claim agent:ready event at most once per session. Both the
390
+ * boot-time starting→idle one-shot and the fsmReadySeen re-arm call this; the
391
+ * agentReadyEmitted guard ensures the second caller is a no-op so a worker is
392
+ * never claimed twice and a queued task is never double-dispatched.
393
+ */
394
+ private emitAgentReadyOnce;
395
+ /**
396
+ * GENERATING-BOUNDARY synthetic emit for a first turn that started AND finished
397
+ * inside the startup-grace window without the FSM ever observing a 'generating'
398
+ * frame (an unobservably-fast turn). Synthesizes the agent:generating_started +
399
+ * agent:generating_completed pair so the mesh coordinator learns the worker went
400
+ * idle. Returns true iff it synthesized.
401
+ *
402
+ * Two callers share this defense line:
403
+ * - 'startup_grace_fast_collapse' — the starting→idle transition (the FSM whose
404
+ * spec lacks/hadn't-synced the starting→busy edge collapses starting→idle
405
+ * directly, with no intervening 'generating' frame).
406
+ * - 'startup_grace_idle_turn_collapse' — the idle→idle no-status-change poll
407
+ * (the launch settle already drained starting→idle BEFORE the first turn, so
408
+ * the turn runs+completes while status stays 'idle' the whole time and
409
+ * detectStatusTransition never re-enters its change block — the live rc.403
410
+ * Probe1 miss).
411
+ *
412
+ * False-positive safety (must NOT fire on a benign boot): currentTurnTaskId is
413
+ * set ONLY by onTurnStarted (a real turn STARTED this boot) and persists past
414
+ * completion, so it excludes a true idle boot (null) and a queued-pending first
415
+ * turn that only runs after grace (onTurnStarted not yet called → null).
416
+ * !hasAdapterPendingResponse() excludes a turn still mid-flight. generating
417
+ * never armed (generatingStartedAt===0 && !generatingDebouncePending) means the
418
+ * whole idle→busy→idle never happened for this turn. The once-per-turn guard
419
+ * (fastCollapseSynthesizedTaskId) keeps the re-polled idle-stayed caller from
420
+ * re-emitting every poll.
421
+ */
422
+ private maybeSynthesizeStartupGraceCollapse;
110
423
  private detectStatusTransition;
111
424
  private pushEvent;
112
425
  private flushEvents;
113
426
  private applyProviderResponse;
114
- private getEffectDedupKey;
115
- private getPersistedEffectContent;
116
427
  getAdapter(): ProviderCliAdapter;
117
428
  get cliType(): string;
118
429
  get cliName(): string;
119
430
  private shouldAutoApprove;
431
+ /** @see ProviderInstance.noteManualInteraction */
432
+ noteManualInteraction(now?: number, opts?: {
433
+ passive?: boolean;
434
+ }): void;
435
+ /**
436
+ * Whether auto-approve should be treated as active *right now* for display
437
+ * and firing decisions: the configured intent AND the user is not currently
438
+ * attending this session by hand. When a human is attending, auto-approve is
439
+ * held so the modal stays visible and they can drive it via the controlbar.
440
+ * Provider-agnostic — the attendance signal is the command set, never any
441
+ * CLI-specific modal text.
442
+ */
443
+ private autoApproveEffectivelyActive;
444
+ private autoApproveMaskStalled;
445
+ /**
446
+ * NOTIF-APPROVAL-MASKED (Q1b): surface a delegated worker's STALLED auto-approve modal
447
+ * to the mesh COORDINATOR, decoupled from the dashboard visible-status mask.
448
+ *
449
+ * When auto-approve is configured but the episode never settles (modal parse miss / the
450
+ * settle gate never satisfied), getState()/detectStatusTransition() fold the raw
451
+ * `waiting_approval` into `generating` to suppress dashboard flicker — so
452
+ * detectStatusTransition()'s `waiting_approval` arm never runs and NO agent:waiting_approval
453
+ * event is emitted. The coordinator's real-time approval-nudge delivery then has no input and
454
+ * the worker's stuck modal is never surfaced (the live ~25s stall). The dashboard mask is
455
+ * intentional and stays; this emits the coordinator nudge exactly ONCE, gated on the SAME
456
+ * raw-waiting_approval + mask-stalled signal resolveModalParkStatus() distinguishes, the
457
+ * instant the mask-stall threshold trips (the same moment getState un-folds the mask).
458
+ *
459
+ * Only delegated worker sessions qualify: a foreground session has no coordinator to notify,
460
+ * and its own dashboard mask already reveals the modal on stall. A normally-resolving
461
+ * auto-approve never reaches AUTO_APPROVE_MASK_STALL_MS, so it emits nothing here; and if a
462
+ * masked approval clears just as this fires, rc.455's isApprovalNudgeResolved stale-drop
463
+ * discards the nudge coordinator-side without noise. Dedup is per-episode (keyed on the
464
+ * mask-clock value) so a modal that flaps between parsed/unparsed states is announced once.
465
+ */
466
+ private maybeEmitStalledApprovalNudge;
120
467
  private recordAutoApproval;
121
468
  recordApprovalSelection(buttonText: string): void;
122
- private formatMarkerTimestamp;
123
469
  private maybeAppendRuntimeRecoveryMessage;
124
470
  private appendRuntimeSystemMessage;
125
471
  private appendRuntimeMessage;
126
472
  mergeRuntimeChatMessages(parsedMessages: ChatMessage[]): ChatMessage[];
127
- private mergeConversationMessages;
128
- private formatApprovalRequestMessage;
129
473
  private promoteProviderSessionId;
474
+ private shouldHydrateExistingProviderHistory;
475
+ private shouldSuppressFreshLaunchStartupReplay;
130
476
  private syncCanonicalSavedHistoryIfNeeded;
131
477
  private restorePersistedHistoryFromCurrentSession;
132
478
  private getProbeDirectories;
133
479
  private buildSqlPlaceholderList;
134
480
  private querySqliteText;
135
481
  }
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;