@zhushanwen/pi-subagent-workflow 8.6.0 → 8.8.0

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 (364) hide show
  1. package/README.md +5 -11
  2. package/package.json +13 -20
  3. package/relay/relay.mjs +1 -1
  4. package/skills/workflow-script-format/SKILL.md +32 -13
  5. package/src/host/__tests__/pi-host.test.ts +235 -0
  6. package/src/host/pi-host.ts +163 -0
  7. package/src/index.ts +141 -138
  8. package/src/injectors/__tests__/engine-awareness.test.ts +292 -0
  9. package/src/injectors/__tests__/engine-section-stability.test.ts +343 -0
  10. package/src/injectors/__tests__/model-list-injector.test.ts +18 -21
  11. package/src/injectors/__tests__/subagent-list-injector.test.ts +59 -19
  12. package/src/injectors/__tests__/workflow-list-injector.test.ts +31 -17
  13. package/src/injectors/engine-awareness.ts +119 -0
  14. package/src/injectors/model-list-injector.ts +15 -58
  15. package/src/injectors/subagent-list-injector.ts +56 -114
  16. package/src/injectors/workflow-list-injector.ts +37 -70
  17. package/src/interface/__tests__/detectors.test.ts +48 -37
  18. package/src/interface/__tests__/subagent-tool-path-guard.test.ts +2 -2
  19. package/src/interface/__tests__/subagent-tool-prompt.test.ts +6 -3
  20. package/src/interface/__tests__/tool-workflow-run-builtin-name.test.ts +216 -0
  21. package/src/interface/__tests__/tool-workflow-script-generate.test.ts +17 -6
  22. package/src/interface/__tests__/tool-workflow-throw-paths.test.ts +38 -2
  23. package/src/interface/bg-notify-render.ts +7 -17
  24. package/src/interface/command-actions.ts +5 -15
  25. package/src/interface/commands.ts +4 -4
  26. package/src/interface/format.ts +17 -6
  27. package/src/interface/gui-mappers.ts +18 -22
  28. package/src/interface/helpers.ts +9 -130
  29. package/src/interface/list-component.ts +5 -5
  30. package/src/interface/list-shared.ts +3 -3
  31. package/src/interface/list-view.ts +3 -3
  32. package/src/interface/subagent-actions.ts +66 -439
  33. package/src/interface/subagent-tool-schema.ts +21 -17
  34. package/src/interface/subagent-tool.ts +12 -7
  35. package/src/interface/subagents.ts +4 -4
  36. package/src/interface/tool-render.ts +37 -15
  37. package/src/interface/tool-workflow-script.ts +34 -76
  38. package/src/interface/tool-workflow.ts +57 -94
  39. package/src/interface/views/WorkflowsView.ts +8 -16
  40. package/src/interface/views/__tests__/WorkflowsView-signature.test.ts +3 -3
  41. package/src/interface/views/__tests__/detail-content-session-file.test.ts +2 -2
  42. package/src/interface/views/detail-content.ts +4 -4
  43. package/src/interface/views/format.ts +23 -62
  44. package/src/{orchestration/jsonl-run-store.ts → jsonl-run-store.ts} +137 -225
  45. package/agents/analyst.md +0 -61
  46. package/agents/coder.md +0 -70
  47. package/agents/debugger.md +0 -67
  48. package/agents/doc-reviewer.md +0 -50
  49. package/agents/explorer.md +0 -64
  50. package/agents/general-purpose.md +0 -32
  51. package/agents/orchestrator.md +0 -63
  52. package/agents/planner.md +0 -54
  53. package/agents/researcher.md +0 -65
  54. package/agents/reviewer.md +0 -74
  55. package/src/execution/__tests__/__fixtures__/notifier-golden-snapshots.json +0 -53
  56. package/src/execution/__tests__/__fixtures__/truncline.snapshot.json +0 -1
  57. package/src/execution/__tests__/agent-registry.test.ts +0 -363
  58. package/src/execution/__tests__/agent-result-mapper.test.ts +0 -150
  59. package/src/execution/__tests__/alive-store.test.ts +0 -147
  60. package/src/execution/__tests__/ask-user-transit-e2e.test.ts +0 -490
  61. package/src/execution/__tests__/before-agent-start-injection.test.ts +0 -132
  62. package/src/execution/__tests__/bg-notify-render.test.ts +0 -329
  63. package/src/execution/__tests__/channel-registry-handshake.test.ts +0 -243
  64. package/src/execution/__tests__/chat-engine-routing.test.ts +0 -601
  65. package/src/execution/__tests__/chatmode-first-round-closure-service.test.ts +0 -365
  66. package/src/execution/__tests__/chatmode-first-round-closure-spawn.test.ts +0 -190
  67. package/src/execution/__tests__/chatmode-round-notify-real-chain.test.ts +0 -215
  68. package/src/execution/__tests__/concurrency-pool.test.ts +0 -250
  69. package/src/execution/__tests__/config.test.ts +0 -110
  70. package/src/execution/__tests__/conversation-wiring.test.ts +0 -198
  71. package/src/execution/__tests__/crash-recovery.test.ts +0 -320
  72. package/src/execution/__tests__/delivery-methods.test.ts +0 -422
  73. package/src/execution/__tests__/dialog-queue.test.ts +0 -299
  74. package/src/execution/__tests__/epipe-fallback.test.ts +0 -241
  75. package/src/execution/__tests__/execute-and-await-worktree.test.ts +0 -243
  76. package/src/execution/__tests__/execute-nesting.test.ts +0 -323
  77. package/src/execution/__tests__/execute-options-mapper.test.ts +0 -200
  78. package/src/execution/__tests__/execution-record.test.ts +0 -1394
  79. package/src/execution/__tests__/explicit-agent-ref-guard.test.ts +0 -171
  80. package/src/execution/__tests__/finalize-record.test.ts +0 -368
  81. package/src/execution/__tests__/finalized-marker.test.ts +0 -82
  82. package/src/execution/__tests__/format-schema-instruction.test.ts +0 -169
  83. package/src/execution/__tests__/format.test.ts +0 -458
  84. package/src/execution/__tests__/gc-timer.test.ts +0 -184
  85. package/src/execution/__tests__/get-record-for-action-restart.test.ts +0 -254
  86. package/src/execution/__tests__/gui-mode-dispatch.test.ts +0 -59
  87. package/src/execution/__tests__/helpers/mock-extension-api.ts +0 -30
  88. package/src/execution/__tests__/helpers/spawn-mock.ts +0 -242
  89. package/src/execution/__tests__/host-mode.test.ts +0 -87
  90. package/src/execution/__tests__/index-session-start-identity.test.ts +0 -371
  91. package/src/execution/__tests__/index-session-start.test.ts +0 -672
  92. package/src/execution/__tests__/lifecycle-manager-lock.test.ts +0 -211
  93. package/src/execution/__tests__/lifecycle-manager.test.ts +0 -383
  94. package/src/execution/__tests__/lifecycle-predicates.test.ts +0 -116
  95. package/src/execution/__tests__/list-component.test.ts +0 -401
  96. package/src/execution/__tests__/list-fields.test.ts +0 -140
  97. package/src/execution/__tests__/manifest-parentid.test.ts +0 -117
  98. package/src/execution/__tests__/model-resolver.test.ts +0 -465
  99. package/src/execution/__tests__/nested-visibility-env-propagation.test.ts +0 -287
  100. package/src/execution/__tests__/nested-visibility.test.ts +0 -325
  101. package/src/execution/__tests__/notifier-flush.test.ts +0 -612
  102. package/src/execution/__tests__/notifier-golden-snapshot.test.ts +0 -261
  103. package/src/execution/__tests__/notify-ledger.test.ts +0 -826
  104. package/src/execution/__tests__/one-shot-upgrade.test.ts +0 -205
  105. package/src/execution/__tests__/output-collector.test.ts +0 -358
  106. package/src/execution/__tests__/parent-child-matrix.test.ts +0 -336
  107. package/src/execution/__tests__/path-encoding.test.ts +0 -104
  108. package/src/execution/__tests__/pi-invocation.test.ts +0 -134
  109. package/src/execution/__tests__/record-store.test.ts +0 -1057
  110. package/src/execution/__tests__/records-cwd-isolation.test.ts +0 -91
  111. package/src/execution/__tests__/recursive-visibility-baseline.test.ts +0 -339
  112. package/src/execution/__tests__/recursive-visibility-env.test.ts +0 -273
  113. package/src/execution/__tests__/relay-agent.test.ts +0 -448
  114. package/src/execution/__tests__/relay-env.test.ts +0 -42
  115. package/src/execution/__tests__/resource-policy.test.ts +0 -109
  116. package/src/execution/__tests__/rpc-mode.test.ts +0 -89
  117. package/src/execution/__tests__/run-and-finalize-chatmode.test.ts +0 -267
  118. package/src/execution/__tests__/run-spawn-chatmode-settled.test.ts +0 -253
  119. package/src/execution/__tests__/run-spawn-edges.test.ts +0 -687
  120. package/src/execution/__tests__/run-spawn-integration.test.ts +0 -933
  121. package/src/execution/__tests__/run-spawn-resume.test.ts +0 -322
  122. package/src/execution/__tests__/run-spawn-rpc-mode.test.ts +0 -196
  123. package/src/execution/__tests__/run-spawn-stdout-callback-throw.test.ts +0 -199
  124. package/src/execution/__tests__/sdk-contract.test.ts +0 -273
  125. package/src/execution/__tests__/session-context-resolver.test.ts +0 -167
  126. package/src/execution/__tests__/session-file-gc.test.ts +0 -293
  127. package/src/execution/__tests__/session-pending.test.ts +0 -197
  128. package/src/execution/__tests__/session-reconstructor.test.ts +0 -379
  129. package/src/execution/__tests__/session-runner-epipe.test.ts +0 -178
  130. package/src/execution/__tests__/session-runner-schema-env.test.ts +0 -350
  131. package/src/execution/__tests__/session-start-reaper.test.ts +0 -233
  132. package/src/execution/__tests__/spawn-args.test.ts +0 -445
  133. package/src/execution/__tests__/spawn-event-adapter-rpc.test.ts +0 -189
  134. package/src/execution/__tests__/spawn-event-adapter.test.ts +0 -167
  135. package/src/execution/__tests__/spawn-worktree-guidance.test.ts +0 -207
  136. package/src/execution/__tests__/spawned-children.test.ts +0 -92
  137. package/src/execution/__tests__/start-sync-model-guard.test.ts +0 -150
  138. package/src/execution/__tests__/startup-config-declaration.test.ts +0 -35
  139. package/src/execution/__tests__/status-refactor.test.ts +0 -345
  140. package/src/execution/__tests__/stdin-writer.test.ts +0 -463
  141. package/src/execution/__tests__/stream-sink-retirement.test.ts +0 -261
  142. package/src/execution/__tests__/subagent-service-abort.test.ts +0 -60
  143. package/src/execution/__tests__/subagent-service-message-close.test.ts +0 -629
  144. package/src/execution/__tests__/subagent-service-parent-guard.test.ts +0 -180
  145. package/src/execution/__tests__/subagent-service.test.ts +0 -788
  146. package/src/execution/__tests__/subprocess-agent-runner-routing.test.ts +0 -310
  147. package/src/execution/__tests__/subprocess-agent-runner.test.ts +0 -599
  148. package/src/execution/__tests__/temp-prompt.test.ts +0 -53
  149. package/src/execution/__tests__/timeout-integration.test.ts +0 -615
  150. package/src/execution/__tests__/tombstone-store.test.ts +0 -73
  151. package/src/execution/__tests__/tool-action.test.ts +0 -476
  152. package/src/execution/__tests__/truncline-snapshot.test.ts +0 -81
  153. package/src/execution/__tests__/turn-limiter-semantics.test.ts +0 -194
  154. package/src/execution/__tests__/turn-limiter.test.ts +0 -65
  155. package/src/execution/__tests__/ui-channels.test.ts +0 -187
  156. package/src/execution/__tests__/ui-interaction-model.test.ts +0 -67
  157. package/src/execution/__tests__/ui-request-handler-factory.test.ts +0 -370
  158. package/src/execution/__tests__/ui-request-handler.test.ts +0 -204
  159. package/src/execution/__tests__/ui-request-observability.test.ts +0 -114
  160. package/src/execution/__tests__/ui-request-queue.test.ts +0 -133
  161. package/src/execution/__tests__/worktree-manager.test.ts +0 -633
  162. package/src/execution/__tests__/worktree-pid-registration.integration.test.ts +0 -229
  163. package/src/execution/__tests__/worktree-reconcile.integration.test.ts +0 -181
  164. package/src/execution/__tests__/worktree-registry.test.ts +0 -199
  165. package/src/execution/agent-registry.ts +0 -199
  166. package/src/execution/agent-result-mapper.ts +0 -90
  167. package/src/execution/alive-store.ts +0 -92
  168. package/src/execution/argv-mirror.ts +0 -113
  169. package/src/execution/best-effort.ts +0 -38
  170. package/src/execution/channel-registry-access.ts +0 -144
  171. package/src/execution/concurrency-pool.ts +0 -116
  172. package/src/execution/config.ts +0 -96
  173. package/src/execution/dialog-queue.ts +0 -330
  174. package/src/execution/engine/__tests__/common/data-dir.test.ts +0 -53
  175. package/src/execution/engine/__tests__/common/errors.test.ts +0 -132
  176. package/src/execution/engine/__tests__/common/event-journal.test.ts +0 -177
  177. package/src/execution/engine/__tests__/common/kill-chain.test.ts +0 -192
  178. package/src/execution/engine/__tests__/common/nesting-guard.test.ts +0 -81
  179. package/src/execution/engine/__tests__/common/persona-router.test.ts +0 -123
  180. package/src/execution/engine/__tests__/common/pool-manager.test.ts +0 -154
  181. package/src/execution/engine/__tests__/common/schema-emulation.test.ts +0 -128
  182. package/src/execution/engine/__tests__/conformance/__fixtures__/pi-golden-events.json +0 -28
  183. package/src/execution/engine/__tests__/conformance/agent-event-invariants.ts +0 -141
  184. package/src/execution/engine/__tests__/conformance/contract.abort.test.ts +0 -109
  185. package/src/execution/engine/__tests__/conformance/contract.agent-events.test.ts +0 -101
  186. package/src/execution/engine/__tests__/conformance/contract.probe.test.ts +0 -77
  187. package/src/execution/engine/__tests__/conformance/contract.read-degradation.test.ts +0 -104
  188. package/src/execution/engine/__tests__/conformance/contract.relay.test.ts +0 -342
  189. package/src/execution/engine/__tests__/conformance/engine-conformance.live.test.ts +0 -201
  190. package/src/execution/engine/__tests__/conformance/golden-replay.pi.test.ts +0 -76
  191. package/src/execution/engine/__tests__/conformance/golden-replay.zcode.test.ts +0 -79
  192. package/src/execution/engine/__tests__/engine-discovery.test.ts +0 -87
  193. package/src/execution/engine/__tests__/engines-declaration.test.ts +0 -36
  194. package/src/execution/engine/__tests__/model-prompt.test.ts +0 -85
  195. package/src/execution/engine/__tests__/paths.test.ts +0 -39
  196. package/src/execution/engine/__tests__/registry.test.ts +0 -120
  197. package/src/execution/engine/__tests__/routing.test.ts +0 -231
  198. package/src/execution/engine/common/data-dir.ts +0 -62
  199. package/src/execution/engine/common/errors.ts +0 -183
  200. package/src/execution/engine/common/event-journal.ts +0 -254
  201. package/src/execution/engine/common/journal-replay.ts +0 -62
  202. package/src/execution/engine/common/kill-chain.ts +0 -221
  203. package/src/execution/engine/common/nesting-guard.ts +0 -50
  204. package/src/execution/engine/common/persona-router.ts +0 -108
  205. package/src/execution/engine/common/pool-manager.ts +0 -226
  206. package/src/execution/engine/common/schema-emulation.ts +0 -189
  207. package/src/execution/engine/common/session-view-projection.ts +0 -51
  208. package/src/execution/engine/engine-discovery.ts +0 -65
  209. package/src/execution/engine/engines/pi/__tests__/pi-engine.test.ts +0 -469
  210. package/src/execution/engine/engines/pi/__tests__/reader.test.ts +0 -155
  211. package/src/execution/engine/engines/pi/__tests__/task-spec-mapper.test.ts +0 -164
  212. package/src/execution/engine/engines/pi/pi-engine.ts +0 -415
  213. package/src/execution/engine/engines/pi/reader.ts +0 -48
  214. package/src/execution/engine/engines/pi/registration.ts +0 -35
  215. package/src/execution/engine/engines/pi/task-spec-mapper.ts +0 -100
  216. package/src/execution/engine/engines/zcode/__tests__/__fixtures__/zcode-golden-spawn.json +0 -39
  217. package/src/execution/engine/engines/zcode/__tests__/launcher.test.ts +0 -150
  218. package/src/execution/engine/engines/zcode/__tests__/parser.test.ts +0 -246
  219. package/src/execution/engine/engines/zcode/__tests__/preparer.test.ts +0 -228
  220. package/src/execution/engine/engines/zcode/__tests__/reader.test.ts +0 -210
  221. package/src/execution/engine/engines/zcode/__tests__/registration.test.ts +0 -64
  222. package/src/execution/engine/engines/zcode/__tests__/zcode-engine.live.test.ts +0 -127
  223. package/src/execution/engine/engines/zcode/__tests__/zcode-engine.test.ts +0 -580
  224. package/src/execution/engine/engines/zcode/constants.ts +0 -43
  225. package/src/execution/engine/engines/zcode/golden-sample.ts +0 -39
  226. package/src/execution/engine/engines/zcode/launcher.ts +0 -161
  227. package/src/execution/engine/engines/zcode/parser.ts +0 -436
  228. package/src/execution/engine/engines/zcode/preparer.ts +0 -363
  229. package/src/execution/engine/engines/zcode/reader.ts +0 -381
  230. package/src/execution/engine/engines/zcode/registration.ts +0 -37
  231. package/src/execution/engine/engines/zcode/zcode-engine.ts +0 -658
  232. package/src/execution/engine/host-task-spec.ts +0 -47
  233. package/src/execution/engine/model-prompt.ts +0 -59
  234. package/src/execution/engine/paths.ts +0 -42
  235. package/src/execution/engine/port.ts +0 -153
  236. package/src/execution/engine/registry.ts +0 -123
  237. package/src/execution/engine/routing.ts +0 -218
  238. package/src/execution/engine/types.ts +0 -309
  239. package/src/execution/execute-options-mapper.ts +0 -112
  240. package/src/execution/execution-record.ts +0 -965
  241. package/src/execution/finalize-record.ts +0 -251
  242. package/src/execution/finalized-marker.ts +0 -51
  243. package/src/execution/get-state-handshake.ts +0 -104
  244. package/src/execution/host-mode.ts +0 -56
  245. package/src/execution/idle-gc.ts +0 -47
  246. package/src/execution/lifecycle-manager.ts +0 -513
  247. package/src/execution/lifecycle-predicates.ts +0 -65
  248. package/src/execution/manifest-store.ts +0 -256
  249. package/src/execution/model-config-service.ts +0 -219
  250. package/src/execution/model-resolver.ts +0 -248
  251. package/src/execution/notifier.ts +0 -330
  252. package/src/execution/notify-ledger.ts +0 -580
  253. package/src/execution/output-collector.ts +0 -228
  254. package/src/execution/path-encoding.ts +0 -60
  255. package/src/execution/pi-invocation.ts +0 -120
  256. package/src/execution/record-entry.ts +0 -132
  257. package/src/execution/record-store.ts +0 -1234
  258. package/src/execution/relay-env.ts +0 -37
  259. package/src/execution/session-context-resolver.ts +0 -64
  260. package/src/execution/session-file-gc.ts +0 -120
  261. package/src/execution/session-pending.ts +0 -164
  262. package/src/execution/session-reconstructor.ts +0 -678
  263. package/src/execution/session-runner.ts +0 -1781
  264. package/src/execution/sessions-index.ts +0 -304
  265. package/src/execution/spawn-event-adapter.ts +0 -363
  266. package/src/execution/stdin-writer.ts +0 -198
  267. package/src/execution/stream-sink.ts +0 -126
  268. package/src/execution/subagent-service.ts +0 -2141
  269. package/src/execution/subprocess-agent-runner.ts +0 -317
  270. package/src/execution/temp-prompt.ts +0 -62
  271. package/src/execution/tombstone-store.ts +0 -72
  272. package/src/execution/turn-limiter.ts +0 -102
  273. package/src/execution/types.ts +0 -973
  274. package/src/execution/ui-channels.ts +0 -216
  275. package/src/execution/ui-interaction-model.ts +0 -48
  276. package/src/execution/ui-request-handler-factory.ts +0 -212
  277. package/src/execution/ui-request-observability.ts +0 -81
  278. package/src/execution/ui-request-queue.ts +0 -184
  279. package/src/execution/worktree-manager.ts +0 -688
  280. package/src/execution/worktree-registry.ts +0 -222
  281. package/src/orchestration/__tests__/__fixtures__/worker-template.snapshot.txt +0 -349
  282. package/src/orchestration/__tests__/agent-call-catch-fallback.test.ts +0 -202
  283. package/src/orchestration/__tests__/agent-call-stream.test.ts +0 -152
  284. package/src/orchestration/__tests__/args-validator.test.ts +0 -143
  285. package/src/orchestration/__tests__/config-loader.test.ts +0 -503
  286. package/src/orchestration/__tests__/error-recovery-handlers.test.ts +0 -809
  287. package/src/orchestration/__tests__/error-recovery-postmessage-defense.test.ts +0 -405
  288. package/src/orchestration/__tests__/error-recovery-serialize-failed-result.test.ts +0 -56
  289. package/src/orchestration/__tests__/error-recovery-workflow-call.test.ts +0 -166
  290. package/src/orchestration/__tests__/execute-agent-call.test.ts +0 -451
  291. package/src/orchestration/__tests__/jsonl-run-store-corrupt-entry.test.ts +0 -150
  292. package/src/orchestration/__tests__/jsonl-run-store-loadall-sources.test.ts +0 -171
  293. package/src/orchestration/__tests__/jsonl-run-store-retention.test.ts +0 -202
  294. package/src/orchestration/__tests__/jsonl-run-store-session-file.test.ts +0 -1030
  295. package/src/orchestration/__tests__/launcher-nested-workflow.test.ts +0 -600
  296. package/src/orchestration/__tests__/lifecycle-runid-injection.test.ts +0 -96
  297. package/src/orchestration/__tests__/lifecycle.test.ts +0 -659
  298. package/src/orchestration/__tests__/non-cloneable-return-e2e.test.ts +0 -95
  299. package/src/orchestration/__tests__/review-fix-loop-e2e.test.ts +0 -2025
  300. package/src/orchestration/__tests__/script-lint.test.ts +0 -831
  301. package/src/orchestration/__tests__/skill-discovery.test.ts +0 -201
  302. package/src/orchestration/__tests__/test-mocks.ts +0 -197
  303. package/src/orchestration/__tests__/worker-exit-without-result.test.ts +0 -368
  304. package/src/orchestration/__tests__/worker-host.test.ts +0 -120
  305. package/src/orchestration/__tests__/worker-returnmeta-passthrough.test.ts +0 -164
  306. package/src/orchestration/__tests__/worker-script-builder-runtime.test.ts +0 -563
  307. package/src/orchestration/__tests__/worker-script-builder.test.ts +0 -309
  308. package/src/orchestration/__tests__/worker-script-template-snapshot.test.ts +0 -129
  309. package/src/orchestration/__tests__/workflow-nesting-e2e.test.ts +0 -317
  310. package/src/orchestration/__tests__/workflow-script-lint-memo.test.ts +0 -110
  311. package/src/orchestration/__tests__/workflows-e2e.test.ts +0 -537
  312. package/src/orchestration/agent-opts-resolver.ts +0 -174
  313. package/src/orchestration/args-validator.ts +0 -127
  314. package/src/orchestration/config-loader.ts +0 -315
  315. package/src/orchestration/error-recovery.ts +0 -1018
  316. package/src/orchestration/execute-agent-call.ts +0 -256
  317. package/src/orchestration/launcher.ts +0 -455
  318. package/src/orchestration/lifecycle.ts +0 -399
  319. package/src/orchestration/models/__tests__/budget.test.ts +0 -307
  320. package/src/orchestration/models/__tests__/trace.test.ts +0 -408
  321. package/src/orchestration/models/agent-call.ts +0 -83
  322. package/src/orchestration/models/budget.ts +0 -118
  323. package/src/orchestration/models/ports.ts +0 -164
  324. package/src/orchestration/models/run-runtime.ts +0 -104
  325. package/src/orchestration/models/run-spec.ts +0 -83
  326. package/src/orchestration/models/run-state.ts +0 -44
  327. package/src/orchestration/models/trace.ts +0 -183
  328. package/src/orchestration/models/types.ts +0 -301
  329. package/src/orchestration/models/workflow-run.ts +0 -254
  330. package/src/orchestration/models/workflow-script-registry.ts +0 -35
  331. package/src/orchestration/models/workflow-script.ts +0 -117
  332. package/src/orchestration/script-lint.ts +0 -766
  333. package/src/orchestration/skill-discovery.ts +0 -115
  334. package/src/orchestration/worker-handle.ts +0 -115
  335. package/src/orchestration/worker-host.ts +0 -98
  336. package/src/orchestration/worker-script-builder.ts +0 -421
  337. package/src/orchestration/workflow-files.ts +0 -85
  338. package/src/orchestration/workflow-script-registry-impl.ts +0 -133
  339. package/src/shared/__tests__/agent-ref.test.ts +0 -34
  340. package/src/shared/__tests__/meta-parser.test.ts +0 -304
  341. package/src/shared/__tests__/model-ref.test.ts +0 -306
  342. package/src/shared/__tests__/resource-discovery-manifest-cache.test.ts +0 -280
  343. package/src/shared/__tests__/resource-discovery.test.ts +0 -736
  344. package/src/shared/__tests__/resource-meta.test.ts +0 -51
  345. package/src/shared/__tests__/schema-jsonify.test.ts +0 -81
  346. package/src/shared/__tests__/timer-delay.test.ts +0 -61
  347. package/src/shared/agent-event.ts +0 -13
  348. package/src/shared/agent-ref.ts +0 -57
  349. package/src/shared/meta-parser.ts +0 -261
  350. package/src/shared/model-ref.ts +0 -286
  351. package/src/shared/resource-discovery.ts +0 -811
  352. package/src/shared/resource-meta.ts +0 -65
  353. package/src/shared/schema-env.ts +0 -44
  354. package/src/shared/schema-jsonify.ts +0 -58
  355. package/src/shared/timer-delay.ts +0 -54
  356. package/src/shared/xml-injection.ts +0 -35
  357. package/workflows/README.md +0 -81
  358. package/workflows/_shared/agent-refs.cjs +0 -40
  359. package/workflows/chain.js +0 -131
  360. package/workflows/map-reduce.js +0 -174
  361. package/workflows/parallel.js +0 -148
  362. package/workflows/review-fix-loop-utils.cjs +0 -1309
  363. package/workflows/review-fix-loop.js +0 -1404
  364. package/workflows/scatter-gather.js +0 -178
@@ -1,37 +0,0 @@
1
- /**
2
- * subagent relay 通道 env 名与协议常量 SSOT(docs/architecture/subagent-realtime-channel.md §5.1/§5.2/§3.1)。
3
- *
4
- * 为什么独立成模块:三方消费同一份常量——extension 侧(pi-invocation 激活判定 /
5
- * buildChildEnv 归属写入)、runtime 侧(env 注入与镜像校验)、代理脚本 relay.mjs
6
- * (零依赖脚本不能 import workspace 包,只能内嵌镜像,镜像一致性由 conformance
7
- * relay 变体断言锁定)。禁各处手写字符串。
8
- *
9
- * env 语义:SOCKET/NODE/SCRIPT 三者同时非空 = relay 激活(全有或全无,无中间态);
10
- * SESSION_ID/RECORD_ID 是 tee 帧归属键(缺失由代理握手前自检拒绝,退出码 13)。
11
- */
12
-
13
- export const RELAY_ENV_SOCKET = 'XYZ_SUBAGENT_RELAY_SOCKET';
14
- export const RELAY_ENV_NODE = 'XYZ_SUBAGENT_RELAY_NODE';
15
- export const RELAY_ENV_SCRIPT = 'XYZ_SUBAGENT_RELAY_SCRIPT';
16
- export const RELAY_ENV_SESSION_ID = 'XYZ_SUBAGENT_RELAY_SESSION_ID';
17
- export const RELAY_ENV_RECORD_ID = 'XYZ_SUBAGENT_RELAY_RECORD_ID';
18
-
19
- /** relay 协议版本(握手帧 v 字段;runtime 与代理同包分发,不匹配=安装损坏)。 */
20
- export const RELAY_PROTOCOL_VERSION = 1;
21
-
22
- /** 代理专用退出码(extension 侧表现为「子进程非零退出」→ engine_run_failed 语义)。 */
23
- export const RELAY_EXIT_CODES = {
24
- /** 握手被拒:协议版本不匹配(安装损坏,重装应用)。 */
25
- VERSION_MISMATCH: 10,
26
- /** relay socket 不可达(runtime 未运行或已重启)。 */
27
- SOCKET_UNREACHABLE: 11,
28
- /** socket 中途断开(runtime 崩溃等)——代理生命线断即退。 */
29
- SOCKET_CLOSED: 12,
30
- /** 归属 env(SESSION_ID/RECORD_ID)缺失——防无归属帧污染广播。 */
31
- MISSING_IDENTITY: 13,
32
- } as const;
33
-
34
- /** 激活判定:三 env 同时非空才走 relay,任一缺失回落直连 spawn 真实 pi(TUI/独立 pi 零回归)。 */
35
- export function isRelayActive(env: NodeJS.ProcessEnv | Record<string, string | undefined>): boolean {
36
- return Boolean(env[RELAY_ENV_SOCKET] && env[RELAY_ENV_NODE] && env[RELAY_ENV_SCRIPT]);
37
- }
@@ -1,64 +0,0 @@
1
- // src/core/session-context-resolver.ts
2
- //
3
- // resolveSessionContext 纯函数——解析 fork/worktree 意图,返回执行上下文。
4
- // D-014: 零副作用,零 Pi import。只返回意图,不调 forkFrom/不创建 sessionDir。
5
-
6
- import type { ResolvedSessionContext, SessionResolveInput } from "./types.ts";
7
- import { ForkDepthExceededError } from "./types.ts";
8
- import { getSubagentSessionDir } from "./path-encoding.ts";
9
-
10
- /**
11
- * fork 深度硬限。export 供 session-runner 注入 LLM env block 时引用同一常量,
12
- * 避免硬限(拦截)与展示(`N/10`)两处 10 漂移。
13
- *
14
- * 双层护栏(互补,共享本常量):
15
- * 1. resolveSessionContext 的 fork 护栏(parentForkDepth >= MAX_FORK_DEPTH → 拒):
16
- * 只计 fork 链(fork=true 才递增 parentForkDepth),控 session 体积(每层 createBranchedSession)。
17
- * 2. SubagentService.execute 入口的通用嵌套护栏(nestingDepth > MAX_FORK_DEPTH → 拒):
18
- * 经 execCtxAls 计所有 subagent 嵌套(fork + 非 fork),更严——混合链
19
- * (fork→非fork→fork)下 nestingDepth >= parentForkDepth,通用护栏先生效。
20
- * 两者均允许深度 0..MAX_FORK_DEPTH(共 MAX+1 层),第 MAX+1 层(深度=MAX+1)被拒。
21
- */
22
- export const MAX_FORK_DEPTH = 10;
23
-
24
- /**
25
- * 纯函数:解析 fork/worktree 意图 → 执行上下文。
26
- *
27
- * 只返回意图(shouldFork/forkSource/effectiveCwd/sessionDir),
28
- * 不调 forkFrom / 不创建 sessionDir / 不 git worktree add。
29
- *
30
- * @throws {ForkDepthExceededError} fork=true 且 parentForkDepth >= 10
31
- */
32
- export function resolveSessionContext(input: SessionResolveInput): ResolvedSessionContext {
33
- const { fork, cwd, mainCwd, mainSessionFile, parentForkDepth, agentDir, worktreePath } =
34
- input;
35
-
36
- // fork 深度检查(D-007)
37
- if (fork && (parentForkDepth ?? 0) >= MAX_FORK_DEPTH) {
38
- throw new ForkDepthExceededError(
39
- `fork depth ${parentForkDepth ?? 0} >= ${MAX_FORK_DEPTH}, refusing to fork`,
40
- );
41
- }
42
-
43
- const shouldFork = fork === true;
44
- const forkSource = shouldFork ? mainSessionFile : undefined;
45
-
46
- // [MF#5] fork 显式请求但主 session 文件不可用(session_start 未缓存)时直接抛错,
47
- // 不静默降级到 from-scratch——否则用户显式 fork 却得到无继承 session,且无任何告警。
48
- if (shouldFork && !forkSource) {
49
- throw new Error(
50
- "fork requested but main session file is unavailable " +
51
- "(session_start did not cache it); cannot fork without a source session",
52
- );
53
- }
54
-
55
- // effectiveCwd: worktree 模式用 handle.path(真实 checkout,由调用方传入),
56
- // 否则用显式 cwd 或 mainCwd。worktreePath 与 worktree 标志同源(都来自 WorktreeHandle),
57
- // 不再靠 tmpdir 拼凑,保证 effectiveCwd 与实际 checkout 严格一致。
58
- const effectiveCwd = worktreePath ?? (cwd ?? mainCwd);
59
-
60
- // sessionDir 用 mainCwd 编码(D-004: 同一主 cwd 下所有 subagent 存同一目录)
61
- const sessionDir = getSubagentSessionDir(agentDir, mainCwd);
62
-
63
- return { shouldFork, forkSource, effectiveCwd, sessionDir };
64
- }
@@ -1,120 +0,0 @@
1
- // src/runtime/session-file-gc.ts
2
- //
3
- // 概率性清理过期 subagent session 文件(TTL 30 天)。
4
- // session_start 时调用,best-effort(失败不影响启动)。
5
-
6
- import * as fs from "node:fs";
7
- import * as path from "node:path";
8
-
9
- import { isProcessAlive, readAliveMarker } from "./alive-store.ts";
10
-
11
- /** 30 天 TTL(毫秒)。 */
12
- const TTL_DAYS = 30;
13
- const HOURS_PER_DAY = 24;
14
- const MINUTES_PER_HOUR = 60;
15
- const SECONDS_PER_MINUTE = 60;
16
- const MS_PER_SECOND = 1000;
17
- const TTL_MS = TTL_DAYS * HOURS_PER_DAY * MINUTES_PER_HOUR * SECONDS_PER_MINUTE * MS_PER_SECOND;
18
-
19
- /** 触发概率(1/20 = 5%,避免每次 session_start 都全扫)。 */
20
- const CLEANUP_PROBABILITY_DIVISOR = 20;
21
- const CLEANUP_PROBABILITY = 1 / CLEANUP_PROBABILITY_DIVISOR;
22
-
23
- /** subagent session 文件目录(相对 agentDir)。 */
24
- const SUBAGENTS_DIR = "subagents";
25
-
26
- /**
27
- * 概率性清理过期 session 文件。best-effort——任何异常不外抛。
28
- *
29
- * 1. 概率性触发(CLEANUP_PROBABILITY)
30
- * 2. 递归扫描 <agentDir>/subagents 下所有 .jsonl 文件
31
- * 3. mtime 超 TTL → unlink
32
- */
33
- export function maybeCleanupExpiredSessionFiles(agentDir: string, cwd: string): void {
34
- void cwd;
35
- try {
36
- if (Math.random() >= CLEANUP_PROBABILITY) return;
37
- const dir = path.join(agentDir, SUBAGENTS_DIR);
38
- if (!fs.existsSync(dir)) return;
39
- const now = Date.now();
40
- walkAndClean(dir, now);
41
- } catch (_e) {
42
- // best-effort:任何异常不阻断 session_start
43
- void _e;
44
- }
45
- }
46
-
47
- /** 递归扫描目录,unlink 超 TTL 的 .jsonl 文件及其 .cancelled sidecar。
48
- * [F2] 进入名为 records 的子目录时,额外清理超 TTL 的 manifest .json(跳过 .tmp.——
49
- * recoverTmpFiles 同步处理)。allowManifestJson 仅由父调用按目录名开启,其他位置
50
- * (如 subagents/worktrees.json)不匹配 .json,避免误删 worktree reaper 状态文件。 */
51
- function walkAndClean(dir: string, now: number, allowManifestJson = false): void {
52
- let entries: fs.Dirent[];
53
- try {
54
- entries = fs.readdirSync(dir, { withFileTypes: true });
55
- } catch (_e) {
56
- void _e;
57
- return;
58
- }
59
- for (const entry of entries) {
60
- const full = path.join(dir, entry.name);
61
- if (entry.isDirectory()) {
62
- // 只在进入名为 records 的子目录时打开 manifest .json 清理。
63
- // records 在 <enc>/records/ 下递归自动覆盖;其他位置(如 subagents/worktrees.json)
64
- // 不能匹配 .json——否则会误删 worktree reaper 依赖的状态文件。
65
- walkAndClean(full, now, entry.name === "records");
66
- } else if (
67
- allowManifestJson &&
68
- entry.name.endsWith(".json") &&
69
- // 跳过 .tmp.:recoverTmpFiles(session_start)同步处理 tmp,GC 不重复。
70
- // 不校验内容——30 天 mtime 已是强 orphan 信号,扩展名 + 文件名足够。
71
- !entry.name.includes(".tmp.")
72
- ) {
73
- try {
74
- const stat = fs.statSync(full);
75
- if (now - stat.mtimeMs > TTL_MS) {
76
- fs.unlinkSync(full);
77
- }
78
- } catch (_e) {
79
- // 文件可能已被删除,忽略
80
- void _e;
81
- }
82
- } else if (entry.name.endsWith(".jsonl")) {
83
- try {
84
- const stat = fs.statSync(full);
85
- if (now - stat.mtimeMs > TTL_MS) {
86
- // .alive 探活:活进程的 session 不删(D-024 安全网)。
87
- const aliveMarker = readAliveMarker(full);
88
- if (aliveMarker !== undefined && isProcessAlive(aliveMarker.pid)) {
89
- continue; // 活进程 → 跳过,不清理
90
- }
91
- fs.unlinkSync(full);
92
- // 同名 sidecar 一起清理。
93
- for (const ext of [".cancelled", ".finalized", ".alive"]) {
94
- try { fs.unlinkSync(`${full}${ext}`); } catch (_e) { void _e; /* sidecar 可能不存在 */ }
95
- }
96
- }
97
- } catch (_e) {
98
- // 文件可能已被删除,忽略
99
- void _e;
100
- }
101
- } else if (
102
- entry.name.endsWith(".cancelled") ||
103
- entry.name.endsWith(".finalized") ||
104
- entry.name.endsWith(".alive") ||
105
- // [MF#2] patch 回传(<branch>.patch)按 branch 命名,与 .jsonl basename 无关联,
106
- // 删除 .jsonl 时无法同删;作为孤儿按 TTL 清理,避免永久堆积。
107
- entry.name.endsWith(".patch")
108
- ) {
109
- // 孤儿 sidecar(兄弟 .jsonl 已被外部删除):按同 TTL 清理。
110
- try {
111
- const stat = fs.statSync(full);
112
- if (now - stat.mtimeMs > TTL_MS) {
113
- fs.unlinkSync(full);
114
- }
115
- } catch (_e) {
116
- void _e;
117
- }
118
- }
119
- }
120
- }
@@ -1,164 +0,0 @@
1
- // src/execution/session-pending.ts
2
- //
3
- // agent_end 后代判定:读子进程的 session 文件,用 pending-notifications 的
4
- // countActiveFromEntries(register − unregister 差集)判断该 subagent 是否还有
5
- // 活跃后代(background subagent / workflow)。
6
- //
7
- // 背景(v4 递归编排):层主 planning-agent 派子 subagent 后结束 turn 等待被唤醒。
8
- // 若 runSpawn 在 agent_end 无条件 kill,进程被回收、steer 唤醒送不到,递归树断。
9
- // 判定依据:子进程的 session 文件里 pending:register entry(其进程内 appendEntry
10
- // 同步写盘,见 pi SessionManager._persist)减去 pending:unregister 的差集。
11
- // fork 继承的主 session register 残留由 pending-notifications 的 session_start
12
- // 重建流程补 unregister(expired) 抵消,纯差集不受污染。
13
- //
14
- // 纯函数 + fs,独立于 runSpawn,可单测。
15
-
16
- import * as fs from "node:fs";
17
-
18
- import { countActiveFromEntries } from "@zhushanwen/pi-pending-notifications";
19
- import { getLogger } from "@zhushanwen/pi-extension-logger";
20
-
21
- const logger = getLogger("subagents");
22
-
23
- /** 后代刚完成(unregister)后,notify 唤醒父 agent 可能仍在路上(triggerTurn 的
24
- * steer/followUp 经 sendMessage → agent 队列排空(agent-session.js:1081-1087),
25
- * 不经 EventBus——EventBus 只用于扩展间 pi.events;与主进程处理 agent_end 行存在
26
- * 毫秒级竞态——explorer 3 秒完成时实测 unregister 先于 agent_end 判定写入,导致
27
- * 差集 0 误判完成)。此窗口内的 agent_end 不 kill,等父被唤醒后的下一次 agent_end 再判。 */
28
- const RECENT_UNREGISTER_WINDOW_MS = 60_000;
29
-
30
- /** 判定结果:count > 0 = 有活跃后代(应保持进程等唤醒)。 */
31
- export interface ActivePendingResult {
32
- count: number;
33
- /** 最近窗口内(60s)有 pending:unregister——后代刚完成,唤醒通知可能在路上。 */
34
- recentUnregister: boolean;
35
- /** 读取/解析失败的原因(undefined = 成功)。调用方对 error 采取保守策略(不 kill)。 */
36
- error?: string;
37
- }
38
-
39
- /**
40
- * [perf] per-file 增量游标:session 文件 append-only,同文件重复判定(层主被多个
41
- * 后代唤醒 N 次 → N 次 agent_end)只需读上次 offset 之后的新增行,累计 entries
42
- * 差集语义与全量读完全一致。fork 继承的大 session(数十 MB)从「每次整读」降为
43
- * 「首读全量 + 后续增量」。
44
- * truncate/重建防御:size < offset → 重置全读。EOF 半行(写入竞态)不入账,
45
- * offset 只推进到完整行边界,下次补读。
46
- * 内存量级:每 sessionFile 一条(offset + 后代 entries,均有限);测试隔离用
47
- * clearPendingCursors()。
48
- */
49
- interface PendingReadCursor {
50
- offset: number;
51
- entries: unknown[];
52
- latestUnregisterMs: number;
53
- }
54
-
55
- const cursors = new Map<string, PendingReadCursor>();
56
-
57
- /** 清空增量游标缓存(测试隔离用)。 */
58
- export function clearPendingCursors(): void {
59
- cursors.clear();
60
- }
61
-
62
- /** [taste/no-unsafe-cast] pending 行的最小结构守卫:非 null object 即可(字段访问
63
- * 侧均做了 undefined 检查,全可选类型断言无校验意义,改守卫带运行时检查)。 */
64
- function isPendingLineLike(v: unknown): v is { customType?: string; timestamp?: string } {
65
- return typeof v === "object" && v !== null;
66
- }
67
-
68
- /**
69
- * 读 session 文件计算活跃 pending 数(增量读,见 PendingReadCursor)。
70
- *
71
- * 快速路径:行内含 pending 值(`"pending:register"` / `"pending:unregister"`)才解析,
72
- * 大量 message 行只付 includes 扫描跳过 JSON.parse。
73
- * [S-4] 按值匹配而非 `"customType":"pending:` 序列化格式——后者耦合 pi 的 JSON 序列化
74
- * 空格习惯(冒号后无空格),pi 改 pretty-print 会导致全过滤 → count=0 → keep-alive
75
- * 静默失效 → recursive tree 被杀、steer 丢失。值字符串本身不受序列化空格影响。
76
- *
77
- * 文件不存在(sessionFile 未回填/首次 assistant 前)→ error(调用方保守不 kill)。
78
- * 坏行跳过(append 中途崩溃的截断行)。
79
- */
80
- export function readActivePendingFromSessionFile(
81
- sessionFile: string | undefined,
82
- ): ActivePendingResult {
83
- if (!sessionFile) {
84
- return { count: 0, recentUnregister: false, error: "no sessionFile (handshake not settled)" };
85
- }
86
-
87
- let size: number;
88
- try {
89
- size = fs.statSync(sessionFile).size;
90
- } catch (err) {
91
- return {
92
- count: 0,
93
- recentUnregister: false,
94
- error: `session file unreadable: ${err instanceof Error ? err.message : String(err)}`,
95
- };
96
- }
97
-
98
- let cursor = cursors.get(sessionFile);
99
- if (cursor === undefined || size < cursor.offset) {
100
- // 首次(全量)或文件被 truncate/重建(offset 越界)→ 重置从头读
101
- cursor = { offset: 0, entries: [], latestUnregisterMs: 0 };
102
- }
103
-
104
- let chunk: string;
105
- try {
106
- if (cursor.offset === 0) {
107
- chunk = fs.readFileSync(sessionFile, "utf-8");
108
- } else {
109
- const fd = fs.openSync(sessionFile, "r");
110
- try {
111
- const len = size - cursor.offset;
112
- const buf = Buffer.alloc(len);
113
- let total = 0;
114
- while (total < len) {
115
- const n = fs.readSync(fd, buf, total, len - total, cursor.offset + total);
116
- if (n <= 0) break;
117
- total += n;
118
- }
119
- chunk = buf.toString("utf-8", 0, total);
120
- } finally {
121
- fs.closeSync(fd);
122
- }
123
- }
124
- } catch (err) {
125
- return {
126
- count: 0,
127
- recentUnregister: false,
128
- error: `session file unreadable: ${err instanceof Error ? err.message : String(err)}`,
129
- };
130
- }
131
-
132
- // 只消费到最后一个完整行:EOF 半行(append 写入竞态)不入账,offset 不推进,
133
- // 下次从该行起点重读(补全后正常入账)。
134
- const lastNl = chunk.lastIndexOf("\n");
135
- const complete = lastNl === -1 ? "" : chunk.slice(0, lastNl);
136
- cursor.offset += Buffer.byteLength(complete, "utf-8");
137
- cursors.set(sessionFile, cursor);
138
-
139
- for (const line of complete.split("\n")) {
140
- // [S-4] 按值匹配:countActiveFromEntries 只消费 register/unregister 两种 customType,
141
- // 故只需检测这两个值字符串;冒号前后空格变化不影响(值始终是连续子串)。
142
- if (!line.includes('"pending:register"') && !line.includes('"pending:unregister"')) continue;
143
- try {
144
- const entry: unknown = JSON.parse(line);
145
- if (!isPendingLineLike(entry)) continue;
146
- cursor.entries.push(entry);
147
- if (entry.customType === "pending:unregister" && entry.timestamp) {
148
- const ts = Date.parse(entry.timestamp);
149
- if (Number.isFinite(ts) && ts > cursor.latestUnregisterMs) cursor.latestUnregisterMs = ts;
150
- }
151
- } catch {
152
- // 截断行/坏行跳过——不影响其余 entry 的差集判定(罕见:append 中途崩溃)
153
- logger.debug("skipped malformed pending line", { sessionFile });
154
- }
155
- }
156
-
157
- const active = countActiveFromEntries(cursor.entries);
158
- return {
159
- count: active.count,
160
- recentUnregister:
161
- cursor.latestUnregisterMs > 0 &&
162
- Date.now() - cursor.latestUnregisterMs < RECENT_UNREGISTER_WINDOW_MS,
163
- };
164
- }