@poolzin/pool-bot 2026.2.11 → 2026.2.18

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 (535) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/dist/agents/agent-scope.js +4 -0
  3. package/dist/agents/announce-idempotency.js +14 -0
  4. package/dist/agents/auth-profiles/usage.js +22 -0
  5. package/dist/agents/auth-profiles.js +1 -1
  6. package/dist/agents/auth-profiles.resolve-auth-profile-order.fixtures.js +23 -0
  7. package/dist/agents/bash-tools.exec-runtime.js +438 -0
  8. package/dist/agents/bash-tools.shared.js +6 -0
  9. package/dist/agents/cli-runner/reliability.js +61 -0
  10. package/dist/agents/cli-watchdog-defaults.js +11 -0
  11. package/dist/agents/command-poll-backoff.js +63 -0
  12. package/dist/agents/current-time.js +16 -0
  13. package/dist/agents/glob-pattern.js +42 -0
  14. package/dist/agents/memory-search.js +33 -0
  15. package/dist/agents/model-alias-lines.js +18 -0
  16. package/dist/agents/model-auth-label.js +61 -0
  17. package/dist/agents/model-fallback.js +59 -8
  18. package/dist/agents/models-config.e2e-harness.js +115 -0
  19. package/dist/agents/ollama-stream.js +11 -3
  20. package/dist/agents/openclaw-tools.js +135 -0
  21. package/dist/agents/pi-auth-json.js +118 -0
  22. package/dist/agents/pi-embedded-runner/run.overflow-compaction.mocks.shared.js +147 -0
  23. package/dist/agents/pi-embedded-subscribe.e2e-harness.js +90 -0
  24. package/dist/agents/pi-embedded-subscribe.handlers.compaction.js +63 -0
  25. package/dist/agents/pi-embedded-subscribe.handlers.tools.media.test-helpers.js +30 -0
  26. package/dist/agents/pi-extensions/session-manager-runtime-registry.js +23 -0
  27. package/dist/agents/pi-tools.before-tool-call.js +145 -4
  28. package/dist/agents/pi-tools.js +29 -9
  29. package/dist/agents/pi-tools.policy.js +85 -92
  30. package/dist/agents/pi-tools.schema.js +54 -27
  31. package/dist/agents/queued-file-writer.js +22 -0
  32. package/dist/agents/sandbox/docker.js +133 -40
  33. package/dist/agents/sandbox/fs-bridge.js +146 -0
  34. package/dist/agents/sandbox/fs-paths.js +205 -0
  35. package/dist/agents/sandbox/hash.js +4 -0
  36. package/dist/agents/sandbox/validate-sandbox-security.js +157 -0
  37. package/dist/agents/sandbox-paths.js +3 -0
  38. package/dist/agents/sandbox-tool-policy.js +26 -0
  39. package/dist/agents/sanitize-for-prompt.js +18 -0
  40. package/dist/agents/session-dirs.js +20 -0
  41. package/dist/agents/session-write-lock.js +203 -39
  42. package/dist/agents/skills/filter.js +24 -0
  43. package/dist/agents/skills/tools-dir.js +9 -0
  44. package/dist/agents/skills-install-download.js +290 -0
  45. package/dist/agents/skills-install-output.js +30 -0
  46. package/dist/agents/skills-install.download-test-utils.js +36 -0
  47. package/dist/agents/skills.e2e-test-helpers.js +13 -0
  48. package/dist/agents/subagent-announce-queue.js +59 -15
  49. package/dist/agents/subagent-depth.js +137 -0
  50. package/dist/agents/subagent-registry.js +448 -96
  51. package/dist/agents/subagent-spawn.js +262 -0
  52. package/dist/agents/system-prompt.js +52 -10
  53. package/dist/agents/test-helpers/fast-tool-stubs.js +18 -0
  54. package/dist/agents/test-helpers/host-sandbox-fs-bridge.js +74 -0
  55. package/dist/agents/tool-display-common.js +782 -0
  56. package/dist/agents/tool-loop-detection.js +466 -0
  57. package/dist/agents/tool-policy.js +6 -0
  58. package/dist/agents/tools/image-tool.js +1 -1
  59. package/dist/agents/tools/sessions-access.js +178 -0
  60. package/dist/agents/tools/sessions-resolution.js +206 -0
  61. package/dist/agents/tools/subagents-tool.js +616 -0
  62. package/dist/agents/workspace-dir.js +18 -0
  63. package/dist/agents/workspace-dirs.js +14 -0
  64. package/dist/agents/workspace.js +70 -0
  65. package/dist/auto-reply/heartbeat-reply-payload.js +18 -0
  66. package/dist/auto-reply/reply/commands-export-session.js +163 -0
  67. package/dist/auto-reply/reply/commands-mesh.js +245 -0
  68. package/dist/auto-reply/reply/commands-setunset.js +28 -0
  69. package/dist/auto-reply/reply/commands-slash-parse.js +31 -0
  70. package/dist/auto-reply/reply/commands-system-prompt.js +117 -0
  71. package/dist/auto-reply/reply/directive-handling.levels.js +17 -0
  72. package/dist/auto-reply/reply/directive-handling.params.js +1 -0
  73. package/dist/auto-reply/reply/directive-parsing.js +36 -0
  74. package/dist/auto-reply/reply/dispatcher-registry.js +43 -0
  75. package/dist/auto-reply/reply/elevated-unavailable.js +20 -0
  76. package/dist/auto-reply/reply/post-compaction-audit.js +96 -0
  77. package/dist/auto-reply/reply/post-compaction-context.js +98 -0
  78. package/dist/auto-reply/reply/reply-delivery.js +92 -0
  79. package/dist/auto-reply/reply/session-reset-prompt.js +1 -0
  80. package/dist/auto-reply/reply/session-run-accounting.js +33 -0
  81. package/dist/auto-reply/reply.directive.directive-behavior.e2e-harness.js +115 -0
  82. package/dist/auto-reply/reply.directive.directive-behavior.e2e-mocks.js +12 -0
  83. package/dist/browser/bridge-auth-registry.js +26 -0
  84. package/dist/browser/client-actions-url.js +10 -0
  85. package/dist/browser/control-auth.js +73 -0
  86. package/dist/browser/csrf.js +64 -0
  87. package/dist/browser/http-auth.js +52 -0
  88. package/dist/browser/paths.js +37 -0
  89. package/dist/browser/proxy-files.js +32 -0
  90. package/dist/browser/pw-ai-state.js +7 -0
  91. package/dist/browser/resolved-config-refresh.js +42 -0
  92. package/dist/browser/routes/path-output.js +1 -0
  93. package/dist/browser/server-context.chrome-test-harness.js +20 -0
  94. package/dist/browser/server-middleware.js +31 -0
  95. package/dist/browser/test-port.js +16 -0
  96. package/dist/build-info.json +3 -3
  97. package/dist/canvas-host/file-resolver.js +43 -0
  98. package/dist/channels/account-summary.js +19 -0
  99. package/dist/channels/draft-stream-loop.js +77 -0
  100. package/dist/channels/plugins/account-helpers.js +26 -0
  101. package/dist/channels/telegram/allow-from.js +10 -0
  102. package/dist/cli/browser-cli-resize.js +22 -0
  103. package/dist/cli/browser-cli-shared.js +8 -0
  104. package/dist/cli/clawbot-cli.js +5 -0
  105. package/dist/cli/completion-cli.js +566 -0
  106. package/dist/cli/config-cli.js +63 -5
  107. package/dist/cli/daemon-cli/lifecycle-core.js +256 -0
  108. package/dist/cli/daemon-cli/register-service-commands.js +60 -0
  109. package/dist/cli/daemon-cli-compat.js +80 -0
  110. package/dist/cli/nodes-cli/pairing-render.js +26 -0
  111. package/dist/cli/program/action-reparse.js +17 -0
  112. package/dist/cli/program/command-registry.js +17 -0
  113. package/dist/cli/program/program-context.js +8 -0
  114. package/dist/cli/program/register.subclis.js +7 -0
  115. package/dist/cli/program/routes.js +233 -0
  116. package/dist/cli/qr-cli.js +132 -0
  117. package/dist/cli/requirements-test-fixtures.js +17 -0
  118. package/dist/cli/respawn-policy.js +4 -0
  119. package/dist/cli/shared/parse-port.js +18 -0
  120. package/dist/cli/skills-cli.format.js +241 -0
  121. package/dist/cli/update-cli/progress.js +121 -0
  122. package/dist/cli/update-cli/restart-helper.js +108 -0
  123. package/dist/cli/update-cli/shared.js +196 -0
  124. package/dist/cli/update-cli/status.js +97 -0
  125. package/dist/cli/update-cli/suppress-deprecations.js +17 -0
  126. package/dist/cli/update-cli/update-command.js +506 -0
  127. package/dist/cli/update-cli/wizard.js +130 -0
  128. package/dist/cli/update-cli.js +3 -9
  129. package/dist/cli/windows-argv.js +69 -0
  130. package/dist/commands/auth-choice-legacy.js +20 -0
  131. package/dist/commands/auth-choice.apply-helpers.js +8 -0
  132. package/dist/commands/channel-test-helpers.js +19 -0
  133. package/dist/commands/cleanup-plan.js +10 -0
  134. package/dist/commands/cleanup-utils.js +7 -0
  135. package/dist/commands/config-validation.js +15 -0
  136. package/dist/commands/doctor-completion.js +112 -0
  137. package/dist/commands/doctor-memory-search.js +119 -0
  138. package/dist/commands/doctor-session-locks.js +73 -0
  139. package/dist/commands/doctor.e2e-harness.js +364 -0
  140. package/dist/commands/gateway-presence.js +19 -0
  141. package/dist/commands/model-default.js +35 -0
  142. package/dist/commands/models/fallbacks-shared.js +102 -0
  143. package/dist/commands/models/shared.js +24 -0
  144. package/dist/commands/onboard-auth.config-gateways.js +64 -0
  145. package/dist/commands/onboard-auth.config-litellm.js +45 -0
  146. package/dist/commands/onboard-auth.config-shared.js +116 -0
  147. package/dist/commands/onboard-config.js +16 -0
  148. package/dist/commands/onboard-non-interactive.test-helpers.js +31 -0
  149. package/dist/commands/onboard-provider-auth-flags.js +136 -0
  150. package/dist/commands/openai-codex-oauth.js +40 -0
  151. package/dist/commands/test-runtime-config-helpers.js +21 -0
  152. package/dist/commands/test-wizard-helpers.js +68 -0
  153. package/dist/commands/vllm-setup.js +66 -0
  154. package/dist/compat/legacy-names.js +2 -0
  155. package/dist/config/backup-rotation.js +19 -0
  156. package/dist/config/env-preserve.js +122 -0
  157. package/dist/config/includes-scan.js +78 -0
  158. package/dist/config/plugins-allowlist.js +13 -0
  159. package/dist/config/schema.help.js +256 -0
  160. package/dist/config/schema.hints.js +189 -0
  161. package/dist/config/schema.irc.js +20 -0
  162. package/dist/config/schema.labels.js +317 -0
  163. package/dist/config/sessions/delivery-info.js +40 -0
  164. package/dist/config/types.irc.js +1 -0
  165. package/dist/config/zod-schema.agent-defaults.js +14 -0
  166. package/dist/config/zod-schema.agent-model.js +10 -0
  167. package/dist/config/zod-schema.agent-runtime.js +14 -0
  168. package/dist/config/zod-schema.allowdeny.js +35 -0
  169. package/dist/config/zod-schema.sensitive.js +4 -0
  170. package/dist/control-ui/assets/index-HRr1grwl.js.map +1 -1
  171. package/dist/cron/isolated-agent/skills-snapshot.js +26 -0
  172. package/dist/cron/isolated-agent/subagent-followup.js +127 -0
  173. package/dist/cron/isolated-agent.mocks.js +12 -0
  174. package/dist/cron/isolated-agent.test-setup.js +22 -0
  175. package/dist/cron/legacy-delivery.js +43 -0
  176. package/dist/cron/webhook-url.js +22 -0
  177. package/dist/daemon/arg-split.js +40 -0
  178. package/dist/daemon/exec-file.js +23 -0
  179. package/dist/daemon/output.js +6 -0
  180. package/dist/daemon/runtime-format.js +31 -0
  181. package/dist/daemon/schtasks-exec.js +4 -0
  182. package/dist/daemon/service-audit.js +22 -0
  183. package/dist/discord/client.js +41 -0
  184. package/dist/discord/components-registry.js +57 -0
  185. package/dist/discord/components.js +816 -0
  186. package/dist/discord/guilds.js +12 -0
  187. package/dist/discord/monitor/gateway-plugin.js +48 -0
  188. package/dist/discord/monitor/presence.js +30 -0
  189. package/dist/discord/send.components.js +115 -0
  190. package/dist/discord/send.shared.js +4 -0
  191. package/dist/discord/ui.js +26 -0
  192. package/dist/discord/voice-message.js +254 -0
  193. package/dist/gateway/agent-event-assistant-text.js +5 -0
  194. package/dist/gateway/agent-prompt.js +33 -0
  195. package/dist/gateway/auth-rate-limit.js +136 -0
  196. package/dist/gateway/channel-health-monitor.js +114 -0
  197. package/dist/gateway/control-ui-contract.js +1 -0
  198. package/dist/gateway/control-ui-csp.js +15 -0
  199. package/dist/gateway/gateway-config-prompts.shared.js +25 -0
  200. package/dist/gateway/http-auth-helpers.js +18 -0
  201. package/dist/gateway/http-common.js +18 -0
  202. package/dist/gateway/http-endpoint-helpers.js +27 -0
  203. package/dist/gateway/node-invoke-sanitize.js +11 -0
  204. package/dist/gateway/node-invoke-system-run-approval.js +205 -0
  205. package/dist/gateway/probe-auth.js +21 -0
  206. package/dist/gateway/protocol/index.js +7 -2
  207. package/dist/gateway/protocol/schema/mesh.js +54 -0
  208. package/dist/gateway/protocol/schema/protocol-schemas.js +7 -0
  209. package/dist/gateway/protocol/schema.js +1 -0
  210. package/dist/gateway/server/ws-connection/auth-messages.js +54 -0
  211. package/dist/gateway/server-channels.js +11 -0
  212. package/dist/gateway/server-methods/attachment-normalize.js +16 -0
  213. package/dist/gateway/server-methods/base-hash.js +8 -0
  214. package/dist/gateway/server-methods/mesh.js +700 -0
  215. package/dist/gateway/server-methods/nodes.handlers.invoke-result.js +55 -0
  216. package/dist/gateway/server-methods/restart-request.js +13 -0
  217. package/dist/gateway/server-methods/validation.js +8 -0
  218. package/dist/gateway/server.agent.gateway-server-agent.mocks.js +35 -0
  219. package/dist/gateway/server.e2e-registry-helpers.js +1 -0
  220. package/dist/gateway/server.e2e-ws-harness.js +20 -0
  221. package/dist/gateway/test-helpers.js +2 -0
  222. package/dist/gateway/test-helpers.server.js +3 -1
  223. package/dist/gateway/test-http-response.js +12 -0
  224. package/dist/gateway/test-openai-responses-model.js +20 -0
  225. package/dist/gateway/test-temp-config.js +30 -0
  226. package/dist/gateway/test-with-server.js +32 -0
  227. package/dist/hooks/bundled/bootstrap-extra-files/handler.js +46 -0
  228. package/dist/imessage/monitor/abort-handler.js +23 -0
  229. package/dist/imessage/monitor/inbound-processing.js +346 -0
  230. package/dist/imessage/monitor/parse-notification.js +64 -0
  231. package/dist/imessage/target-parsing-helpers.js +92 -0
  232. package/dist/infra/archive.js +244 -20
  233. package/dist/infra/detect-package-manager.js +26 -0
  234. package/dist/infra/exec-approvals-allowlist.js +257 -0
  235. package/dist/infra/exec-approvals-analysis.js +770 -0
  236. package/dist/infra/exec-approvals.js +13 -0
  237. package/dist/infra/file-lock.js +1 -0
  238. package/dist/infra/gemini-auth.js +39 -0
  239. package/dist/infra/heartbeat-active-hours.js +85 -0
  240. package/dist/infra/heartbeat-events-filter.js +50 -0
  241. package/dist/infra/heartbeat-runner.test-utils.js +39 -0
  242. package/dist/infra/http-body.js +265 -0
  243. package/dist/infra/install-package-dir.js +50 -0
  244. package/dist/infra/install-safe-path.js +49 -0
  245. package/dist/infra/json-files.js +49 -0
  246. package/dist/infra/jsonl-socket.js +52 -0
  247. package/dist/infra/map-size.js +14 -0
  248. package/dist/infra/net/hostname.js +7 -0
  249. package/dist/infra/npm-registry-spec.js +39 -0
  250. package/dist/infra/openclaw-root.js +109 -0
  251. package/dist/infra/outbound/delivery-queue.js +214 -0
  252. package/dist/infra/outbound/identity.js +23 -0
  253. package/dist/infra/outbound/message-action-params.js +307 -0
  254. package/dist/infra/outbound/tool-payload.js +21 -0
  255. package/dist/infra/package-json.js +23 -0
  256. package/dist/infra/pairing-files.js +19 -0
  257. package/dist/infra/pairing-token.js +9 -0
  258. package/dist/infra/path-prepend.js +51 -0
  259. package/dist/infra/path-safety.js +16 -0
  260. package/dist/infra/process-respawn.js +49 -0
  261. package/dist/infra/runtime-status.js +16 -0
  262. package/dist/infra/session-cost-usage.types.js +1 -0
  263. package/dist/infra/session-maintenance-warning.js +89 -0
  264. package/dist/infra/system-run-command.js +78 -0
  265. package/dist/infra/tmp-openclaw-dir.js +81 -0
  266. package/dist/infra/tmp-poolbot-dir.js +2 -0
  267. package/dist/infra/update-channels.js +19 -0
  268. package/dist/line/actions.js +45 -0
  269. package/dist/line/channel-access-token.js +9 -0
  270. package/dist/line/flex-templates/basic-cards.js +332 -0
  271. package/dist/line/flex-templates/common.js +18 -0
  272. package/dist/line/flex-templates/media-control-cards.js +453 -0
  273. package/dist/line/flex-templates/message.js +10 -0
  274. package/dist/line/flex-templates/schedule-cards.js +399 -0
  275. package/dist/line/flex-templates/types.js +1 -0
  276. package/dist/line/webhook-node.js +100 -0
  277. package/dist/line/webhook-utils.js +11 -0
  278. package/dist/logging/diagnostic-session-state.js +73 -0
  279. package/dist/logging/diagnostic.js +22 -0
  280. package/dist/logging/timestamps.js +14 -0
  281. package/dist/markdown/whatsapp.js +62 -0
  282. package/dist/media/base64.js +34 -0
  283. package/dist/media/local-roots.js +32 -0
  284. package/dist/media/outbound-attachment.js +10 -0
  285. package/dist/media/read-response-with-limit.js +41 -0
  286. package/dist/media/sniff-mime-from-base64.js +19 -0
  287. package/dist/media-understanding/audio-preflight.js +67 -0
  288. package/dist/media-understanding/fs.js +13 -0
  289. package/dist/media-understanding/output-extract.js +26 -0
  290. package/dist/media-understanding/providers/audio.test-helpers.js +34 -0
  291. package/dist/media-understanding/providers/google/inline-data.js +64 -0
  292. package/dist/media-understanding/providers/shared.js +7 -0
  293. package/dist/media-understanding/runner.entries.js +459 -0
  294. package/dist/memory/batch-error-utils.js +11 -0
  295. package/dist/memory/batch-http.js +27 -0
  296. package/dist/memory/batch-output.js +29 -0
  297. package/dist/memory/batch-runner.js +22 -0
  298. package/dist/memory/batch-upload.js +23 -0
  299. package/dist/memory/batch-utils.js +26 -0
  300. package/dist/memory/embeddings-debug.js +11 -0
  301. package/dist/memory/embeddings-remote-client.js +22 -0
  302. package/dist/memory/embeddings-remote-fetch.js +14 -0
  303. package/dist/memory/embeddings.js +36 -9
  304. package/dist/memory/hybrid.js +24 -5
  305. package/dist/memory/manager-embedding-ops.js +616 -0
  306. package/dist/memory/manager-sync-ops.js +953 -0
  307. package/dist/memory/manager.js +76 -28
  308. package/dist/memory/mmr.js +164 -0
  309. package/dist/memory/qmd-manager.js +1061 -0
  310. package/dist/memory/qmd-query-parser.js +107 -0
  311. package/dist/memory/qmd-scope.js +93 -0
  312. package/dist/memory/query-expansion.js +331 -0
  313. package/dist/memory/search-manager.js +0 -1
  314. package/dist/memory/sync-index.js +21 -0
  315. package/dist/memory/sync-progress.js +22 -0
  316. package/dist/memory/sync-stale.js +30 -0
  317. package/dist/memory/temporal-decay.js +119 -0
  318. package/dist/memory/test-embeddings-mock.js +16 -0
  319. package/dist/memory/test-manager-helpers.js +14 -0
  320. package/dist/memory/test-runtime-mocks.js +11 -0
  321. package/dist/node-host/invoke-browser.js +177 -0
  322. package/dist/node-host/invoke.js +685 -0
  323. package/dist/pairing/setup-code.js +285 -0
  324. package/dist/plugin-sdk/account-id.js +1 -0
  325. package/dist/plugin-sdk/agent-media-payload.js +13 -0
  326. package/dist/plugin-sdk/allow-from.js +47 -0
  327. package/dist/plugin-sdk/command-auth.js +23 -0
  328. package/dist/plugin-sdk/config-paths.js +9 -0
  329. package/dist/plugin-sdk/file-lock.js +116 -0
  330. package/dist/plugin-sdk/json-store.js +31 -0
  331. package/dist/plugin-sdk/onboarding.js +28 -0
  332. package/dist/plugin-sdk/provider-auth-result.js +29 -0
  333. package/dist/plugin-sdk/slack-message-actions.js +133 -0
  334. package/dist/plugin-sdk/status-helpers.js +35 -0
  335. package/dist/plugin-sdk/text-chunking.js +31 -0
  336. package/dist/plugin-sdk/tool-send.js +12 -0
  337. package/dist/plugin-sdk/webhook-path.js +27 -0
  338. package/dist/plugin-sdk/webhook-targets.js +34 -0
  339. package/dist/plugins/hooks.test-helpers.js +21 -0
  340. package/dist/plugins/uninstall.js +171 -0
  341. package/dist/process/kill-tree.js +98 -0
  342. package/dist/process/supervisor/adapters/child.js +143 -0
  343. package/dist/process/supervisor/adapters/env.js +13 -0
  344. package/dist/process/supervisor/adapters/pty.js +148 -0
  345. package/dist/process/supervisor/index.js +10 -0
  346. package/dist/process/supervisor/registry.js +117 -0
  347. package/dist/process/supervisor/supervisor.js +244 -0
  348. package/dist/process/supervisor/types.js +1 -0
  349. package/dist/providers/google-shared.test-helpers.js +75 -0
  350. package/dist/security/audit-channel.js +419 -0
  351. package/dist/security/audit-tool-policy.js +1 -0
  352. package/dist/security/scan-paths.js +12 -0
  353. package/dist/sessions/input-provenance.js +55 -0
  354. package/dist/sessions/session-key-utils.js +7 -0
  355. package/dist/shared/chat-content.js +31 -0
  356. package/dist/shared/chat-envelope.js +45 -0
  357. package/dist/shared/config-eval.js +117 -0
  358. package/dist/shared/device-auth.js +16 -0
  359. package/dist/shared/entry-metadata.js +9 -0
  360. package/dist/shared/entry-status.js +25 -0
  361. package/dist/shared/frontmatter.js +98 -0
  362. package/dist/shared/model-param-b.js +19 -0
  363. package/dist/shared/net/ipv4.js +17 -0
  364. package/dist/shared/node-match.js +53 -0
  365. package/dist/shared/pid-alive.js +12 -0
  366. package/dist/shared/process-scoped-map.js +10 -0
  367. package/dist/shared/requirements.js +128 -0
  368. package/dist/shared/subagents-format.js +84 -0
  369. package/dist/shared/usage-aggregates.js +28 -0
  370. package/dist/signal/monitor/mentions.js +45 -0
  371. package/dist/signal/rpc-context.js +19 -0
  372. package/dist/slack/blocks-fallback.js +76 -0
  373. package/dist/slack/blocks-input.js +40 -0
  374. package/dist/slack/draft-stream.js +106 -0
  375. package/dist/slack/message-actions.js +51 -0
  376. package/dist/slack/modal-metadata.js +32 -0
  377. package/dist/slack/monitor/events/interactions.js +462 -0
  378. package/dist/slack/monitor/room-context.js +17 -0
  379. package/dist/slack/stream-mode.js +41 -0
  380. package/dist/telegram/bot-native-command-menu.js +64 -0
  381. package/dist/telegram/bot.media.e2e-harness.js +81 -0
  382. package/dist/telegram/button-types.js +1 -0
  383. package/dist/telegram/group-access.js +65 -0
  384. package/dist/telegram/outbound-params.js +21 -0
  385. package/dist/telegram/poll-vote-cache.js +21 -0
  386. package/dist/terminal/health-style.js +36 -0
  387. package/dist/test-utils/chunk-test-helpers.js +21 -0
  388. package/dist/test-utils/env.js +72 -0
  389. package/dist/test-utils/exec-assertions.js +12 -0
  390. package/dist/test-utils/imessage-test-plugin.js +54 -0
  391. package/dist/test-utils/mock-http-response.js +17 -0
  392. package/dist/test-utils/vitest-mock-fn.js +1 -0
  393. package/dist/tts/tts-core.js +550 -0
  394. package/dist/utils/chunk-items.js +10 -0
  395. package/dist/utils/reaction-level.js +52 -0
  396. package/dist/utils/safe-json.js +22 -0
  397. package/dist/utils/with-timeout.js +14 -0
  398. package/dist/web/media.js +17 -5
  399. package/dist/whatsapp/resolve-outbound-target.js +42 -0
  400. package/dist/wizard/onboarding.completion.js +74 -0
  401. package/extensions/bluebubbles/package.json +1 -1
  402. package/extensions/bluebubbles/src/account-resolve.ts +29 -0
  403. package/extensions/bluebubbles/src/monitor-normalize.ts +796 -0
  404. package/extensions/bluebubbles/src/monitor-processing.ts +1007 -0
  405. package/extensions/bluebubbles/src/monitor-reply-cache.ts +185 -0
  406. package/extensions/bluebubbles/src/monitor-shared.ts +51 -0
  407. package/extensions/bluebubbles/src/multipart.ts +32 -0
  408. package/extensions/bluebubbles/src/send-helpers.ts +53 -0
  409. package/extensions/bluebubbles/src/test-harness.ts +50 -0
  410. package/extensions/bluebubbles/src/test-mocks.ts +11 -0
  411. package/extensions/copilot-proxy/package.json +1 -1
  412. package/extensions/device-pair/index.ts +554 -0
  413. package/extensions/diagnostics-otel/package.json +1 -1
  414. package/extensions/discord/package.json +1 -1
  415. package/extensions/discord/src/channel.js +366 -0
  416. package/extensions/discord/src/runtime.js +10 -0
  417. package/extensions/feishu/index.ts +63 -0
  418. package/extensions/feishu/src/accounts.ts +114 -0
  419. package/extensions/feishu/src/bitable.ts +739 -0
  420. package/extensions/feishu/src/bot.ts +965 -0
  421. package/extensions/feishu/src/channel.ts +351 -0
  422. package/extensions/feishu/src/client.ts +118 -0
  423. package/extensions/feishu/src/config-schema.ts +206 -0
  424. package/extensions/feishu/src/dedup.ts +33 -0
  425. package/extensions/feishu/src/directory.ts +177 -0
  426. package/extensions/feishu/src/doc-schema.ts +47 -0
  427. package/extensions/feishu/src/docx.ts +536 -0
  428. package/extensions/feishu/src/drive-schema.ts +46 -0
  429. package/extensions/feishu/src/drive.ts +227 -0
  430. package/extensions/feishu/src/dynamic-agent.ts +131 -0
  431. package/extensions/feishu/src/media.ts +449 -0
  432. package/extensions/feishu/src/mention.ts +126 -0
  433. package/extensions/feishu/src/monitor.ts +330 -0
  434. package/extensions/feishu/src/onboarding.ts +359 -0
  435. package/extensions/feishu/src/outbound.ts +55 -0
  436. package/extensions/feishu/src/perm-schema.ts +52 -0
  437. package/extensions/feishu/src/perm.ts +173 -0
  438. package/extensions/feishu/src/policy.ts +84 -0
  439. package/extensions/feishu/src/probe.ts +44 -0
  440. package/extensions/feishu/src/reactions.ts +160 -0
  441. package/extensions/feishu/src/reply-dispatcher.ts +239 -0
  442. package/extensions/feishu/src/runtime.ts +14 -0
  443. package/extensions/feishu/src/send-result.ts +29 -0
  444. package/extensions/feishu/src/send.ts +335 -0
  445. package/extensions/feishu/src/streaming-card.ts +223 -0
  446. package/extensions/feishu/src/targets.ts +78 -0
  447. package/extensions/feishu/src/tools-config.ts +21 -0
  448. package/extensions/feishu/src/types.ts +81 -0
  449. package/extensions/feishu/src/typing.ts +80 -0
  450. package/extensions/feishu/src/wiki-schema.ts +55 -0
  451. package/extensions/feishu/src/wiki.ts +232 -0
  452. package/extensions/google-antigravity-auth/package.json +1 -1
  453. package/extensions/google-gemini-cli-auth/package.json +1 -1
  454. package/extensions/googlechat/package.json +1 -1
  455. package/extensions/imessage/package.json +1 -1
  456. package/extensions/imessage/src/channel.js +253 -0
  457. package/extensions/imessage/src/runtime.js +10 -0
  458. package/extensions/irc/index.ts +17 -0
  459. package/extensions/irc/src/accounts.ts +268 -0
  460. package/extensions/irc/src/channel.ts +367 -0
  461. package/extensions/irc/src/client.ts +439 -0
  462. package/extensions/irc/src/config-schema.ts +97 -0
  463. package/extensions/irc/src/connect-options.ts +30 -0
  464. package/extensions/irc/src/control-chars.ts +22 -0
  465. package/extensions/irc/src/inbound.ts +334 -0
  466. package/extensions/irc/src/monitor.ts +147 -0
  467. package/extensions/irc/src/normalize.ts +117 -0
  468. package/extensions/irc/src/onboarding.ts +479 -0
  469. package/extensions/irc/src/policy.ts +157 -0
  470. package/extensions/irc/src/probe.ts +53 -0
  471. package/extensions/irc/src/protocol.ts +169 -0
  472. package/extensions/irc/src/runtime.ts +14 -0
  473. package/extensions/irc/src/send.ts +88 -0
  474. package/extensions/irc/src/types.ts +93 -0
  475. package/extensions/line/package.json +1 -1
  476. package/extensions/llm-task/package.json +1 -1
  477. package/extensions/lobster/package.json +1 -1
  478. package/extensions/matrix/CHANGELOG.md +5 -0
  479. package/extensions/matrix/package.json +1 -1
  480. package/extensions/matrix/src/matrix/client-bootstrap.ts +39 -0
  481. package/extensions/mattermost/package.json +1 -1
  482. package/extensions/mattermost/src/mattermost/monitor-onchar.ts +25 -0
  483. package/extensions/mattermost/src/mattermost/monitor-websocket.ts +221 -0
  484. package/extensions/mattermost/src/mattermost/reactions.ts +130 -0
  485. package/extensions/mattermost/src/mattermost/reconnect.ts +103 -0
  486. package/extensions/memory-core/package.json +1 -1
  487. package/extensions/memory-lancedb/package.json +1 -1
  488. package/extensions/minimax-portal-auth/index.ts +161 -0
  489. package/extensions/minimax-portal-auth/oauth.ts +247 -0
  490. package/extensions/msteams/CHANGELOG.md +5 -0
  491. package/extensions/msteams/package.json +1 -1
  492. package/extensions/msteams/src/file-lock.ts +1 -0
  493. package/extensions/msteams/src/graph.ts +92 -0
  494. package/extensions/msteams/src/mentions.ts +114 -0
  495. package/extensions/msteams/src/test-runtime.ts +16 -0
  496. package/extensions/nextcloud-talk/package.json +1 -1
  497. package/extensions/nostr/CHANGELOG.md +5 -0
  498. package/extensions/nostr/package.json +1 -1
  499. package/extensions/open-prose/package.json +1 -1
  500. package/extensions/openai-codex-auth/index.ts +177 -0
  501. package/extensions/phone-control/index.ts +421 -0
  502. package/extensions/shared/resolve-target-test-helpers.ts +66 -0
  503. package/extensions/signal/package.json +1 -1
  504. package/extensions/signal/src/channel.js +273 -0
  505. package/extensions/signal/src/runtime.js +10 -0
  506. package/extensions/slack/package.json +1 -1
  507. package/extensions/slack/src/channel.js +489 -0
  508. package/extensions/slack/src/runtime.js +10 -0
  509. package/extensions/talk-voice/index.ts +150 -0
  510. package/extensions/telegram/package.json +1 -1
  511. package/extensions/telegram/src/channel.js +424 -0
  512. package/extensions/telegram/src/runtime.js +10 -0
  513. package/extensions/thread-ownership/index.ts +133 -0
  514. package/extensions/tlon/package.json +1 -1
  515. package/extensions/tlon/src/account-fields.ts +25 -0
  516. package/extensions/tlon/src/urbit/base-url.ts +57 -0
  517. package/extensions/tlon/src/urbit/channel-client.ts +157 -0
  518. package/extensions/tlon/src/urbit/channel-ops.ts +164 -0
  519. package/extensions/tlon/src/urbit/context.ts +47 -0
  520. package/extensions/tlon/src/urbit/errors.ts +51 -0
  521. package/extensions/tlon/src/urbit/fetch.ts +39 -0
  522. package/extensions/twitch/CHANGELOG.md +5 -0
  523. package/extensions/twitch/package.json +1 -1
  524. package/extensions/twitch/src/test-fixtures.ts +30 -0
  525. package/extensions/voice-call/CHANGELOG.md +5 -0
  526. package/extensions/voice-call/package.json +1 -1
  527. package/extensions/voice-call/src/allowlist.ts +19 -0
  528. package/extensions/whatsapp/package.json +1 -1
  529. package/extensions/whatsapp/src/channel.js +429 -0
  530. package/extensions/whatsapp/src/runtime.js +10 -0
  531. package/extensions/zalo/CHANGELOG.md +5 -0
  532. package/extensions/zalo/package.json +1 -1
  533. package/extensions/zalouser/CHANGELOG.md +5 -0
  534. package/extensions/zalouser/package.json +1 -1
  535. package/package.json +1 -1
@@ -0,0 +1,700 @@
1
+ import { randomUUID } from "node:crypto";
2
+ import { agentCommand } from "../../commands/agent.js";
3
+ import { normalizeAgentId } from "../../routing/session-key.js";
4
+ import { defaultRuntime } from "../../runtime.js";
5
+ import { ErrorCodes, errorShape, formatValidationErrors, validateMeshPlanAutoParams, validateMeshPlanParams, validateMeshRetryParams, validateMeshRunParams, validateMeshStatusParams, } from "../protocol/index.js";
6
+ import { agentHandlers } from "./agent.js";
7
+ const meshRuns = new Map();
8
+ const MAX_KEEP_RUNS = 200;
9
+ const AUTO_PLAN_TIMEOUT_MS = 90_000;
10
+ const PLANNER_MAIN_KEY = "mesh-planner";
11
+ function trimMap() {
12
+ if (meshRuns.size <= MAX_KEEP_RUNS) {
13
+ return;
14
+ }
15
+ const sorted = [...meshRuns.values()].toSorted((a, b) => a.startedAt - b.startedAt);
16
+ const overflow = meshRuns.size - MAX_KEEP_RUNS;
17
+ for (const stale of sorted.slice(0, overflow)) {
18
+ meshRuns.delete(stale.runId);
19
+ }
20
+ }
21
+ function stringifyUnknown(value) {
22
+ if (typeof value === "string") {
23
+ return value;
24
+ }
25
+ if (value instanceof Error) {
26
+ return value.message;
27
+ }
28
+ try {
29
+ return JSON.stringify(value);
30
+ }
31
+ catch {
32
+ return String(value);
33
+ }
34
+ }
35
+ function normalizeDependsOn(dependsOn) {
36
+ if (!Array.isArray(dependsOn)) {
37
+ return [];
38
+ }
39
+ const seen = new Set();
40
+ const normalized = [];
41
+ for (const raw of dependsOn) {
42
+ const trimmed = String(raw ?? "").trim();
43
+ if (!trimmed || seen.has(trimmed)) {
44
+ continue;
45
+ }
46
+ seen.add(trimmed);
47
+ normalized.push(trimmed);
48
+ }
49
+ return normalized;
50
+ }
51
+ function normalizePlan(plan) {
52
+ return {
53
+ planId: plan.planId.trim(),
54
+ goal: plan.goal.trim(),
55
+ createdAt: plan.createdAt,
56
+ steps: plan.steps.map((step) => ({
57
+ id: step.id.trim(),
58
+ name: typeof step.name === "string" ? step.name.trim() || undefined : undefined,
59
+ prompt: step.prompt.trim(),
60
+ dependsOn: normalizeDependsOn(step.dependsOn),
61
+ agentId: typeof step.agentId === "string" ? step.agentId.trim() || undefined : undefined,
62
+ sessionKey: typeof step.sessionKey === "string" ? step.sessionKey.trim() || undefined : undefined,
63
+ thinking: typeof step.thinking === "string" ? step.thinking : undefined,
64
+ timeoutMs: typeof step.timeoutMs === "number" && Number.isFinite(step.timeoutMs)
65
+ ? Math.max(1_000, Math.floor(step.timeoutMs))
66
+ : undefined,
67
+ })),
68
+ };
69
+ }
70
+ function createPlanFromParams(params) {
71
+ const now = Date.now();
72
+ const goal = params.goal.trim();
73
+ const sourceSteps = params.steps?.length
74
+ ? params.steps
75
+ : [
76
+ {
77
+ id: "step-1",
78
+ name: "Primary Task",
79
+ prompt: goal,
80
+ },
81
+ ];
82
+ const steps = sourceSteps.map((step, index) => {
83
+ const stepId = step.id?.trim() || `step-${index + 1}`;
84
+ return {
85
+ id: stepId,
86
+ name: step.name?.trim() || undefined,
87
+ prompt: step.prompt.trim(),
88
+ dependsOn: normalizeDependsOn(step.dependsOn),
89
+ agentId: step.agentId?.trim() || undefined,
90
+ sessionKey: step.sessionKey?.trim() || undefined,
91
+ thinking: typeof step.thinking === "string" ? step.thinking : undefined,
92
+ timeoutMs: typeof step.timeoutMs === "number" && Number.isFinite(step.timeoutMs)
93
+ ? Math.max(1_000, Math.floor(step.timeoutMs))
94
+ : undefined,
95
+ };
96
+ });
97
+ return {
98
+ planId: `mesh-plan-${randomUUID()}`,
99
+ goal,
100
+ createdAt: now,
101
+ steps,
102
+ };
103
+ }
104
+ function validatePlanGraph(plan) {
105
+ const ids = new Set();
106
+ for (const step of plan.steps) {
107
+ if (ids.has(step.id)) {
108
+ return { ok: false, error: `duplicate step id: ${step.id}` };
109
+ }
110
+ ids.add(step.id);
111
+ }
112
+ for (const step of plan.steps) {
113
+ for (const depId of step.dependsOn ?? []) {
114
+ if (!ids.has(depId)) {
115
+ return { ok: false, error: `unknown dependency "${depId}" on step "${step.id}"` };
116
+ }
117
+ if (depId === step.id) {
118
+ return { ok: false, error: `step "${step.id}" cannot depend on itself` };
119
+ }
120
+ }
121
+ }
122
+ const inDegree = new Map();
123
+ const outgoing = new Map();
124
+ for (const step of plan.steps) {
125
+ inDegree.set(step.id, 0);
126
+ outgoing.set(step.id, []);
127
+ }
128
+ for (const step of plan.steps) {
129
+ for (const dep of step.dependsOn ?? []) {
130
+ inDegree.set(step.id, (inDegree.get(step.id) ?? 0) + 1);
131
+ const list = outgoing.get(dep);
132
+ if (list) {
133
+ list.push(step.id);
134
+ }
135
+ }
136
+ }
137
+ const queue = plan.steps
138
+ .filter((step) => (inDegree.get(step.id) ?? 0) === 0)
139
+ .map((s) => s.id);
140
+ const order = [];
141
+ while (queue.length > 0) {
142
+ const current = queue.shift();
143
+ if (!current) {
144
+ continue;
145
+ }
146
+ order.push(current);
147
+ const targets = outgoing.get(current) ?? [];
148
+ for (const next of targets) {
149
+ const degree = (inDegree.get(next) ?? 0) - 1;
150
+ inDegree.set(next, degree);
151
+ if (degree === 0) {
152
+ queue.push(next);
153
+ }
154
+ }
155
+ }
156
+ if (order.length !== plan.steps.length) {
157
+ return { ok: false, error: "workflow contains a dependency cycle" };
158
+ }
159
+ return { ok: true, order };
160
+ }
161
+ async function callGatewayHandler(handler, opts) {
162
+ return await new Promise((resolve) => {
163
+ let settled = false;
164
+ const settle = (result) => {
165
+ if (settled) {
166
+ return;
167
+ }
168
+ settled = true;
169
+ resolve(result);
170
+ };
171
+ const respond = (ok, payload, error, meta) => {
172
+ settle({ ok, payload, error, meta });
173
+ };
174
+ void Promise.resolve(handler({
175
+ ...opts,
176
+ respond,
177
+ })).catch((err) => {
178
+ settle({ ok: false, error: err });
179
+ });
180
+ });
181
+ }
182
+ function buildStepPrompt(step, run) {
183
+ if (step.dependsOn.length === 0) {
184
+ return step.prompt;
185
+ }
186
+ const lines = step.dependsOn.map((depId) => {
187
+ const dep = run.steps[depId];
188
+ const details = dep.agentRunId ? ` runId=${dep.agentRunId}` : "";
189
+ return `- ${depId}: ${dep.status}${details}`;
190
+ });
191
+ return `${step.prompt}\n\nDependency context:\n${lines.join("\n")}`;
192
+ }
193
+ function resolveStepTimeoutMs(step, run) {
194
+ if (typeof step.timeoutMs === "number" && Number.isFinite(step.timeoutMs)) {
195
+ return Math.max(1_000, Math.floor(step.timeoutMs));
196
+ }
197
+ return run.defaultStepTimeoutMs;
198
+ }
199
+ async function executeStep(params) {
200
+ const { run, step, opts } = params;
201
+ step.status = "running";
202
+ step.startedAt = Date.now();
203
+ step.endedAt = undefined;
204
+ step.error = undefined;
205
+ step.attempts += 1;
206
+ run.history.push({ ts: Date.now(), type: "step.start", stepId: step.id });
207
+ const agentRequestId = `${run.runId}:${step.id}:${step.attempts}`;
208
+ const prompt = buildStepPrompt(step, run);
209
+ const timeoutMs = resolveStepTimeoutMs(step, run);
210
+ const timeoutSeconds = Math.ceil(timeoutMs / 1000);
211
+ const accepted = await callGatewayHandler(agentHandlers.agent, {
212
+ ...opts,
213
+ req: {
214
+ type: "req",
215
+ id: `${agentRequestId}:agent`,
216
+ method: "agent",
217
+ params: {},
218
+ },
219
+ params: {
220
+ message: prompt,
221
+ idempotencyKey: agentRequestId,
222
+ ...(step.agentId ? { agentId: step.agentId } : {}),
223
+ ...(step.sessionKey ? { sessionKey: step.sessionKey } : {}),
224
+ ...(step.thinking ? { thinking: step.thinking } : {}),
225
+ ...(run.lane ? { lane: run.lane } : {}),
226
+ timeout: timeoutSeconds,
227
+ deliver: false,
228
+ },
229
+ });
230
+ if (!accepted.ok) {
231
+ step.status = "failed";
232
+ step.endedAt = Date.now();
233
+ step.error = stringifyUnknown(accepted.error ?? "agent request failed");
234
+ run.history.push({
235
+ ts: Date.now(),
236
+ type: "step.error",
237
+ stepId: step.id,
238
+ data: { error: step.error },
239
+ });
240
+ return;
241
+ }
242
+ const runId = (() => {
243
+ const candidate = accepted.payload;
244
+ return typeof candidate?.runId === "string" ? candidate.runId : undefined;
245
+ })();
246
+ step.agentRunId = runId;
247
+ if (!runId) {
248
+ step.status = "failed";
249
+ step.endedAt = Date.now();
250
+ step.error = "agent did not return runId";
251
+ run.history.push({
252
+ ts: Date.now(),
253
+ type: "step.error",
254
+ stepId: step.id,
255
+ data: { error: step.error },
256
+ });
257
+ return;
258
+ }
259
+ const waited = await callGatewayHandler(agentHandlers["agent.wait"], {
260
+ ...opts,
261
+ req: {
262
+ type: "req",
263
+ id: `${agentRequestId}:wait`,
264
+ method: "agent.wait",
265
+ params: {},
266
+ },
267
+ params: {
268
+ runId,
269
+ timeoutMs,
270
+ },
271
+ });
272
+ const waitPayload = waited.payload;
273
+ const waitStatus = typeof waitPayload?.status === "string" ? waitPayload.status : "error";
274
+ if (waited.ok && waitStatus === "ok") {
275
+ step.status = "succeeded";
276
+ step.endedAt = Date.now();
277
+ run.history.push({ ts: Date.now(), type: "step.ok", stepId: step.id, data: { runId } });
278
+ return;
279
+ }
280
+ step.status = "failed";
281
+ step.endedAt = Date.now();
282
+ step.error =
283
+ typeof waitPayload?.error === "string"
284
+ ? waitPayload.error
285
+ : stringifyUnknown(waited.error ?? `agent.wait returned status ${waitStatus}`);
286
+ run.history.push({
287
+ ts: Date.now(),
288
+ type: "step.error",
289
+ stepId: step.id,
290
+ data: { runId, status: waitStatus, error: step.error },
291
+ });
292
+ }
293
+ function createRunRecord(params) {
294
+ const steps = {};
295
+ for (const step of params.plan.steps) {
296
+ steps[step.id] = {
297
+ id: step.id,
298
+ name: step.name,
299
+ prompt: step.prompt,
300
+ dependsOn: step.dependsOn ?? [],
301
+ agentId: step.agentId,
302
+ sessionKey: step.sessionKey,
303
+ thinking: step.thinking,
304
+ timeoutMs: step.timeoutMs,
305
+ status: "pending",
306
+ attempts: 0,
307
+ };
308
+ }
309
+ return {
310
+ runId: params.runId,
311
+ plan: params.plan,
312
+ status: "pending",
313
+ startedAt: Date.now(),
314
+ continueOnError: params.continueOnError,
315
+ maxParallel: params.maxParallel,
316
+ defaultStepTimeoutMs: params.defaultStepTimeoutMs,
317
+ lane: params.lane,
318
+ stepOrder: params.order,
319
+ steps,
320
+ history: [],
321
+ };
322
+ }
323
+ function findReadySteps(run) {
324
+ const ready = [];
325
+ for (const stepId of run.stepOrder) {
326
+ const step = run.steps[stepId];
327
+ if (!step || step.status !== "pending") {
328
+ continue;
329
+ }
330
+ const deps = step.dependsOn.map((depId) => run.steps[depId]).filter(Boolean);
331
+ if (deps.some((dep) => dep.status === "failed" || dep.status === "skipped")) {
332
+ step.status = "skipped";
333
+ step.endedAt = Date.now();
334
+ step.error = "dependency failed";
335
+ continue;
336
+ }
337
+ if (deps.every((dep) => dep.status === "succeeded")) {
338
+ ready.push(step);
339
+ }
340
+ }
341
+ return ready;
342
+ }
343
+ async function runWorkflow(run, opts) {
344
+ run.status = "running";
345
+ run.history.push({ ts: Date.now(), type: "run.start" });
346
+ const inFlight = new Set();
347
+ let stopScheduling = false;
348
+ while (true) {
349
+ const failed = Object.values(run.steps).some((step) => step.status === "failed");
350
+ if (failed && !run.continueOnError) {
351
+ stopScheduling = true;
352
+ }
353
+ if (!stopScheduling) {
354
+ const ready = findReadySteps(run);
355
+ for (const step of ready) {
356
+ if (inFlight.size >= run.maxParallel) {
357
+ break;
358
+ }
359
+ const task = executeStep({ run, step, opts }).finally(() => {
360
+ inFlight.delete(task);
361
+ });
362
+ inFlight.add(task);
363
+ }
364
+ }
365
+ if (inFlight.size > 0) {
366
+ await Promise.race(inFlight);
367
+ continue;
368
+ }
369
+ const pending = Object.values(run.steps).filter((step) => step.status === "pending");
370
+ if (pending.length === 0) {
371
+ break;
372
+ }
373
+ for (const step of pending) {
374
+ step.status = "skipped";
375
+ step.endedAt = Date.now();
376
+ step.error = stopScheduling ? "cancelled after failure" : "unresolvable dependencies";
377
+ }
378
+ break;
379
+ }
380
+ const hasFailure = Object.values(run.steps).some((step) => step.status === "failed");
381
+ run.status = hasFailure ? "failed" : "completed";
382
+ run.endedAt = Date.now();
383
+ run.history.push({
384
+ ts: Date.now(),
385
+ type: "run.end",
386
+ data: { status: run.status },
387
+ });
388
+ }
389
+ function resolveStepIdsForRetry(run, requested) {
390
+ if (Array.isArray(requested) && requested.length > 0) {
391
+ return requested.map((stepId) => stepId.trim()).filter(Boolean);
392
+ }
393
+ return Object.values(run.steps)
394
+ .filter((step) => step.status === "failed" || step.status === "skipped")
395
+ .map((step) => step.id);
396
+ }
397
+ function descendantsOf(run, roots) {
398
+ const descendants = new Set();
399
+ const queue = [...roots];
400
+ while (queue.length > 0) {
401
+ const current = queue.shift();
402
+ if (!current) {
403
+ continue;
404
+ }
405
+ for (const step of Object.values(run.steps)) {
406
+ if (!step.dependsOn.includes(current) || descendants.has(step.id)) {
407
+ continue;
408
+ }
409
+ descendants.add(step.id);
410
+ queue.push(step.id);
411
+ }
412
+ }
413
+ return descendants;
414
+ }
415
+ function resetStepsForRetry(run, stepIds) {
416
+ const rootSet = new Set(stepIds);
417
+ const descendants = descendantsOf(run, rootSet);
418
+ const resetIds = new Set([...rootSet, ...descendants]);
419
+ for (const stepId of resetIds) {
420
+ const step = run.steps[stepId];
421
+ if (!step) {
422
+ continue;
423
+ }
424
+ if (step.status === "succeeded" && !rootSet.has(stepId)) {
425
+ continue;
426
+ }
427
+ step.status = "pending";
428
+ step.startedAt = undefined;
429
+ step.endedAt = undefined;
430
+ step.error = undefined;
431
+ if (rootSet.has(stepId)) {
432
+ step.agentRunId = undefined;
433
+ }
434
+ }
435
+ }
436
+ function summarizeRun(run) {
437
+ return {
438
+ runId: run.runId,
439
+ plan: run.plan,
440
+ status: run.status,
441
+ startedAt: run.startedAt,
442
+ endedAt: run.endedAt,
443
+ stats: {
444
+ total: Object.keys(run.steps).length,
445
+ succeeded: Object.values(run.steps).filter((step) => step.status === "succeeded").length,
446
+ failed: Object.values(run.steps).filter((step) => step.status === "failed").length,
447
+ skipped: Object.values(run.steps).filter((step) => step.status === "skipped").length,
448
+ running: Object.values(run.steps).filter((step) => step.status === "running").length,
449
+ pending: Object.values(run.steps).filter((step) => step.status === "pending").length,
450
+ },
451
+ steps: run.stepOrder.map((stepId) => run.steps[stepId]),
452
+ history: run.history,
453
+ };
454
+ }
455
+ function extractTextFromAgentResult(result) {
456
+ const payloads = result?.payloads;
457
+ if (!Array.isArray(payloads)) {
458
+ return "";
459
+ }
460
+ const texts = [];
461
+ for (const payload of payloads) {
462
+ if (typeof payload?.text === "string" && payload.text.trim()) {
463
+ texts.push(payload.text.trim());
464
+ }
465
+ }
466
+ return texts.join("\n\n");
467
+ }
468
+ function parseJsonObjectFromText(text) {
469
+ const trimmed = text.trim();
470
+ if (!trimmed) {
471
+ return null;
472
+ }
473
+ try {
474
+ const parsed = JSON.parse(trimmed);
475
+ return parsed && typeof parsed === "object" && !Array.isArray(parsed)
476
+ ? parsed
477
+ : null;
478
+ }
479
+ catch {
480
+ // keep trying
481
+ }
482
+ const fenceMatch = trimmed.match(/```(?:json)?\s*([\s\S]*?)\s*```/i);
483
+ if (fenceMatch?.[1]) {
484
+ try {
485
+ const parsed = JSON.parse(fenceMatch[1]);
486
+ return parsed && typeof parsed === "object" && !Array.isArray(parsed)
487
+ ? parsed
488
+ : null;
489
+ }
490
+ catch {
491
+ // keep trying
492
+ }
493
+ }
494
+ const start = trimmed.indexOf("{");
495
+ const end = trimmed.lastIndexOf("}");
496
+ if (start >= 0 && end > start) {
497
+ const candidate = trimmed.slice(start, end + 1);
498
+ try {
499
+ const parsed = JSON.parse(candidate);
500
+ return parsed && typeof parsed === "object" && !Array.isArray(parsed)
501
+ ? parsed
502
+ : null;
503
+ }
504
+ catch {
505
+ return null;
506
+ }
507
+ }
508
+ return null;
509
+ }
510
+ function buildAutoPlannerPrompt(params) {
511
+ return [
512
+ "You are a workflow planner. Convert the user's goal into executable workflow steps.",
513
+ "Return STRICT JSON only, no markdown, no prose.",
514
+ 'JSON schema: {"steps": [{"id": string, "name"?: string, "prompt": string, "dependsOn"?: string[]}]}',
515
+ "Rules:",
516
+ `- Use 2 to ${params.maxSteps} steps.`,
517
+ "- Keep ids short, lowercase, kebab-case.",
518
+ "- dependsOn must reference earlier step ids when needed.",
519
+ "- prompts must be concrete and executable by an AI coding assistant.",
520
+ "- Do not include extra fields.",
521
+ `Goal: ${params.goal}`,
522
+ ].join("\n");
523
+ }
524
+ async function generateAutoPlan(params) {
525
+ const prompt = buildAutoPlannerPrompt({ goal: params.goal, maxSteps: params.maxSteps });
526
+ const timeoutSeconds = Math.ceil((params.timeoutMs ?? AUTO_PLAN_TIMEOUT_MS) / 1000);
527
+ const resolvedAgentId = normalizeAgentId(params.agentId ?? "main");
528
+ const plannerSessionKey = params.sessionKey?.trim() || `agent:${resolvedAgentId}:${PLANNER_MAIN_KEY}`;
529
+ try {
530
+ const runResult = await agentCommand({
531
+ message: prompt,
532
+ deliver: false,
533
+ timeout: String(timeoutSeconds),
534
+ agentId: resolvedAgentId,
535
+ sessionKey: plannerSessionKey,
536
+ ...(params.thinking ? { thinking: params.thinking } : {}),
537
+ ...(params.lane ? { lane: params.lane } : {}),
538
+ }, defaultRuntime, params.opts.context.deps);
539
+ const text = extractTextFromAgentResult(runResult);
540
+ const parsed = parseJsonObjectFromText(text);
541
+ const rawSteps = Array.isArray(parsed?.steps) ? parsed.steps : [];
542
+ if (rawSteps.length > 0) {
543
+ const plan = normalizePlan(createPlanFromParams({
544
+ goal: params.goal,
545
+ steps: rawSteps.slice(0, params.maxSteps),
546
+ }));
547
+ return { plan, source: "llm", plannerText: text };
548
+ }
549
+ const fallbackPlan = normalizePlan(createPlanFromParams({ goal: params.goal }));
550
+ return { plan: fallbackPlan, source: "fallback", plannerText: text };
551
+ }
552
+ catch {
553
+ const fallbackPlan = normalizePlan(createPlanFromParams({ goal: params.goal }));
554
+ return { plan: fallbackPlan, source: "fallback" };
555
+ }
556
+ }
557
+ export const meshHandlers = {
558
+ "mesh.plan": ({ params, respond }) => {
559
+ if (!validateMeshPlanParams(params)) {
560
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, `invalid mesh.plan params: ${formatValidationErrors(validateMeshPlanParams.errors)}`));
561
+ return;
562
+ }
563
+ const p = params;
564
+ const plan = normalizePlan(createPlanFromParams({
565
+ goal: p.goal,
566
+ steps: p.steps,
567
+ }));
568
+ const graph = validatePlanGraph(plan);
569
+ if (!graph.ok) {
570
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, graph.error));
571
+ return;
572
+ }
573
+ respond(true, {
574
+ plan,
575
+ order: graph.order,
576
+ }, undefined);
577
+ },
578
+ "mesh.plan.auto": async ({ params, respond, ...rest }) => {
579
+ if (!validateMeshPlanAutoParams(params)) {
580
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, `invalid mesh.plan.auto params: ${formatValidationErrors(validateMeshPlanAutoParams.errors)}`));
581
+ return;
582
+ }
583
+ const p = params;
584
+ const maxSteps = typeof p.maxSteps === "number" && Number.isFinite(p.maxSteps)
585
+ ? Math.max(1, Math.min(16, Math.floor(p.maxSteps)))
586
+ : 6;
587
+ const auto = await generateAutoPlan({
588
+ goal: p.goal,
589
+ maxSteps,
590
+ agentId: p.agentId,
591
+ sessionKey: p.sessionKey,
592
+ thinking: p.thinking,
593
+ timeoutMs: p.timeoutMs,
594
+ lane: p.lane,
595
+ opts: {
596
+ ...rest,
597
+ params,
598
+ respond,
599
+ },
600
+ });
601
+ const graph = validatePlanGraph(auto.plan);
602
+ if (!graph.ok) {
603
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, graph.error));
604
+ return;
605
+ }
606
+ respond(true, {
607
+ plan: auto.plan,
608
+ order: graph.order,
609
+ source: auto.source,
610
+ plannerText: auto.plannerText,
611
+ }, undefined);
612
+ },
613
+ "mesh.run": async (opts) => {
614
+ const { params, respond } = opts;
615
+ if (!validateMeshRunParams(params)) {
616
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, `invalid mesh.run params: ${formatValidationErrors(validateMeshRunParams.errors)}`));
617
+ return;
618
+ }
619
+ const p = params;
620
+ const plan = normalizePlan(p.plan);
621
+ const graph = validatePlanGraph(plan);
622
+ if (!graph.ok) {
623
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, graph.error));
624
+ return;
625
+ }
626
+ const maxParallel = typeof p.maxParallel === "number" && Number.isFinite(p.maxParallel)
627
+ ? Math.min(16, Math.max(1, Math.floor(p.maxParallel)))
628
+ : 2;
629
+ const defaultStepTimeoutMs = typeof p.defaultStepTimeoutMs === "number" && Number.isFinite(p.defaultStepTimeoutMs)
630
+ ? Math.max(1_000, Math.floor(p.defaultStepTimeoutMs))
631
+ : 120_000;
632
+ const runId = `mesh-run-${randomUUID()}`;
633
+ const record = createRunRecord({
634
+ runId,
635
+ plan,
636
+ order: graph.order,
637
+ continueOnError: p.continueOnError === true,
638
+ maxParallel,
639
+ defaultStepTimeoutMs,
640
+ lane: typeof p.lane === "string" ? p.lane : undefined,
641
+ });
642
+ meshRuns.set(runId, record);
643
+ trimMap();
644
+ await runWorkflow(record, opts);
645
+ respond(true, summarizeRun(record), undefined);
646
+ },
647
+ "mesh.status": ({ params, respond }) => {
648
+ if (!validateMeshStatusParams(params)) {
649
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, `invalid mesh.status params: ${formatValidationErrors(validateMeshStatusParams.errors)}`));
650
+ return;
651
+ }
652
+ const run = meshRuns.get(params.runId.trim());
653
+ if (!run) {
654
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, "mesh run not found"));
655
+ return;
656
+ }
657
+ respond(true, summarizeRun(run), undefined);
658
+ },
659
+ "mesh.retry": async (opts) => {
660
+ const { params, respond } = opts;
661
+ if (!validateMeshRetryParams(params)) {
662
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, `invalid mesh.retry params: ${formatValidationErrors(validateMeshRetryParams.errors)}`));
663
+ return;
664
+ }
665
+ const runId = params.runId.trim();
666
+ const run = meshRuns.get(runId);
667
+ if (!run) {
668
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, "mesh run not found"));
669
+ return;
670
+ }
671
+ if (run.status === "running") {
672
+ respond(false, undefined, errorShape(ErrorCodes.UNAVAILABLE, "mesh run is currently running"));
673
+ return;
674
+ }
675
+ const stepIds = resolveStepIdsForRetry(run, params.stepIds);
676
+ if (stepIds.length === 0) {
677
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, "no failed or skipped steps available to retry"));
678
+ return;
679
+ }
680
+ for (const stepId of stepIds) {
681
+ if (!run.steps[stepId]) {
682
+ respond(false, undefined, errorShape(ErrorCodes.INVALID_REQUEST, `unknown retry step id: ${stepId}`));
683
+ return;
684
+ }
685
+ }
686
+ resetStepsForRetry(run, stepIds);
687
+ run.status = "pending";
688
+ run.endedAt = undefined;
689
+ run.history.push({
690
+ ts: Date.now(),
691
+ type: "run.retry",
692
+ data: { stepIds },
693
+ });
694
+ await runWorkflow(run, opts);
695
+ respond(true, summarizeRun(run), undefined);
696
+ },
697
+ };
698
+ export function __resetMeshRunsForTest() {
699
+ meshRuns.clear();
700
+ }