@adhdev/daemon-core 0.9.82-rc.45 → 0.9.82-rc.451

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 (429) 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 +29 -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.d.ts +279 -2
  56. package/dist/commands/upgrade-helper.d.ts +41 -1
  57. package/dist/config/chat-history.d.ts +9 -0
  58. package/dist/config/config.d.ts +5 -0
  59. package/dist/config/mesh-config.d.ts +129 -1
  60. package/dist/config/mesh-json-config.d.ts +199 -0
  61. package/dist/config/repo-settings.d.ts +77 -0
  62. package/dist/daemon/dev-server.d.ts +0 -2
  63. package/dist/detection/ide-detector.d.ts +13 -0
  64. package/dist/detection/win32-ide-version.d.ts +37 -0
  65. package/dist/git/change-impact-config.d.ts +159 -0
  66. package/dist/git/git-commands.d.ts +12 -1
  67. package/dist/git/git-diff.d.ts +6 -0
  68. package/dist/git/git-executor.d.ts +11 -0
  69. package/dist/git/git-status.d.ts +57 -0
  70. package/dist/git/git-types.d.ts +2 -50
  71. package/dist/git/git-worktree.d.ts +71 -1
  72. package/dist/git/index.d.ts +3 -1
  73. package/dist/index.d.ts +66 -14
  74. package/dist/index.js +49753 -18414
  75. package/dist/index.js.map +1 -1
  76. package/dist/index.mjs +49614 -18438
  77. package/dist/index.mjs.map +1 -1
  78. package/dist/installer.d.ts +1 -4
  79. package/dist/ipc/local-ipc-server.d.ts +91 -0
  80. package/dist/launch.d.ts +1 -1
  81. package/dist/logging/async-batch-writer.d.ts +10 -0
  82. package/dist/logging/log-redactor.d.ts +24 -0
  83. package/dist/logging/log-tail-reader.d.ts +81 -0
  84. package/dist/logging/logger.d.ts +1 -1
  85. package/dist/mesh/contracts.d.ts +164 -0
  86. package/dist/mesh/coordinator-prompt.d.ts +89 -0
  87. package/dist/mesh/coordinator-registry.d.ts +59 -0
  88. package/dist/mesh/mesh-active-work.d.ts +174 -0
  89. package/dist/mesh/mesh-clone-grace.d.ts +8 -0
  90. package/dist/mesh/mesh-coordinator-config.d.ts +21 -0
  91. package/dist/mesh/mesh-delivery-policy.d.ts +131 -0
  92. package/dist/mesh/mesh-event-classify.d.ts +5 -0
  93. package/dist/mesh/mesh-event-forwarding.d.ts +41 -0
  94. package/dist/mesh/mesh-event-trace.d.ts +21 -0
  95. package/dist/mesh/mesh-events-coordinator.d.ts +4 -0
  96. package/dist/mesh/mesh-events-pending.d.ts +69 -0
  97. package/dist/mesh/mesh-events-stale.d.ts +61 -0
  98. package/dist/mesh/mesh-events-utils.d.ts +75 -0
  99. package/dist/mesh/mesh-events.d.ts +6 -49
  100. package/dist/mesh/mesh-fast-forward.d.ts +81 -0
  101. package/dist/mesh/mesh-host-ownership.d.ts +29 -0
  102. package/dist/mesh/mesh-init.d.ts +128 -0
  103. package/dist/mesh/mesh-ledger-reconciliation.d.ts +23 -4
  104. package/dist/mesh/mesh-ledger.d.ts +115 -1
  105. package/dist/mesh/mesh-magi-status.d.ts +63 -0
  106. package/dist/mesh/mesh-missions.d.ts +189 -0
  107. package/dist/mesh/mesh-node-identity.d.ts +306 -0
  108. package/dist/mesh/mesh-queue-assignment.d.ts +113 -0
  109. package/dist/mesh/mesh-reconcile-loop.d.ts +79 -0
  110. package/dist/mesh/mesh-refine-batch.d.ts +68 -0
  111. package/dist/mesh/mesh-refine-gates.d.ts +428 -0
  112. package/dist/mesh/mesh-refine-status.d.ts +62 -0
  113. package/dist/mesh/mesh-review-inbox.d.ts +90 -0
  114. package/dist/mesh/mesh-routing.d.ts +70 -0
  115. package/dist/mesh/mesh-runtime-store.d.ts +450 -0
  116. package/dist/mesh/mesh-scheduling-runtime.d.ts +78 -0
  117. package/dist/mesh/mesh-task-inflight.d.ts +46 -0
  118. package/dist/mesh/mesh-task-stats.d.ts +49 -0
  119. package/dist/mesh/mesh-unresolved-forward-outbox.d.ts +30 -0
  120. package/dist/mesh/mesh-warmup-deadline.d.ts +68 -0
  121. package/dist/mesh/mesh-work-queue.d.ts +300 -5
  122. package/dist/mesh/preview-freshness.d.ts +18 -0
  123. package/dist/mesh/refine-config.d.ts +216 -0
  124. package/dist/mesh/worktree-bootstrap-config.d.ts +145 -0
  125. package/dist/providers/acp-provider-instance.d.ts +5 -0
  126. package/dist/providers/approval-utils.d.ts +20 -0
  127. package/dist/providers/chat-message-normalization.d.ts +32 -1
  128. package/dist/providers/cli-provider-instance.d.ts +254 -3
  129. package/dist/providers/contracts.d.ts +149 -6
  130. package/dist/providers/external-sources.d.ts +71 -0
  131. package/dist/providers/manual-attendance.d.ts +63 -0
  132. package/dist/providers/native-history/antigravity-cli-transcript.d.ts +126 -0
  133. package/dist/providers/native-history/claude-cli-transcript.d.ts +70 -0
  134. package/dist/providers/native-history/codex-cli-transcript.d.ts +73 -0
  135. package/dist/providers/native-history/constants.d.ts +12 -0
  136. package/dist/providers/native-history/dispatcher.d.ts +27 -0
  137. package/dist/providers/native-history/hermes-cli-transcript.d.ts +30 -0
  138. package/dist/providers/native-history/index.d.ts +13 -0
  139. package/dist/providers/provider-instance-manager.d.ts +29 -0
  140. package/dist/providers/provider-instance.d.ts +23 -1
  141. package/dist/providers/provider-loader.d.ts +26 -4
  142. package/dist/providers/provider-trust.d.ts +31 -0
  143. package/dist/providers/read-chat-contract.d.ts +29 -0
  144. package/dist/providers/sdk/v1/builders/acp/detect-status.d.ts +68 -0
  145. package/dist/providers/sdk/v1/builders/cli/detect-status.d.ts +86 -0
  146. package/dist/providers/sdk/v1/builders/cli/parse-approval-squash.d.ts +59 -0
  147. package/dist/providers/sdk/v1/builders/cli/parse-approval.d.ts +65 -0
  148. package/dist/providers/sdk/v1/builders/cli/parse-session.d.ts +91 -0
  149. package/dist/providers/sdk/v1/builders/cli/visible-region.d.ts +42 -0
  150. package/dist/providers/sdk/v1/fixture-tooling/format.d.ts +126 -0
  151. package/dist/providers/sdk/v1/fixture-tooling/index.d.ts +8 -0
  152. package/dist/providers/sdk/v1/fixture-tooling/replay.d.ts +38 -0
  153. package/dist/providers/sdk/v1/index.d.ts +30 -0
  154. package/dist/providers/sdk/v1/sandbox/README-design.d.ts +193 -0
  155. package/dist/providers/sdk/v1/sandbox/require-whitelist.d.ts +74 -0
  156. package/dist/providers/sdk/v1/sandbox/script-runner.d.ts +98 -0
  157. package/dist/providers/sdk/v1/types/cli/index.d.ts +277 -0
  158. package/dist/providers/sdk/v1/types/common/index.d.ts +203 -0
  159. package/dist/providers/sdk/v1/validators/index.d.ts +5 -0
  160. package/dist/providers/sdk/v1/validators/manifest.d.ts +40 -0
  161. package/dist/providers/sdk/v1/validators/taint.d.ts +52 -0
  162. package/dist/providers/spec/adapter.d.ts +98 -0
  163. package/dist/providers/spec/cli-adapter.d.ts +223 -0
  164. package/dist/providers/spec/evaluator.d.ts +45 -0
  165. package/dist/providers/spec/fsm-driver.d.ts +444 -0
  166. package/dist/providers/spec/fsm-evaluator.d.ts +93 -0
  167. package/dist/providers/spec/fsm-loader.d.ts +14 -0
  168. package/dist/providers/spec/fsm-types.d.ts +202 -0
  169. package/dist/providers/spec/native-history-executor.d.ts +41 -0
  170. package/dist/providers/spec/pre-launch-trust.d.ts +16 -0
  171. package/dist/providers/spec/route.d.ts +4 -0
  172. package/dist/providers/spec/types.d.ts +222 -0
  173. package/dist/providers/status-monitor.d.ts +7 -7
  174. package/dist/providers/transcript-v2.d.ts +176 -0
  175. package/dist/providers/types/interactive-prompt.d.ts +84 -0
  176. package/dist/providers/working-dir.d.ts +17 -0
  177. package/dist/repo-mesh-types.d.ts +519 -13
  178. package/dist/runtime-defaults.d.ts +2 -0
  179. package/dist/session-host/managed-host.d.ts +64 -0
  180. package/dist/session-host/runtime-surface.d.ts +10 -16
  181. package/dist/sessions/registry.d.ts +6 -0
  182. package/dist/shared-types-extra.d.ts +2 -4
  183. package/dist/shared-types.d.ts +86 -55
  184. package/dist/status/normalize.d.ts +1 -1
  185. package/dist/status/normalize.js +1 -0
  186. package/dist/status/normalize.js.map +1 -1
  187. package/dist/status/normalize.mjs +1 -0
  188. package/dist/status/normalize.mjs.map +1 -1
  189. package/dist/status/reporter.d.ts +2 -0
  190. package/dist/status/snapshot.d.ts +26 -0
  191. package/dist/system/hash.d.ts +8 -0
  192. package/dist/system/load-better-sqlite3.d.ts +21 -0
  193. package/dist/types.d.ts +5 -0
  194. package/package.json +7 -3
  195. package/src/agent-stream/poller.ts +2 -3
  196. package/src/agent-stream/provider-adapter.ts +1 -1
  197. package/src/boot/daemon-lifecycle.ts +63 -12
  198. package/src/boot/process-hardening.ts +89 -0
  199. package/src/build-info.ts +73 -0
  200. package/src/chat/source-machine.ts +534 -0
  201. package/src/chat/source-resolver.ts +0 -0
  202. package/src/chat/subscription-updates.ts +20 -1
  203. package/src/cli-adapter-types.d.ts +3 -1
  204. package/src/cli-adapter-types.ts +68 -2
  205. package/src/cli-adapters/cli-script-runner.ts +421 -0
  206. package/src/cli-adapters/cli-state-engine.ts +1246 -0
  207. package/src/cli-adapters/provider-cli-adapter.d.ts +1 -1
  208. package/src/cli-adapters/provider-cli-adapter.ts +914 -1144
  209. package/src/cli-adapters/provider-cli-parse.d.ts +2 -0
  210. package/src/cli-adapters/provider-cli-parse.ts +19 -0
  211. package/src/cli-adapters/provider-cli-runtime.ts +56 -7
  212. package/src/cli-adapters/provider-cli-shared.d.ts +4 -0
  213. package/src/cli-adapters/provider-cli-shared.ts +121 -11
  214. package/src/cli-adapters/pty-transport.ts +2 -1
  215. package/src/cli-adapters/pty-write-chunking.ts +106 -0
  216. package/src/cli-adapters/raw-terminal-io.ts +252 -0
  217. package/src/cli-adapters/resolve-executable.ts +204 -0
  218. package/src/cli-adapters/session-host-transport.ts +2 -1
  219. package/src/cli-adapters/terminal-backends/ghostty-vt-backend.ts +63 -29
  220. package/src/cli-adapters/terminal-backends/types.ts +10 -3
  221. package/src/cli-adapters/terminal-screen.ts +16 -81
  222. package/src/commands/WINDOWS-UPGRADE-LOCK-FAILURE.md +198 -0
  223. package/src/commands/chat-commands-debug-bundle.ts +398 -0
  224. package/src/commands/chat-commands-read.ts +2488 -0
  225. package/src/commands/chat-commands-scope.ts +54 -0
  226. package/src/commands/chat-commands-shared.ts +114 -0
  227. package/src/commands/chat-commands-write.ts +891 -0
  228. package/src/commands/chat-commands.ts +19 -1841
  229. package/src/commands/cli-manager.ts +596 -27
  230. package/src/commands/handler.ts +841 -2
  231. package/src/commands/high-family/index.ts +28 -0
  232. package/src/commands/high-family/mesh-coordinator-launch.ts +680 -0
  233. package/src/commands/high-family/mesh-events.ts +89 -0
  234. package/src/commands/high-family/mesh-status.ts +822 -0
  235. package/src/commands/high-family/types.ts +80 -0
  236. package/src/commands/low-family/coordinator-prompt.ts +72 -0
  237. package/src/commands/low-family/daemon-lifecycle.ts +107 -0
  238. package/src/commands/low-family/diagnostics.ts +57 -0
  239. package/src/commands/low-family/index.ts +37 -0
  240. package/src/commands/low-family/mesh-ledger.ts +62 -0
  241. package/src/commands/low-family/mesh-node-logs.ts +87 -0
  242. package/src/commands/low-family/notification.ts +116 -0
  243. package/src/commands/low-family/refine-config.ts +106 -0
  244. package/src/commands/low-family/session-host.ts +274 -0
  245. package/src/commands/low-family/spec-providerdev.ts +217 -0
  246. package/src/commands/low-family/status-meta.ts +112 -0
  247. package/src/commands/low-family/types.ts +39 -0
  248. package/src/commands/med-family/cli-agent.ts +238 -0
  249. package/src/commands/med-family/fast-forward.ts +230 -0
  250. package/src/commands/med-family/ide.ts +163 -0
  251. package/src/commands/med-family/index.ts +37 -0
  252. package/src/commands/med-family/mesh-crud.ts +1253 -0
  253. package/src/commands/med-family/mesh-host-pairing.ts +234 -0
  254. package/src/commands/med-family/mesh-queue.ts +167 -0
  255. package/src/commands/med-family/mesh-restart.ts +92 -0
  256. package/src/commands/med-family/types.ts +153 -0
  257. package/src/commands/mesh-coordinator.ts +334 -124
  258. package/src/commands/router.ts +2893 -3536
  259. package/src/commands/stream-commands.ts +8 -0
  260. package/src/commands/upgrade-helper.ts +310 -45
  261. package/src/config/chat-history.ts +493 -24
  262. package/src/config/config.ts +12 -0
  263. package/src/config/mesh-config.ts +619 -23
  264. package/src/config/mesh-json-config.ts +376 -0
  265. package/src/config/recent-activity.ts +8 -2
  266. package/src/config/repo-settings.ts +111 -0
  267. package/src/daemon/dev-auto-implement.ts +3 -2
  268. package/src/daemon/dev-cli-debug.ts +10 -1
  269. package/src/daemon/dev-server.ts +0 -541
  270. package/src/detection/cli-detector.ts +28 -9
  271. package/src/detection/ide-detector.ts +55 -16
  272. package/src/detection/win32-ide-version.ts +106 -0
  273. package/src/git/change-impact-config.ts +354 -0
  274. package/src/git/git-commands.ts +78 -15
  275. package/src/git/git-diff.ts +81 -11
  276. package/src/git/git-executor.ts +12 -0
  277. package/src/git/git-status.ts +767 -48
  278. package/src/git/git-types.ts +14 -62
  279. package/src/git/git-worktree.ts +261 -4
  280. package/src/git/index.ts +17 -0
  281. package/src/index.ts +198 -12
  282. package/src/installer.d.ts +1 -1
  283. package/src/installer.ts +8 -6
  284. package/src/ipc/local-ipc-server.ts +278 -0
  285. package/src/launch.d.ts +1 -1
  286. package/src/launch.ts +37 -28
  287. package/src/logging/async-batch-writer.ts +55 -0
  288. package/src/logging/command-log.ts +7 -5
  289. package/src/logging/log-redactor.ts +100 -0
  290. package/src/logging/log-tail-reader.ts +341 -0
  291. package/src/logging/logger.ts +14 -7
  292. package/src/mesh/contracts.ts +338 -0
  293. package/src/mesh/coordinator-prompt.ts +416 -34
  294. package/src/mesh/coordinator-registry.ts +121 -0
  295. package/src/mesh/mesh-active-work.ts +645 -0
  296. package/src/mesh/mesh-clone-grace.ts +68 -0
  297. package/src/mesh/mesh-coordinator-config.ts +97 -0
  298. package/src/mesh/mesh-delivery-policy.ts +315 -0
  299. package/src/mesh/mesh-event-classify.ts +51 -0
  300. package/src/mesh/mesh-event-forwarding.ts +1897 -0
  301. package/src/mesh/mesh-event-trace.ts +67 -0
  302. package/src/mesh/mesh-events-coordinator.ts +32 -0
  303. package/src/mesh/mesh-events-pending.ts +656 -0
  304. package/src/mesh/mesh-events-stale.ts +389 -0
  305. package/src/mesh/mesh-events-utils.ts +443 -0
  306. package/src/mesh/mesh-events.ts +33 -1035
  307. package/src/mesh/mesh-fast-forward.ts +843 -0
  308. package/src/mesh/mesh-host-ownership.ts +111 -0
  309. package/src/mesh/mesh-init.ts +350 -0
  310. package/src/mesh/mesh-ledger-reconciliation.ts +12 -7
  311. package/src/mesh/mesh-ledger.ts +841 -102
  312. package/src/mesh/mesh-magi-status.ts +223 -0
  313. package/src/mesh/mesh-missions.ts +449 -0
  314. package/src/mesh/mesh-node-identity.ts +1985 -0
  315. package/src/mesh/mesh-queue-assignment.ts +1924 -0
  316. package/src/mesh/mesh-reconcile-loop.ts +2018 -0
  317. package/src/mesh/mesh-refine-batch.ts +205 -0
  318. package/src/mesh/mesh-refine-gates.ts +1673 -0
  319. package/src/mesh/mesh-refine-status.ts +231 -0
  320. package/src/mesh/mesh-review-inbox.ts +307 -0
  321. package/src/mesh/mesh-routing.ts +291 -0
  322. package/src/mesh/mesh-runtime-store.ts +1853 -0
  323. package/src/mesh/mesh-scheduling-runtime.ts +198 -0
  324. package/src/mesh/mesh-task-inflight.ts +70 -0
  325. package/src/mesh/mesh-task-stats.ts +161 -0
  326. package/src/mesh/mesh-unresolved-forward-outbox.ts +185 -0
  327. package/src/mesh/mesh-warmup-deadline.ts +152 -0
  328. package/src/mesh/mesh-work-queue.ts +1254 -141
  329. package/src/mesh/preview-freshness.ts +118 -0
  330. package/src/mesh/refine-config.ts +423 -0
  331. package/src/mesh/worktree-bootstrap-config.ts +450 -0
  332. package/src/providers/acp-provider-instance.ts +43 -10
  333. package/src/providers/approval-utils.d.ts +5 -0
  334. package/src/providers/approval-utils.ts +57 -5
  335. package/src/providers/chat-message-normalization.ts +92 -4
  336. package/src/providers/cli-provider-instance.ts +2177 -107
  337. package/src/providers/contracts.d.ts +55 -0
  338. package/src/providers/contracts.ts +160 -6
  339. package/src/providers/extension-provider-instance.ts +12 -7
  340. package/src/providers/external-sources.ts +218 -0
  341. package/src/providers/ide-provider-instance.ts +35 -12
  342. package/src/providers/manual-attendance.ts +85 -0
  343. package/src/providers/native-history/antigravity-cli-transcript.ts +1043 -0
  344. package/src/providers/native-history/claude-cli-transcript.ts +396 -0
  345. package/src/providers/native-history/codex-cli-transcript.ts +479 -0
  346. package/src/providers/native-history/constants.ts +19 -0
  347. package/src/providers/native-history/dispatcher.ts +373 -0
  348. package/src/providers/native-history/hermes-cli-transcript.ts +260 -0
  349. package/src/providers/native-history/index.ts +30 -0
  350. package/src/providers/provider-instance-manager.ts +71 -0
  351. package/src/providers/provider-instance.ts +19 -1
  352. package/src/providers/provider-loader.ts +668 -50
  353. package/src/providers/provider-schema.ts +87 -14
  354. package/src/providers/provider-trust.ts +114 -0
  355. package/src/providers/read-chat-contract.ts +76 -16
  356. package/src/providers/sdk/README.md +49 -0
  357. package/src/providers/sdk/v1/builders/acp/detect-status.ts +144 -0
  358. package/src/providers/sdk/v1/builders/cli/detect-status.ts +313 -0
  359. package/src/providers/sdk/v1/builders/cli/parse-approval-squash.ts +158 -0
  360. package/src/providers/sdk/v1/builders/cli/parse-approval.ts +250 -0
  361. package/src/providers/sdk/v1/builders/cli/parse-session.ts +276 -0
  362. package/src/providers/sdk/v1/builders/cli/visible-region.ts +143 -0
  363. package/src/providers/sdk/v1/fixture-tooling/format.ts +130 -0
  364. package/src/providers/sdk/v1/fixture-tooling/index.ts +22 -0
  365. package/src/providers/sdk/v1/fixture-tooling/replay.ts +352 -0
  366. package/src/providers/sdk/v1/index.ts +152 -0
  367. package/src/providers/sdk/v1/sandbox/README-design.ts +195 -0
  368. package/src/providers/sdk/v1/sandbox/require-whitelist.ts +472 -0
  369. package/src/providers/sdk/v1/sandbox/script-runner.ts +150 -0
  370. package/src/providers/sdk/v1/schemas/cli/provider.schema.json +509 -0
  371. package/src/providers/sdk/v1/schemas/primitives/acp-session-protocol-v1.json +131 -0
  372. package/src/providers/sdk/v1/schemas/primitives/native-history-codex-rollout-v1.json +66 -0
  373. package/src/providers/sdk/v1/schemas/primitives/tui-approval-squash-v1.json +91 -0
  374. package/src/providers/sdk/v1/schemas/primitives/tui-assistant-block-v1.json +91 -0
  375. package/src/providers/sdk/v1/schemas/primitives/tui-cue-ordering-v1.json +47 -0
  376. package/src/providers/sdk/v1/schemas/primitives/tui-dispatch-order-v1.json +32 -0
  377. package/src/providers/sdk/v1/schemas/primitives/tui-footer-chrome-v1.json +42 -0
  378. package/src/providers/sdk/v1/schemas/primitives/tui-index-finder-v1.json +27 -0
  379. package/src/providers/sdk/v1/schemas/primitives/tui-modal-v1.json +125 -0
  380. package/src/providers/sdk/v1/schemas/primitives/tui-prompt-marker-v1.json +45 -0
  381. package/src/providers/sdk/v1/schemas/primitives/tui-session-id-extraction-v1.json +46 -0
  382. package/src/providers/sdk/v1/schemas/primitives/tui-settled-prompt-v1.json +71 -0
  383. package/src/providers/sdk/v1/schemas/primitives/tui-spinner-v1.json +83 -0
  384. package/src/providers/sdk/v1/schemas/primitives/tui-transcript-pty-v1.json +83 -0
  385. package/src/providers/sdk/v1/schemas/primitives/tui-visible-region-v1.json +57 -0
  386. package/src/providers/sdk/v1/schemas/primitives/tui-welcome-screen-v1.json +35 -0
  387. package/src/providers/sdk/v1/types/cli/index.ts +365 -0
  388. package/src/providers/sdk/v1/types/common/index.ts +229 -0
  389. package/src/providers/sdk/v1/validators/index.ts +19 -0
  390. package/src/providers/sdk/v1/validators/manifest.ts +110 -0
  391. package/src/providers/sdk/v1/validators/taint.ts +309 -0
  392. package/src/providers/spec/adapter.ts +246 -0
  393. package/src/providers/spec/cli-adapter.ts +1064 -0
  394. package/src/providers/spec/evaluator.ts +407 -0
  395. package/src/providers/spec/fsm-driver.ts +1481 -0
  396. package/src/providers/spec/fsm-evaluator.ts +290 -0
  397. package/src/providers/spec/fsm-loader.ts +128 -0
  398. package/src/providers/spec/fsm-types.ts +301 -0
  399. package/src/providers/spec/native-history-executor.ts +1174 -0
  400. package/src/providers/spec/pre-launch-trust.ts +104 -0
  401. package/src/providers/spec/route.ts +51 -0
  402. package/src/providers/spec/types.ts +262 -0
  403. package/src/providers/status-monitor.d.ts +7 -7
  404. package/src/providers/status-monitor.ts +37 -22
  405. package/src/providers/transcript-v2.ts +567 -0
  406. package/src/providers/types/interactive-prompt.ts +536 -0
  407. package/src/providers/version-archive.ts +64 -24
  408. package/src/providers/working-dir.ts +23 -0
  409. package/src/repo-mesh-types.ts +758 -14
  410. package/src/runtime-defaults.ts +39 -0
  411. package/src/session-host/managed-host.ts +218 -0
  412. package/src/session-host/runtime-surface.ts +20 -80
  413. package/src/sessions/registry.ts +6 -0
  414. package/src/shared-types-extra.ts +2 -4
  415. package/src/shared-types.d.ts +8 -0
  416. package/src/shared-types.ts +124 -55
  417. package/src/status/builders.ts +26 -6
  418. package/src/status/normalize.ts +2 -0
  419. package/src/status/reporter.ts +19 -1
  420. package/src/status/snapshot.ts +95 -26
  421. package/src/system/hash.ts +23 -0
  422. package/src/system/host-memory.ts +29 -12
  423. package/src/system/load-better-sqlite3.ts +68 -0
  424. package/src/types.ts +5 -0
  425. package/dist/cli-adapters/terminal-backends/xterm-backend.d.ts +0 -17
  426. package/dist/mesh/mesh-sync.d.ts +0 -53
  427. package/src/cli-adapters/terminal-backends/ghostty-vt-backend.d.ts +0 -16
  428. package/src/cli-adapters/terminal-backends/xterm-backend.ts +0 -97
  429. package/src/mesh/mesh-sync.ts +0 -111
@@ -18,13 +18,15 @@ import { loadConfig } from '../config/config.js';
18
18
  import { loadState, saveState } from '../config/state-store.js';
19
19
  import { getWorkspaceState, resolveLaunchDirectory } from '../config/workspaces.js';
20
20
  import { appendRecentActivity } from '../config/recent-activity.js';
21
+ import { shortHash } from '../system/hash.js';
22
+ import { unregisterMeshCoordinator, getCoordinatorForSession, listCoordinatorsForWorkspace } from '../mesh/coordinator-registry.js';
21
23
  import { upsertSavedProviderSession } from '../config/saved-sessions.js';
22
24
  import { buildLegacyModelModeSummaryMetadata, normalizeProviderSummaryMetadata } from '../providers/summary-metadata.js';
23
25
  import { CliProviderInstance } from '../providers/cli-provider-instance.js';
24
26
  import { AcpProviderInstance } from '../providers/acp-provider-instance.js';
25
27
  import type { ProviderInstanceManager } from '../providers/provider-instance-manager.js';
26
28
  import { ProviderLoader } from '../providers/provider-loader.js';
27
- import { normalizeInputEnvelope, type ProviderModule, type ProviderResumeCapability } from '../providers/contracts.js';
29
+ import { normalizeInputEnvelope, type MeshCoordinatorDelegatedWorkerIsolation, type ProviderModule, type ProviderResumeCapability } from '../providers/contracts.js';
28
30
  import { assertProviderSupportsDeclaredInput, assertTextOnlyInput } from '../providers/provider-input-support.js';
29
31
  import type { CliAdapter } from '../cli-adapter-types.js';
30
32
  import type { PtyTransportFactory } from '../cli-adapters/pty-transport.js';
@@ -80,6 +82,126 @@ export interface CliManagerDeps {
80
82
 
81
83
  type CommandResult = { success: boolean;[key: string]: unknown };
82
84
 
85
+ const BUSY_AGENT_STATUSES = new Set(['generating', 'running', 'streaming', 'starting', 'busy', 'waiting', 'waiting_approval', 'no_progress', 'long_generating']);
86
+ const ZERO_MESSAGE_STARTING_SEND_WAIT_MS = 2_000;
87
+
88
+ function normalizeAgentStatus(value: unknown): string {
89
+ return typeof value === 'string' ? value.trim().toLowerCase() : '';
90
+ }
91
+
92
+ function hasNonEmptyModalButtons(activeModal: unknown): boolean {
93
+ const buttons = (activeModal as any)?.buttons;
94
+ return Array.isArray(buttons) && buttons.some((button) => String(button || '').trim().length > 0);
95
+ }
96
+
97
+ function hasAdapterPendingResponse(adapter: any): boolean {
98
+ if (adapter?.isWaitingForResponse === true) return true;
99
+ if (adapter?.currentTurnScope) return true;
100
+ try {
101
+ if (typeof adapter?.isProcessing === 'function' && adapter.isProcessing()) return true;
102
+ } catch { /* defensive: send guard should not fail on diagnostics */ }
103
+ try {
104
+ const partial = typeof adapter?.getPartialResponse === 'function' ? adapter.getPartialResponse() : '';
105
+ if (typeof partial === 'string' && partial.trim()) return true;
106
+ } catch { /* defensive: missing partial means no pending evidence */ }
107
+ return false;
108
+ }
109
+
110
+ function countMessages(value: unknown): number {
111
+ return Array.isArray(value) ? value.length : 0;
112
+ }
113
+
114
+ function hasFinalAssistantMessage(value: unknown): boolean {
115
+ const messages = Array.isArray(value) ? value : [];
116
+ const last = messages[messages.length - 1] as any;
117
+ if (!last || last.role !== 'assistant') return false;
118
+ if (last.bubbleState === 'streaming') return false;
119
+ if (last.meta?.streaming === true) return false;
120
+ return typeof last.content === 'string' && last.content.trim().length > 0;
121
+ }
122
+
123
+ function hasZeroMessageStartingLaunch(adapter: any): boolean {
124
+ const adapterStatus = adapter?.getStatus?.({ allowParse: false }) ?? adapter?.getStatus?.() ?? {};
125
+ const parsedStatus = typeof adapter?.getScriptParsedStatus === 'function'
126
+ ? adapter.getScriptParsedStatus()
127
+ : {};
128
+ const adapterRawStatus = normalizeAgentStatus(adapterStatus?.status);
129
+ const parsedRawStatus = normalizeAgentStatus(parsedStatus?.status);
130
+ if (adapterRawStatus !== 'starting') return false;
131
+ if (parsedRawStatus && parsedRawStatus !== 'starting' && parsedRawStatus !== 'generating') return false;
132
+ if (hasNonEmptyModalButtons(adapterStatus?.activeModal ?? adapterStatus?.modal ?? parsedStatus?.activeModal ?? parsedStatus?.modal)) return false;
133
+ if (countMessages(adapterStatus?.messages) > 0 || countMessages(parsedStatus?.messages) > 0) return false;
134
+ return !hasAdapterPendingResponse(adapter);
135
+ }
136
+
137
+ function hasCompletedStartingLaunch(adapter: any): boolean {
138
+ const adapterStatus = adapter?.getStatus?.({ allowParse: false }) ?? adapter?.getStatus?.() ?? {};
139
+ const adapterRawStatus = normalizeAgentStatus(adapterStatus?.status);
140
+ if (adapterRawStatus !== 'starting') return false;
141
+ if (hasAdapterPendingResponse(adapter)) return false;
142
+
143
+ const parsedStatus = typeof adapter?.getScriptParsedStatus === 'function'
144
+ ? adapter.getScriptParsedStatus()
145
+ : {};
146
+ const parsedRawStatus = normalizeAgentStatus(parsedStatus?.status);
147
+ if (parsedRawStatus !== 'idle') return false;
148
+ if (hasNonEmptyModalButtons(adapterStatus?.activeModal ?? adapterStatus?.modal ?? parsedStatus?.activeModal ?? parsedStatus?.modal)) return false;
149
+ return hasFinalAssistantMessage(parsedStatus?.messages);
150
+ }
151
+
152
+ /**
153
+ * WTCLAIM (B): compare two workspace paths for node scoping. Normalizes separator
154
+ * style, trailing slashes, and case (Windows paths are case-insensitive; the
155
+ * coordinator-supplied node.workspace and the adapter's launch workingDir can
156
+ * differ only in those) so a base node and a worktree clone are still told apart
157
+ * by their distinct workspace roots.
158
+ */
159
+ function normalizeDirForCompare(dir?: string): string {
160
+ if (typeof dir !== 'string') return '';
161
+ return dir.trim().replace(/[\\/]+/g, '/').replace(/\/+$/, '').toLowerCase();
162
+ }
163
+
164
+ function shouldSuppressStaleParsedBusyStatus(adapterStatus: string, parsedStatus: any, adapter: any): boolean {
165
+ const parsedRawStatus = normalizeAgentStatus(parsedStatus?.status);
166
+ if (!BUSY_AGENT_STATUSES.has(parsedRawStatus)) return false;
167
+ if (adapterStatus !== 'idle') return false;
168
+ if (hasNonEmptyModalButtons(parsedStatus?.activeModal ?? parsedStatus?.modal)) return false;
169
+ return !hasAdapterPendingResponse(adapter);
170
+ }
171
+
172
+ function getEffectiveAgentSendStatus(adapter: any): string {
173
+ const adapterStatus = normalizeAgentStatus(adapter?.getStatus?.({ allowParse: false })?.status ?? adapter?.getStatus?.()?.status);
174
+ if (adapterStatus === 'starting' && hasCompletedStartingLaunch(adapter)) return 'idle';
175
+ if (adapterStatus && adapterStatus !== 'idle') return adapterStatus;
176
+ if (adapterStatus !== 'idle') return adapterStatus;
177
+
178
+ if (typeof adapter?.getScriptParsedStatus !== 'function') return adapterStatus;
179
+ try {
180
+ const parsedStatus = adapter.getScriptParsedStatus();
181
+ const parsedRawStatus = normalizeAgentStatus(parsedStatus?.status);
182
+ if (BUSY_AGENT_STATUSES.has(parsedRawStatus) && !shouldSuppressStaleParsedBusyStatus(adapterStatus, parsedStatus, adapter)) {
183
+ return parsedRawStatus;
184
+ }
185
+ } catch {
186
+ return adapterStatus;
187
+ }
188
+ return adapterStatus;
189
+ }
190
+
191
+ async function waitForZeroMessageStartingLaunch(adapter: any): Promise<boolean> {
192
+ try {
193
+ if (!hasZeroMessageStartingLaunch(adapter)) return false;
194
+ } catch {
195
+ return false;
196
+ }
197
+ await new Promise(resolve => setTimeout(resolve, ZERO_MESSAGE_STARTING_SEND_WAIT_MS));
198
+ try {
199
+ return hasZeroMessageStartingLaunch(adapter);
200
+ } catch {
201
+ return false;
202
+ }
203
+ }
204
+
83
205
  export interface CliTransportFactoryParams {
84
206
  runtimeId: string;
85
207
  providerType: string;
@@ -87,6 +209,16 @@ export interface CliTransportFactoryParams {
87
209
  cliArgs?: string[];
88
210
  providerSessionId?: string;
89
211
  attachExisting?: boolean;
212
+ /**
213
+ * Launch-time record meta (meshNodeId / meshNodeFor / launchedByCoordinator /
214
+ * autoLaunchedForQueueTaskId). Defense-in-depth for SESSION-ACCUMULATION-LEAK:
215
+ * a session-host factory impl SHOULD seed the create_session record with this
216
+ * so the node binding is present the instant the record exists, rather than
217
+ * relying solely on the post-spawn updateRuntimeMeta round-trip. Optional and
218
+ * additive — factory impls that ignore it keep the prior behavior; the
219
+ * post-spawn WTDISPATCH stamp in register() still runs as the primary path.
220
+ */
221
+ initialMeta?: Record<string, unknown>;
90
222
  }
91
223
 
92
224
  export interface HostedCliRuntimeDescriptor {
@@ -138,18 +270,19 @@ type CliStartOptions = {
138
270
  extraEnv?: Record<string, string>;
139
271
  };
140
272
 
141
- const COORDINATOR_DELEGATED_ENV_UNSETS: Record<string, string> = {
142
- ADHDEV_INLINE_MESH: '',
143
- ADHDEV_MCP_TRANSPORT: '',
144
- ADHDEV_MESH_ID: '',
145
- HERMES_EPHEMERAL_SYSTEM_PROMPT: '',
146
- };
273
+ const DEFAULT_COORDINATOR_DELEGATED_ENV_UNSETS = [
274
+ 'ADHDEV_INLINE_MESH',
275
+ 'ADHDEV_MCP_TRANSPORT',
276
+ 'ADHDEV_MESH_ID',
277
+ 'HERMES_EPHEMERAL_SYSTEM_PROMPT',
278
+ ] as const;
147
279
 
148
280
  export interface CoordinatorDelegatedCliLaunchOptionsInput {
149
281
  cliType: string;
150
282
  workspace: string;
151
283
  cliArgs?: string[];
152
284
  env?: Record<string, string>;
285
+ isolation?: MeshCoordinatorDelegatedWorkerIsolation;
153
286
  }
154
287
 
155
288
  export interface CoordinatorDelegatedCliLaunchOptions {
@@ -161,10 +294,25 @@ function hasCliArg(args: string[], flag: string): boolean {
161
294
  return args.some((arg) => arg === flag || arg.startsWith(`${flag}=`));
162
295
  }
163
296
 
297
+ function hasConfigOverride(args: string[], key: string): boolean {
298
+ for (let index = 0; index < args.length; index += 1) {
299
+ const arg = args[index];
300
+ const next = args[index + 1];
301
+ if ((arg === '-c' || arg === '--config') && typeof next === 'string') {
302
+ if (next === key || next.startsWith(`${key}=`) || next.startsWith(`${key}.`)) return true;
303
+ }
304
+ if (arg.startsWith('--config=')) {
305
+ const value = arg.slice('--config='.length);
306
+ if (value === key || value.startsWith(`${key}=`) || value.startsWith(`${key}.`)) return true;
307
+ }
308
+ }
309
+ return false;
310
+ }
311
+
164
312
  function ensureEmptyDelegatedMcpConfig(workspace: string): string {
165
313
  const baseDir = path.join(os.tmpdir(), 'adhdev-delegated-agent-empty-mcp');
166
314
  mkdirSync(baseDir, { recursive: true });
167
- const workspaceHash = crypto.createHash('sha256').update(path.resolve(workspace || os.tmpdir())).digest('hex').slice(0, 16);
315
+ const workspaceHash = shortHash(path.resolve(workspace || os.tmpdir()));
168
316
  const filePath = path.join(baseDir, `${workspaceHash}.json`);
169
317
  writeFileSync(filePath, JSON.stringify({ mcpServers: {} }, null, 2), 'utf-8');
170
318
  return filePath;
@@ -173,12 +321,31 @@ function ensureEmptyDelegatedMcpConfig(workspace: string): string {
173
321
  export function buildCoordinatorDelegatedCliLaunchOptions(
174
322
  input: CoordinatorDelegatedCliLaunchOptionsInput,
175
323
  ): CoordinatorDelegatedCliLaunchOptions {
176
- const cliType = String(input.cliType || '').trim();
177
324
  const cliArgs = Array.isArray(input.cliArgs) ? [...input.cliArgs] : [];
178
- const env: Record<string, string> = { ...(input.env || {}), ...COORDINATOR_DELEGATED_ENV_UNSETS };
325
+ const env: Record<string, string> = { ...(input.env || {}) };
326
+ const envUnsets = new Set<string>(DEFAULT_COORDINATOR_DELEGATED_ENV_UNSETS);
327
+ for (const key of input.isolation?.env?.unset || []) {
328
+ if (typeof key === 'string' && key.trim()) envUnsets.add(key.trim());
329
+ }
330
+ for (const key of envUnsets) env[key] = '';
179
331
 
180
- if (cliType === 'claude-cli' && !hasCliArg(cliArgs, '--mcp-config')) {
181
- cliArgs.unshift('--mcp-config', ensureEmptyDelegatedMcpConfig(input.workspace));
332
+ for (const rule of input.isolation?.args || []) {
333
+ if (!rule || typeof rule !== 'object') continue;
334
+ if (rule.mode === 'empty_mcp_config') {
335
+ if (rule.flag && !hasCliArg(cliArgs, rule.flag)) {
336
+ cliArgs.unshift(rule.flag, ensureEmptyDelegatedMcpConfig(input.workspace));
337
+ }
338
+ if (rule.strictFlag && !hasCliArg(cliArgs, rule.strictFlag)) {
339
+ cliArgs.unshift(rule.strictFlag);
340
+ }
341
+ continue;
342
+ }
343
+ if (rule.mode === 'config_override') {
344
+ const key = String(rule.dedupeKey || rule.key || '').trim();
345
+ const flag = String(rule.flag || '').trim();
346
+ if (!key || !flag || hasConfigOverride(cliArgs, key)) continue;
347
+ cliArgs.unshift(flag, `${rule.key}=${rule.value}`);
348
+ }
182
349
  }
183
350
 
184
351
  return { cliArgs, env };
@@ -212,6 +379,18 @@ function expandResumeArgs(template: string[] | undefined, sessionId: string): st
212
379
  return template.map((part) => part === '{{id}}' ? sessionId : part);
213
380
  }
214
381
 
382
+ /**
383
+ * Expand a provider's `modelLaunchArgs` template with the requested model, mirroring
384
+ * expandResumeArgs. `{{model}}` → the trimmed model string. Returns undefined when
385
+ * there is no template or no model (a model request without a template is a no-op —
386
+ * see startSession, where the caller logs the skip). MAGI kind-panel model axis.
387
+ */
388
+ function expandModelLaunchArgs(template: string[] | undefined, model: string | undefined): string[] | undefined {
389
+ const m = typeof model === 'string' ? model.trim() : '';
390
+ if (!m || !Array.isArray(template) || template.length === 0) return undefined;
391
+ return template.map((part) => part === '{{model}}' ? m : part);
392
+ }
393
+
215
394
  function readSubcommandSessionId(args: string[], subcommands: string[]): string | undefined {
216
395
  const resumeIndex = args.findIndex((arg) => subcommands.includes(arg));
217
396
  if (resumeIndex < 0) return undefined;
@@ -255,10 +434,14 @@ function detectExplicitProviderSessionId(
255
434
 
256
435
  const subcommands = resume?.sessionIdFromSubcommand;
257
436
  if (Array.isArray(subcommands) && subcommands.length > 0) {
437
+ const hasResumeSubcommand = args.some((arg) => subcommands.includes(arg));
258
438
  const subcommandSessionId = readSubcommandSessionId(args, subcommands);
259
439
  if (subcommandSessionId) {
260
440
  return { providerSessionId: subcommandSessionId, launchMode: 'resume' };
261
441
  }
442
+ if (hasResumeSubcommand) {
443
+ return { launchMode: 'resume' };
444
+ }
262
445
  }
263
446
 
264
447
  return { launchMode: 'manual' };
@@ -292,6 +475,12 @@ export function resolveCliSessionBinding(
292
475
  launchMode: explicit.launchMode,
293
476
  };
294
477
  }
478
+ if (explicit.launchMode === 'resume') {
479
+ return {
480
+ cliArgs: baseArgs,
481
+ launchMode: 'resume',
482
+ };
483
+ }
295
484
  if (explicit.launchMode === 'manual' && hasArg(baseArgs || [], ['--session-id'])) {
296
485
  return {
297
486
  cliArgs: baseArgs,
@@ -399,6 +588,7 @@ export class DaemonCliManager {
399
588
  cliArgs?: string[],
400
589
  providerSessionId?: string,
401
590
  attachExisting = false,
591
+ initialMeta?: Record<string, unknown>,
402
592
  ): PtyTransportFactory | undefined {
403
593
  return this.deps.createPtyTransportFactory?.({
404
594
  runtimeId,
@@ -407,6 +597,7 @@ export class DaemonCliManager {
407
597
  cliArgs,
408
598
  providerSessionId,
409
599
  attachExisting,
600
+ ...(initialMeta && Object.keys(initialMeta).length ? { initialMeta } : {}),
410
601
  }) || undefined;
411
602
  }
412
603
 
@@ -435,7 +626,9 @@ export class DaemonCliManager {
435
626
  providerSessionId,
436
627
  attachExisting,
437
628
  );
438
- return new ProviderCliAdapter(resolvedProvider as CliProviderModule, workingDir, cliArgs, extraEnv || {}, transportFactory);
629
+ const adapter = new ProviderCliAdapter(resolvedProvider as CliProviderModule, workingDir, cliArgs, extraEnv || {}, transportFactory);
630
+ if (providerSessionId) adapter.updateRuntimeMeta({ providerSessionId });
631
+ return adapter;
439
632
  }
440
633
 
441
634
  throw new Error(`No CLI provider found for '${cliType}'. Create a provider.js in providers/cli/${cliType}/`);
@@ -457,6 +650,7 @@ export class DaemonCliManager {
457
650
  this.deps.removeAgentTracking(key);
458
651
  sessionRegistry?.unregisterByInstanceKey(key);
459
652
  instanceManager?.removeInstance(key);
653
+ unregisterMeshCoordinator(key);
460
654
  LOG.info('CLI', `🧹 Auto-cleaned ${status.status} CLI: ${cliType}`);
461
655
  this.deps.onStatusChange();
462
656
  }
@@ -492,6 +686,24 @@ export class DaemonCliManager {
492
686
  const instanceManager = this.deps.getInstanceManager();
493
687
  const sessionRegistry = this.deps.getSessionRegistry?.() || null;
494
688
  if (!instanceManager) throw new Error('InstanceManager not available');
689
+
690
+ // Launch-time record meta (mesh node binding) — computed BEFORE the
691
+ // transport factory so the session-host record can be seeded with the
692
+ // binding at create_session time (Fix ②, defense-in-depth for
693
+ // SESSION-ACCUMULATION-LEAK), not only via the post-spawn WTDISPATCH
694
+ // updateRuntimeMeta round-trip below. See CliTransportFactoryParams.initialMeta.
695
+ const launchMeshNodeId = typeof settings?.meshNodeId === 'string' ? settings.meshNodeId.trim() : '';
696
+ const launchMeshNodeFor = typeof settings?.meshNodeFor === 'string' ? settings.meshNodeFor.trim() : '';
697
+ const launchAutoLaunchedForQueueTaskId = typeof settings?.autoLaunchedForQueueTaskId === 'string'
698
+ ? settings.autoLaunchedForQueueTaskId.trim()
699
+ : '';
700
+ const launchRecordMeta: Record<string, unknown> = {
701
+ ...(launchMeshNodeId ? { meshNodeId: launchMeshNodeId } : {}),
702
+ ...(launchMeshNodeFor ? { meshNodeFor: launchMeshNodeFor } : {}),
703
+ ...(settings?.launchedByCoordinator === true ? { launchedByCoordinator: true } : {}),
704
+ ...(launchAutoLaunchedForQueueTaskId ? { autoLaunchedForQueueTaskId: launchAutoLaunchedForQueueTaskId } : {}),
705
+ };
706
+
495
707
  const transportFactory = this.getTransportFactory(
496
708
  key,
497
709
  normalizedType,
@@ -499,6 +711,9 @@ export class DaemonCliManager {
499
711
  cliArgs,
500
712
  options?.providerSessionId,
501
713
  attachExisting,
714
+ // Only seed at create time for fresh launches — an attach restores an
715
+ // existing record whose meta is already stamped; re-seeding could clobber.
716
+ attachExisting ? undefined : launchRecordMeta,
502
717
  );
503
718
  const cliInstance = new CliProviderInstance(provider, resolvedDir, cliArgs, key, transportFactory, options);
504
719
  try {
@@ -516,6 +731,18 @@ export class DaemonCliManager {
516
731
  transport: 'pty',
517
732
  adapterKey: key,
518
733
  instanceKey: key,
734
+ workspace: resolvedDir,
735
+ // attachExisting === true means we're restoring an already-spawned
736
+ // hosted runtime after a daemon restart, not starting a fresh PTY.
737
+ // The real spawn time is in the past and we don't have it on the
738
+ // restored descriptor; pinning spawnedAtMs to Date.now() in that
739
+ // case would push the native-history session-floor cutoff past
740
+ // every existing transcript file, so the agy/hermes/claude reader
741
+ // would return null even though the transcript on disk is fresh.
742
+ // 0 disables the floor for this session — recent_window_ms in the
743
+ // spec still bounds how far back we look. Fresh launches still
744
+ // get a proper floor so prior-session leak protection holds.
745
+ spawnedAtMs: attachExisting ? 0 : Date.now(),
519
746
  });
520
747
  } catch (spawnErr: any) {
521
748
  LOG.error('CLI', `[${cliType}] Spawn failed: ${spawnErr?.message}`);
@@ -524,6 +751,28 @@ export class DaemonCliManager {
524
751
  }
525
752
 
526
753
  this.adapters.set(key, cliInstance.getAdapter());
754
+
755
+ // WTDISPATCH (no_node_binding): a coordinator-launched worker carries its mesh node
756
+ // binding on the CLI-instance settings, but the session-host RECORD meta was never
757
+ // stamped with it — `updateRuntimeSettings` only mutates in-memory runtime settings and
758
+ // `updateRuntimeMeta` was only ever called with providerSessionId. So mesh_cleanup_sessions
759
+ // matched these worker sessions to a node by workspace ALONE
760
+ // (`live_session_matched_by_workspace_only_no_node_binding`), which on a daemon hosting
761
+ // sibling worktree nodes cannot tell two co-located clones apart. Push the launch-time node
762
+ // binding to the record meta so the record is 1:1 bound to its node (the spawned pty exists
763
+ // by now, so updateMeta reaches the session-host store). Best-effort; guarded.
764
+ //
765
+ // With the spec-CLI updateRuntimeMeta fix (SpecCliAdapter now forwards the FULL
766
+ // meta down to the transport, not just providerSessionId), this stamp finally
767
+ // reaches the session-host record for spec-backed providers too — previously it
768
+ // was silently dropped, which is what let orphans accumulate. launchRecordMeta
769
+ // is hoisted above and also seeds the create_session record via initialMeta.
770
+ if (Object.keys(launchRecordMeta).length) {
771
+ try {
772
+ cliInstance.getAdapter().updateRuntimeMeta?.({ ...launchRecordMeta });
773
+ } catch { /* best-effort — record-meta stamp is cleanup hygiene, not on the dispatch path */ }
774
+ }
775
+
527
776
  this.startCliExitMonitor(key, cliType);
528
777
  }
529
778
 
@@ -556,6 +805,24 @@ export class DaemonCliManager {
556
805
 
557
806
  // Create UUID-based key (allows separate instances even for same type+dir)
558
807
  const key = crypto.randomUUID();
808
+
809
+ // (3) Session-anchored mesh routing: when launching a mesh COORDINATOR session
810
+ // (settings.meshCoordinatorFor set), expose this session's OWN runtime id to its MCP
811
+ // server via env. The MCP server is spawned by the CLI as a child and inherits this
812
+ // env, so the MCP layer can stamp ADHDEV_COORDINATOR_SESSION_ID as the originating
813
+ // coordinator on every dispatch (→ MeshContext.coordinatorSessionId → worker
814
+ // meshCoordinatorSessionId → completion targetCoordinatorSessionId → strict route).
815
+ // `key` IS the instance id findLiveCoordinators matches on, so the stamp and the live
816
+ // session agree. Re-applied on every (re)launch, so it always reflects the current id;
817
+ // a stale value only survives if the CLI process outlives a daemon restart, in which
818
+ // case routing falls back to the daemon level (no wedge — see mesh-reconcile-loop).
819
+ {
820
+ const coordinatorMeshId = (options?.settingsOverride as Record<string, unknown> | undefined)?.meshCoordinatorFor;
821
+ if (typeof coordinatorMeshId === 'string' && coordinatorMeshId.trim()) {
822
+ options = { ...options, extraEnv: { ...(options?.extraEnv || {}), ADHDEV_COORDINATOR_SESSION_ID: key } };
823
+ }
824
+ }
825
+
559
826
  const sessionRegistry = this.deps.getSessionRegistry?.() || null;
560
827
 
561
828
  // ─── ACP category handle ───
@@ -589,6 +856,7 @@ export class DaemonCliManager {
589
856
  transport: 'acp',
590
857
  adapterKey: key,
591
858
  instanceKey: key,
859
+ workspace: resolvedDir,
592
860
  });
593
861
 
594
862
  // Register ACP entry in adapter map (getStatus queries from acpInstance in real-time)
@@ -663,8 +931,23 @@ export class DaemonCliManager {
663
931
  console.log(colorize('cyan', ` 📦 Using provider: ${provider.name} (${provider.type})`));
664
932
  }
665
933
 
934
+ // ─── Model axis (MAGI kind-panel): expand initialModel → launch args ───
935
+ // For a plain CLI provider the model is selected at spawn time via the manifest's
936
+ // modelLaunchArgs template ('{{model}}' → the requested model). ACP providers took
937
+ // the setConfigOption path above and never reach here. A provider with no template,
938
+ // or no requested model, is a no-op — model selection is best-effort and must never
939
+ // fail a launch. The model args are prepended so a caller's explicit cliArgs (e.g. a
940
+ // resume flag) still win positionally where order matters.
941
+ const modelLaunchArgs = expandModelLaunchArgs(provider?.modelLaunchArgs, initialModel);
942
+ const cliArgsWithModel = modelLaunchArgs
943
+ ? [...modelLaunchArgs, ...(cliArgs || [])]
944
+ : cliArgs;
945
+ if (initialModel && !modelLaunchArgs) {
946
+ LOG.warn('CLI', `[${normalizedType}] initialModel='${initialModel}' requested but provider declares no modelLaunchArgs template — launching without model selection.`);
947
+ }
948
+
666
949
  // ─── Resolve launch options → provider session binding ───
667
- const sessionBinding = resolveCliSessionBinding(provider, normalizedType, cliArgs, options?.resumeSessionId);
950
+ const sessionBinding = resolveCliSessionBinding(provider, normalizedType, cliArgsWithModel, options?.resumeSessionId);
668
951
  const resolvedCliArgs = sessionBinding.cliArgs;
669
952
 
670
953
  // If InstanceManager exists, manage as CliProviderInstance unified
@@ -783,6 +1066,7 @@ export class DaemonCliManager {
783
1066
  this.deps.removeAgentTracking(key);
784
1067
  this.deps.getSessionRegistry?.()?.unregisterByInstanceKey(key);
785
1068
  this.deps.getInstanceManager()?.removeInstance(key);
1069
+ unregisterMeshCoordinator(key);
786
1070
  LOG.info('CLI', `🛑 Agent stopped: ${adapter.cliType} in ${adapter.workingDir}`);
787
1071
  this.deps.onStatusChange();
788
1072
  } else {
@@ -792,6 +1076,7 @@ export class DaemonCliManager {
792
1076
  this.deps.getSessionRegistry?.()?.unregisterByInstanceKey(key);
793
1077
  im.removeInstance(key);
794
1078
  this.deps.removeAgentTracking(key);
1079
+ unregisterMeshCoordinator(key);
795
1080
  LOG.warn('CLI', `🧹 Force-removed orphan entry: ${key}`);
796
1081
  this.deps.onStatusChange();
797
1082
  }
@@ -819,6 +1104,29 @@ export class DaemonCliManager {
819
1104
  const restoredBindings = new Set<string>();
820
1105
  const managerTag = this.deps.hostedRuntimeManagerTag;
821
1106
 
1107
+ // CORDBADGE worker-overbind guard pre-pass: the workspace-scoped coordinator
1108
+ // rebind fallback (below) recovers a coordinator's mark when its runtimeId
1109
+ // changed across restart. But a delegated WORKER session that shares the
1110
+ // coordinator's workspace+cliType ALSO misses the exact by-id lookup, so the
1111
+ // fallback would wrongly stamp it with the lone registered coordinator's mesh
1112
+ // mark (the reported bug: a worker shown with role:coordinator after restart).
1113
+ // Two batch-level signals let the fallback refuse to mark a worker:
1114
+ // - restoredRuntimeIds: every runtimeId in this restore batch. If a
1115
+ // registered coordinator's own sessionId appears here, that coordinator is
1116
+ // being restored under its known id (the exact match binds it), so ANY
1117
+ // other same-workspace session is a worker — not the renamed coordinator.
1118
+ // - workspaceTypeCounts: how many sessions in the batch share a
1119
+ // workspace+cliType. >1 means we cannot tell the coordinator from a worker
1120
+ // even if the coordinator's id changed, so we stay unbound (ambiguous).
1121
+ const restoredRuntimeIds = new Set<string>();
1122
+ const workspaceTypeCounts = new Map<string, number>();
1123
+ for (const r of sessions) {
1124
+ if (!r?.runtimeId || !r?.cliType || !r?.workspace) continue;
1125
+ restoredRuntimeIds.add(r.runtimeId);
1126
+ const key = `${r.workspace}::${r.cliType}`;
1127
+ workspaceTypeCounts.set(key, (workspaceTypeCounts.get(key) || 0) + 1);
1128
+ }
1129
+
822
1130
  for (const record of sessions) {
823
1131
  if (!record?.runtimeId || !record?.cliType || !record?.workspace) continue;
824
1132
  if (!shouldRestoreHostedRuntime(record, managerTag)) {
@@ -852,6 +1160,74 @@ export class DaemonCliManager {
852
1160
  );
853
1161
  continue;
854
1162
  }
1163
+ // Re-establish the launch-time settings a fresh launch applies. startSession
1164
+ // seeds every new instance with { ...providerLoader.getSettings(type), ...override };
1165
+ // passing a bare {} here on restart silently dropped TWO launch settings, so a
1166
+ // restored session diverged from a freshly-launched one:
1167
+ // - autoApprove (a provider/machine setting from getSettings) → a restored
1168
+ // coordinator self-session lost auto-approve and re-prompted on every tool call.
1169
+ // - meshCoordinatorFor (the coordinator launch's settingsOverride) → the restored
1170
+ // session was no longer recognized as this daemon's live CLI coordinator by
1171
+ // findLiveCoordinators (so pending mesh events stopped draining into its PTY) nor
1172
+ // surfaced with the coordinator badge via settings. The persisted coordinator
1173
+ // registry (loaded on boot) is the source of truth to rebuild that mark.
1174
+ // Both restores are provider-agnostic — getSettings is keyed by provider type and the
1175
+ // registry mark is type-independent.
1176
+ const restoredSettings: Record<string, any> = { ...this.providerLoader.getSettings(normalizedType) };
1177
+ // Primary rebind: exact persisted-registry match by runtimeId (stable across
1178
+ // restart, see session-host runtimeId = runtimeRecord.sessionId).
1179
+ let coordinatorEntry = getCoordinatorForSession(record.runtimeId);
1180
+ // CORDBADGE fallback: the by-id match misses when a coordinator's runtime
1181
+ // re-attaches under a different runtimeId than the one it was registered with
1182
+ // (the registry survived, but its key no longer lines up). Without a rebind the
1183
+ // restored session silently loses meshCoordinatorFor → the coordinator badge and
1184
+ // selfIdentification block vanish and pending mesh events stop draining into its
1185
+ // PTY, and the only recovery is a manual coordinator restart. Recover the mark
1186
+ // from the persisted registry scoped to this exact workspace, but ONLY when it is
1187
+ // UNAMBIGUOUS: exactly one registered coordinator for this workspace AND its
1188
+ // cliType matches the restored session's type.
1189
+ //
1190
+ // WORKER-OVERBIND guard: "exactly one registered coordinator" is NOT enough —
1191
+ // a delegated worker session sharing the coordinator's workspace+cliType also
1192
+ // misses the by-id lookup, and the registry holding only the (single) real
1193
+ // coordinator does NOT stop the fallback from projecting that coordinator's
1194
+ // mark onto the worker record. So before adopting the mark we positively rule
1195
+ // the worker out:
1196
+ // (a) coordinatorPresentById — the registered coordinator's own sessionId is
1197
+ // in this restore batch, i.e. it is being restored under its known id and
1198
+ // the exact match already binds it. Then THIS record (which missed) is a
1199
+ // worker, not the renamed coordinator → do not rebind.
1200
+ // (b) siblingCount > 1 — more than one session shares this workspace+cliType,
1201
+ // so even if the coordinator's id changed we cannot tell it from a worker
1202
+ // → stay unbound (ambiguous).
1203
+ // Anything ambiguous stays unbound (we would rather miss a badge than
1204
+ // mis-attribute one).
1205
+ if (!coordinatorEntry?.meshId && record.workspace) {
1206
+ const workspaceCoordinators = listCoordinatorsForWorkspace(record.workspace)
1207
+ .filter(e => e.meshId && (!e.cliType || e.cliType === record.cliType));
1208
+ if (workspaceCoordinators.length === 1) {
1209
+ const candidate = workspaceCoordinators[0];
1210
+ const coordinatorPresentById = !!candidate.sessionId && restoredRuntimeIds.has(candidate.sessionId);
1211
+ const siblingCount = workspaceTypeCounts.get(`${record.workspace}::${record.cliType}`) || 1;
1212
+ if (!coordinatorPresentById && siblingCount === 1) {
1213
+ coordinatorEntry = candidate;
1214
+ LOG.info(
1215
+ 'CLI',
1216
+ `↻ Rebound coordinator mark by workspace for ${record.runtimeKey || record.runtimeId} (mesh ${candidate.meshId} @ ${record.workspace}); registry key did not match runtimeId`
1217
+ );
1218
+ } else {
1219
+ LOG.info(
1220
+ 'CLI',
1221
+ `↷ Skipping workspace coordinator rebind for ${record.runtimeKey || record.runtimeId} (${record.cliType} @ ${record.workspace}): ${coordinatorPresentById
1222
+ ? 'registered coordinator is restoring under its own id — this is a delegated worker'
1223
+ : `ambiguous (${siblingCount} sessions share this workspace+cliType)`}`
1224
+ );
1225
+ }
1226
+ }
1227
+ }
1228
+ if (coordinatorEntry?.meshId) {
1229
+ restoredSettings.meshCoordinatorFor = coordinatorEntry.meshId;
1230
+ }
855
1231
  try {
856
1232
  await this.registerCliInstance(
857
1233
  record.runtimeId,
@@ -860,7 +1236,7 @@ export class DaemonCliManager {
860
1236
  record.workspace,
861
1237
  record.cliArgs,
862
1238
  resolvedProvider,
863
- {},
1239
+ restoredSettings,
864
1240
  true,
865
1241
  {
866
1242
  providerSessionId: sessionBinding.providerSessionId,
@@ -899,18 +1275,36 @@ export class DaemonCliManager {
899
1275
  const adapter = this.adapters.get(ik);
900
1276
  if (adapter) return { adapter, key: ik };
901
1277
  }
902
- // 1. agentType + dir match
903
- if (opts?.dir) {
1278
+ // 1. agentType + dir match.
1279
+ // FAIL-CLOSED when an explicit instanceKey/targetSessionId was named (step 0) but
1280
+ // did not resolve: the caller pinned a SPECIFIC session, so healing by workspace must
1281
+ // not silently redirect the command into a co-located SIBLING worktree session. The
1282
+ // remote mesh relay (ipcDispatchToRemoteAgent) carries `dir: node.workspace` alongside
1283
+ // targetSessionId for the sessionless-scope case; when a session WAS named, that dir
1284
+ // fallback is the WTDISPATCH-FANOUT (a) leak — a stale/relaunched session_id would
1285
+ // dir-match whatever session lives in that workspace instead of failing. The sessionless
1286
+ // node-scoped path uses findMeshNodeAdapter, not this fallback, so gating dir on
1287
+ // !instanceKey loses no legitimate routing. Mirror step 2's fail-closed rule.
1288
+ if (opts?.dir && !opts?.instanceKey) {
904
1289
  for (const [k, a] of this.adapters) {
905
1290
  if (a.cliType === agentType && a.workingDir === opts.dir) {
906
1291
  return { adapter: a, key: k };
907
1292
  }
908
1293
  }
909
1294
  }
910
- // 2. Fuzzy match (returns first of multiple sessions — may be inaccurate)
911
- for (const [k, a] of this.adapters) {
912
- if (a.cliType === agentType) {
913
- return { adapter: a, key: k };
1295
+ // 2. Fuzzy match (returns first of multiple sessions — may be inaccurate).
1296
+ // FAIL-CLOSED: only when NO explicit instanceKey/targetSessionId was requested.
1297
+ // When a specific session WAS named (step 0) but is not hosted on this daemon,
1298
+ // falling back to the first same-cliType adapter silently redirects the command
1299
+ // into an UNRELATED session — e.g. a relayed/misrouted mesh send_chat lands in the
1300
+ // coordinator's own CLI session, echoing the dispatched task body back to the
1301
+ // coordinator (TASKECHO self-inject). Returning null instead makes the caller
1302
+ // surface an explicit "not running" error rather than mis-delivering the message.
1303
+ if (!opts?.instanceKey) {
1304
+ for (const [k, a] of this.adapters) {
1305
+ if (a.cliType === agentType) {
1306
+ return { adapter: a, key: k };
1307
+ }
914
1308
  }
915
1309
  }
916
1310
  return null;
@@ -925,6 +1319,40 @@ export class DaemonCliManager {
925
1319
  return adapter ? { adapter, key: ik } : null;
926
1320
  }
927
1321
 
1322
+ /**
1323
+ * WTCLAIM (B): resolve the adapter for a mesh dispatch that named a node
1324
+ * (meshContext.nodeId) but carried no explicit session. Matches by the
1325
+ * instance's bound mesh node id (settings.meshNodeId, falling back to the
1326
+ * sticky meshLastNodeId) first, then by the node workspace (workingDir).
1327
+ *
1328
+ * Unlike findAdapter's step-2 fuzzy fallback, this NEVER degrades to a
1329
+ * provider-only first-match: on a daemon hosting BOTH a base node and a
1330
+ * cloned worktree node (same daemonId), that fuzzy match could land a
1331
+ * worktree-targeted task on the base session. Returns null when no session
1332
+ * is bound to this node so the caller fails closed.
1333
+ */
1334
+ private findMeshNodeAdapter(agentType: string, nodeId: string, dir?: string): { adapter: CliAdapter; key: string } | null {
1335
+ const instanceManager = this.deps.getInstanceManager();
1336
+ const targetDir = normalizeDirForCompare(dir);
1337
+ let workspaceMatch: { adapter: CliAdapter; key: string } | null = null;
1338
+ for (const [k, a] of this.adapters) {
1339
+ if (a.cliType !== agentType) continue;
1340
+ const settings = (instanceManager?.getInstance(k) as any)?.getState?.()?.settings as Record<string, unknown> | undefined;
1341
+ const boundNodeId = (typeof settings?.meshNodeId === 'string' && settings.meshNodeId.trim())
1342
+ ? settings.meshNodeId.trim()
1343
+ : (typeof settings?.meshLastNodeId === 'string' ? settings.meshLastNodeId.trim() : '');
1344
+ // Exact node binding wins immediately (most precise).
1345
+ if (boundNodeId && boundNodeId === nodeId) return { adapter: a, key: k };
1346
+ // Workspace identity is the secondary signal for a session not (yet)
1347
+ // stamped with a node id — a base node and a worktree clone always have
1348
+ // distinct workspaces, so this still separates them.
1349
+ if (!workspaceMatch && targetDir && normalizeDirForCompare(a.workingDir) === targetDir) {
1350
+ workspaceMatch = { adapter: a, key: k };
1351
+ }
1352
+ }
1353
+ return workspaceMatch;
1354
+ }
1355
+
928
1356
  // ─── CLI command handling ────────────────────────────
929
1357
 
930
1358
  async handleCliCommand(cmd: string, args: any): Promise<CommandResult | null> {
@@ -955,6 +1383,8 @@ export class DaemonCliManager {
955
1383
  const launchSource = resolved.source;
956
1384
  if (!cliType) throw new Error('cliType required');
957
1385
 
1386
+ const providerType = this.providerLoader.resolveAlias(cliType);
1387
+ const provLookup = this.providerLoader.getMeta(providerType) as ProviderModule | undefined;
958
1388
  const settingsOverride = args?.settings && typeof args.settings === 'object' ? args.settings : undefined;
959
1389
  const delegatedLaunch = settingsOverride?.launchedByCoordinator === true
960
1390
  ? buildCoordinatorDelegatedCliLaunchOptions({
@@ -962,8 +1392,28 @@ export class DaemonCliManager {
962
1392
  workspace: dir,
963
1393
  cliArgs: args?.cliArgs,
964
1394
  env: args?.env,
1395
+ isolation: provLookup?.meshCoordinator?.delegatedWorkerIsolation,
965
1396
  })
966
1397
  : null;
1398
+ // Untrusted-provider gate: an external source that ships JS
1399
+ // hooks needs explicit user confirmation before its first
1400
+ // launch. Dashboards add `confirmExternalUntrusted: true` to
1401
+ // the launch args after showing the trust modal. Without
1402
+ // that ack we refuse to spawn and tell the caller why.
1403
+ const provMeta = provLookup as any;
1404
+ const provTrust = provMeta?._sourceTrust;
1405
+ if (provTrust === 'external-untrusted' && args?.confirmExternalUntrusted !== true) {
1406
+ return {
1407
+ success: false,
1408
+ error: 'untrusted_external_provider',
1409
+ provider: {
1410
+ type: provLookup?.type ?? cliType,
1411
+ sourceName: provMeta?._sourceName ?? null,
1412
+ trust: provTrust,
1413
+ },
1414
+ hint: 'Resend launch_cli with confirmExternalUntrusted=true after the user explicitly approves running JavaScript from this 3rd-party source.',
1415
+ };
1416
+ }
967
1417
  const started = await this.startSession(
968
1418
  cliType,
969
1419
  dir,
@@ -1030,6 +1480,45 @@ export class DaemonCliManager {
1030
1480
  this.deps.onStatusChange();
1031
1481
  return { success: true, id: found.key, mode };
1032
1482
  }
1483
+ case 'record_provider_pty': {
1484
+ const cliType = args?.type || args?.cliType;
1485
+ if (!cliType) {
1486
+ return { success: false, error: '`type` (provider type) is required', code: 'MISSING_TYPE' };
1487
+ }
1488
+ const targetSessionId = typeof args?.targetSessionId === 'string' ? args.targetSessionId : '';
1489
+ const dir = args?.dir || '';
1490
+ const found = (targetSessionId ? this.findAdapterBySessionId(targetSessionId) : null)
1491
+ || this.findAdapter(cliType, { instanceKey: targetSessionId, dir });
1492
+ if (!found) {
1493
+ return {
1494
+ success: false,
1495
+ error: `No running ${cliType} session. Launch one first (adhdev launch ${cliType}) or pass --target-session-id.`,
1496
+ code: 'NO_RUNNING_SESSION',
1497
+ };
1498
+ }
1499
+ const instance = this.deps.getInstanceManager()?.getInstance(found.key);
1500
+ if (!(instance instanceof CliProviderInstance)) {
1501
+ return { success: false, error: 'CLI instance not available', code: 'CLI_INSTANCE_NOT_FOUND' };
1502
+ }
1503
+ const adapter = instance.getAdapter();
1504
+ if (!adapter || typeof (adapter as any).getAccumulatedRawBuffer !== 'function') {
1505
+ return { success: false, error: 'Adapter does not expose PTY buffer', code: 'ADAPTER_NOT_RECORDABLE' };
1506
+ }
1507
+ const buffer = (adapter as any).getAccumulatedRawBuffer() as { text: string; droppedChars: number };
1508
+ const maxBytes = Number(args?.maxBytes) > 0 ? Number(args.maxBytes) : 262144;
1509
+ const truncated = buffer.text.length > maxBytes;
1510
+ const ptyBytes = truncated ? buffer.text.slice(-maxBytes) : buffer.text;
1511
+ return {
1512
+ success: true,
1513
+ cliType,
1514
+ sessionId: found.key,
1515
+ ptyBytes,
1516
+ bytes: ptyBytes.length,
1517
+ truncated,
1518
+ droppedChars: buffer.droppedChars,
1519
+ capturedAt: Date.now(),
1520
+ };
1521
+ }
1033
1522
  case 'restart_session': {
1034
1523
  const cliType = args?.cliType || args?.agentType || args?.ideType;
1035
1524
  const cfg = loadConfig();
@@ -1065,14 +1554,64 @@ export class DaemonCliManager {
1065
1554
  const action = args?.action;
1066
1555
  if (!agentType || !action) throw new Error('agentType and action required');
1067
1556
 
1068
- const found = this.findAdapter(agentType, {
1069
- dir: args?.dir,
1070
- instanceKey: args?.targetSessionId,
1071
- });
1557
+ // WTCLAIM (B): a mesh dispatch that named a node (meshContext.nodeId)
1558
+ // but resolved no explicit session must be scoped to THAT node's
1559
+ // session — never routed by findAdapter's provider-only fuzzy fallback,
1560
+ // which on a daemon hosting both a base node and a cloned worktree node
1561
+ // (same daemonId) could land a worktree task on the base session. Fail
1562
+ // closed when no session is bound to the node so the coordinator
1563
+ // launches/retries instead of mis-landing the work.
1564
+ const meshScopeNodeId = (() => {
1565
+ const mc = (args as any)?.meshContext;
1566
+ return mc && typeof mc === 'object' && typeof mc.nodeId === 'string' ? mc.nodeId.trim() : '';
1567
+ })();
1568
+ let found: { adapter: CliAdapter; key: string } | null;
1569
+ if (meshScopeNodeId && !args?.targetSessionId) {
1570
+ found = this.findMeshNodeAdapter(agentType, meshScopeNodeId, args?.dir);
1571
+ if (!found) {
1572
+ throw new Error(`No mesh worker session bound to node '${meshScopeNodeId}' for agent '${agentType}' on this daemon; refusing provider-only fuzzy match to avoid cross-node dispatch`);
1573
+ }
1574
+ } else {
1575
+ found = this.findAdapter(agentType, {
1576
+ dir: args?.dir,
1577
+ instanceKey: args?.targetSessionId,
1578
+ });
1579
+ }
1072
1580
  if (!found) throw new Error(`CLI agent not running: ${agentType}`);
1073
1581
  const { adapter, key } = found;
1074
1582
 
1075
1583
  if (action === 'send_chat') {
1584
+ let currentStatus = getEffectiveAgentSendStatus(adapter);
1585
+ if (currentStatus === 'starting' && await waitForZeroMessageStartingLaunch(adapter)) {
1586
+ currentStatus = 'idle';
1587
+ } else if (currentStatus === 'starting') {
1588
+ currentStatus = getEffectiveAgentSendStatus(adapter);
1589
+ }
1590
+ // Stamp mesh direct-dispatch assignment on the target
1591
+ // instance BEFORE sending the prompt so the completion
1592
+ // event has a routing marker by the time it fires.
1593
+ // mesh_send_task --direct ships meshContext for plain CLI
1594
+ // sessions that were never launched as mesh delegates.
1595
+ const meshContext = (args as any)?.meshContext;
1596
+ if (meshContext && typeof meshContext === 'object' && typeof meshContext.meshId === 'string' && meshContext.meshId) {
1597
+ const targetInstanceId = key;
1598
+ let stampResult: { stamped: boolean; reason?: string } | undefined;
1599
+ try {
1600
+ stampResult = this.deps.getInstanceManager()?.attachMeshAssignmentToInstance(targetInstanceId, {
1601
+ meshId: meshContext.meshId,
1602
+ ...(typeof meshContext.nodeId === 'string' && meshContext.nodeId ? { nodeId: meshContext.nodeId } : {}),
1603
+ ...(typeof meshContext.taskId === 'string' && meshContext.taskId ? { taskId: meshContext.taskId } : {}),
1604
+ ...(typeof meshContext.coordinatorDaemonId === 'string' && meshContext.coordinatorDaemonId ? { coordinatorDaemonId: meshContext.coordinatorDaemonId } : {}),
1605
+ });
1606
+ } catch { /* best-effort — stamping is a routing aid, not a hard requirement */ }
1607
+ // DOUBLE-DISPATCH stamp guard: the instance manager refused this stamp because
1608
+ // the SAME task is already running on another live session on this daemon.
1609
+ // Sending the prompt anyway would double-execute the task — fail closed so the
1610
+ // coordinator does not duplicate the work onto a second session.
1611
+ if (stampResult && stampResult.stamped === false && stampResult.reason === 'task_already_stamped_on_live_instance') {
1612
+ throw new Error(`Refusing duplicate mesh dispatch: task ${meshContext.taskId} is already being worked by a live session on this daemon`);
1613
+ }
1614
+ }
1076
1615
  const input = normalizeInputEnvelope(args?.input ? { input: args.input } : args);
1077
1616
  const provider = this.providerLoader.resolve(agentType) || this.providerLoader.getMeta(agentType);
1078
1617
  if (provider?.category === 'acp') {
@@ -1082,8 +1621,38 @@ export class DaemonCliManager {
1082
1621
  }
1083
1622
  const message = input.textFallback;
1084
1623
  if (!message) throw new Error('message required for send_chat');
1085
- await adapter.sendMessage(message);
1086
- return { success: true, status: 'generating' };
1624
+ // ARCH-REFACTOR R1: thread the dispatched task's id into the turn so the
1625
+ // worker's completion event is bound to THIS task (per-turn identity),
1626
+ // not the last-write-wins session scalar. Carried for both local and
1627
+ // remote (P2P-echoed meshContext) dispatch; absent for plain ad-hoc chat.
1628
+ const meshTaskId = (meshContext && typeof meshContext === 'object'
1629
+ && typeof (meshContext as any).taskId === 'string' && (meshContext as any).taskId.trim())
1630
+ ? (meshContext as any).taskId as string
1631
+ : undefined;
1632
+ const forceSend = args?.force === true || args?.forceSend === true;
1633
+ // Preserve the exact prior call shape when there is no taskId (plain
1634
+ // ad-hoc chat / non-mesh dispatch); only thread the per-turn taskId when
1635
+ // present, so existing non-mesh callers and their contracts are unchanged.
1636
+ if (forceSend && typeof (adapter as any).forceSendMessage === 'function') {
1637
+ if (meshTaskId) await (adapter as any).forceSendMessage(message, meshTaskId);
1638
+ else await (adapter as any).forceSendMessage(message);
1639
+ } else if (forceSend) {
1640
+ await adapter.sendMessage(message, meshTaskId ? { force: true, meshTaskId } : { force: true });
1641
+ } else if (meshTaskId) {
1642
+ await adapter.sendMessage(message, { meshTaskId });
1643
+ } else {
1644
+ await adapter.sendMessage(message);
1645
+ }
1646
+ const targetInstance = this.deps.getInstanceManager()?.getInstance(key) as
1647
+ | { recordAcknowledgedUserInput?: (input: unknown) => void }
1648
+ | undefined;
1649
+ targetInstance?.recordAcknowledgedUserInput?.(input);
1650
+ return {
1651
+ success: true,
1652
+ status: BUSY_AGENT_STATUSES.has(currentStatus) ? currentStatus : 'generating',
1653
+ ...(BUSY_AGENT_STATUSES.has(currentStatus) ? { queued: true, queuedReason: 'agent_runtime_busy' } : {}),
1654
+ ...(forceSend ? { forceSent: true, queued: false } : {}),
1655
+ };
1087
1656
  } else if (action === 'clear_history') {
1088
1657
  if (typeof adapter.clearHistory === 'function') adapter.clearHistory();
1089
1658
  return { success: true, cleared: true };