@adhdev/daemon-core 0.9.82-rc.50 → 0.9.82-rc.500

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