@openclaw/lobster 2026.7.1-beta.2 → 2026.7.1-beta.5

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 (418) hide show
  1. package/dist/index.js +18 -23
  2. package/node_modules/@clawdbot/lobster/README.md +10 -0
  3. package/node_modules/@clawdbot/lobster/dist/src/cli.js +23 -7
  4. package/node_modules/@clawdbot/lobster/dist/src/cli.js.map +1 -1
  5. package/node_modules/@clawdbot/lobster/dist/src/commands/stdlib/ask.js +28 -5
  6. package/node_modules/@clawdbot/lobster/dist/src/commands/stdlib/ask.js.map +1 -1
  7. package/node_modules/@clawdbot/lobster/dist/src/commands/stdlib/llm_invoke.js +20 -5
  8. package/node_modules/@clawdbot/lobster/dist/src/commands/stdlib/llm_invoke.js.map +1 -1
  9. package/node_modules/@clawdbot/lobster/dist/src/commands/stdlib/state.js +3 -3
  10. package/node_modules/@clawdbot/lobster/dist/src/commands/stdlib/state.js.map +1 -1
  11. package/node_modules/@clawdbot/lobster/dist/src/core/cost_tracker.js +52 -6
  12. package/node_modules/@clawdbot/lobster/dist/src/core/cost_tracker.js.map +1 -1
  13. package/node_modules/@clawdbot/lobster/dist/src/core/retry.js +7 -3
  14. package/node_modules/@clawdbot/lobster/dist/src/core/retry.js.map +1 -1
  15. package/node_modules/@clawdbot/lobster/dist/src/core/tool_runtime.js +17 -8
  16. package/node_modules/@clawdbot/lobster/dist/src/core/tool_runtime.js.map +1 -1
  17. package/node_modules/@clawdbot/lobster/dist/src/input_request.js +430 -0
  18. package/node_modules/@clawdbot/lobster/dist/src/input_request.js.map +1 -0
  19. package/node_modules/@clawdbot/lobster/dist/src/pipeline_resume_state.js +50 -4
  20. package/node_modules/@clawdbot/lobster/dist/src/pipeline_resume_state.js.map +1 -1
  21. package/node_modules/@clawdbot/lobster/dist/src/runtime.js +160 -10
  22. package/node_modules/@clawdbot/lobster/dist/src/runtime.js.map +1 -1
  23. package/node_modules/@clawdbot/lobster/dist/src/sdk/Lobster.js +105 -12
  24. package/node_modules/@clawdbot/lobster/dist/src/sdk/Lobster.js.map +1 -1
  25. package/node_modules/@clawdbot/lobster/dist/src/sdk/primitives/diff.js +7 -6
  26. package/node_modules/@clawdbot/lobster/dist/src/sdk/primitives/diff.js.map +1 -1
  27. package/node_modules/@clawdbot/lobster/dist/src/sdk/primitives/state.js +43 -2
  28. package/node_modules/@clawdbot/lobster/dist/src/sdk/primitives/state.js.map +1 -1
  29. package/node_modules/@clawdbot/lobster/dist/src/sdk/runtime.js +82 -90
  30. package/node_modules/@clawdbot/lobster/dist/src/sdk/runtime.js.map +1 -1
  31. package/node_modules/@clawdbot/lobster/dist/src/state/store.js +166 -8
  32. package/node_modules/@clawdbot/lobster/dist/src/state/store.js.map +1 -1
  33. package/node_modules/@clawdbot/lobster/dist/src/workflows/file.js +216 -28
  34. package/node_modules/@clawdbot/lobster/dist/src/workflows/file.js.map +1 -1
  35. package/node_modules/@clawdbot/lobster/dist/test/approval_id.test.js +13 -0
  36. package/node_modules/@clawdbot/lobster/dist/test/approval_id.test.js.map +1 -1
  37. package/node_modules/@clawdbot/lobster/dist/test/cost_tracker.test.js +108 -3
  38. package/node_modules/@clawdbot/lobster/dist/test/cost_tracker.test.js.map +1 -1
  39. package/node_modules/@clawdbot/lobster/dist/test/for_each.test.js +17 -0
  40. package/node_modules/@clawdbot/lobster/dist/test/for_each.test.js.map +1 -1
  41. package/node_modules/@clawdbot/lobster/dist/test/llm_task_invoke.test.js +70 -1
  42. package/node_modules/@clawdbot/lobster/dist/test/llm_task_invoke.test.js.map +1 -1
  43. package/node_modules/@clawdbot/lobster/dist/test/parallel.test.js +13 -0
  44. package/node_modules/@clawdbot/lobster/dist/test/parallel.test.js.map +1 -1
  45. package/node_modules/@clawdbot/lobster/dist/test/request_input.test.js +946 -0
  46. package/node_modules/@clawdbot/lobster/dist/test/request_input.test.js.map +1 -0
  47. package/node_modules/@clawdbot/lobster/dist/test/sdk_lobster.test.js +118 -0
  48. package/node_modules/@clawdbot/lobster/dist/test/sdk_lobster.test.js.map +1 -1
  49. package/node_modules/@clawdbot/lobster/dist/test/state.test.js +268 -1
  50. package/node_modules/@clawdbot/lobster/dist/test/state.test.js.map +1 -1
  51. package/node_modules/@clawdbot/lobster/dist/test/step_retry.test.js +46 -2
  52. package/node_modules/@clawdbot/lobster/dist/test/step_retry.test.js.map +1 -1
  53. package/node_modules/@clawdbot/lobster/dist/test/workflow_file.test.js +503 -0
  54. package/node_modules/@clawdbot/lobster/dist/test/workflow_file.test.js.map +1 -1
  55. package/node_modules/@clawdbot/lobster/package.json +15 -9
  56. package/node_modules/typebox/build/compile/validator.d.mts +2 -7
  57. package/node_modules/typebox/build/compile/validator.mjs +6 -36
  58. package/node_modules/typebox/build/error/errors.d.mts +1 -7
  59. package/node_modules/typebox/build/format/_idna.mjs +36 -6
  60. package/node_modules/typebox/build/format/_puny.mjs +4 -1
  61. package/node_modules/typebox/build/format/uuid.d.mts +2 -2
  62. package/node_modules/typebox/build/format/uuid.mjs +3 -3
  63. package/node_modules/typebox/build/guard/emit.d.mts +0 -4
  64. package/node_modules/typebox/build/guard/emit.mjs +0 -8
  65. package/node_modules/typebox/build/guard/guard.d.mts +4 -8
  66. package/node_modules/typebox/build/guard/guard.mjs +5 -13
  67. package/node_modules/typebox/build/schema/engine/boolean.d.mts +3 -3
  68. package/node_modules/typebox/build/schema/engine/boolean.mjs +4 -4
  69. package/node_modules/typebox/build/schema/engine/index.d.mts +0 -1
  70. package/node_modules/typebox/build/schema/engine/index.mjs +0 -1
  71. package/node_modules/typebox/build/schema/engine/schema.mjs +5 -10
  72. package/node_modules/typebox/build/schema/engine/type.mjs +14 -18
  73. package/node_modules/typebox/build/schema/types/dependencies.mjs +1 -1
  74. package/node_modules/typebox/build/schema/types/index.d.mts +0 -1
  75. package/node_modules/typebox/build/schema/types/index.mjs +0 -1
  76. package/node_modules/typebox/build/schema/types/schema.d.mts +1 -1
  77. package/node_modules/typebox/build/schema/types/schema.mjs +2 -2
  78. package/node_modules/typebox/build/system/locale/ar_001.mjs +0 -1
  79. package/node_modules/typebox/build/system/locale/bn_BD.mjs +0 -1
  80. package/node_modules/typebox/build/system/locale/cs_CZ.mjs +0 -1
  81. package/node_modules/typebox/build/system/locale/de_DE.mjs +0 -1
  82. package/node_modules/typebox/build/system/locale/el_GR.mjs +0 -1
  83. package/node_modules/typebox/build/system/locale/en_US.mjs +0 -1
  84. package/node_modules/typebox/build/system/locale/es_419.mjs +0 -1
  85. package/node_modules/typebox/build/system/locale/es_AR.mjs +0 -1
  86. package/node_modules/typebox/build/system/locale/es_ES.mjs +0 -1
  87. package/node_modules/typebox/build/system/locale/es_MX.mjs +0 -1
  88. package/node_modules/typebox/build/system/locale/fa_IR.mjs +0 -1
  89. package/node_modules/typebox/build/system/locale/fil_PH.mjs +0 -1
  90. package/node_modules/typebox/build/system/locale/fr_CA.mjs +0 -1
  91. package/node_modules/typebox/build/system/locale/fr_FR.mjs +0 -1
  92. package/node_modules/typebox/build/system/locale/ha_NG.mjs +0 -1
  93. package/node_modules/typebox/build/system/locale/hi_IN.mjs +0 -1
  94. package/node_modules/typebox/build/system/locale/hu_HU.mjs +0 -1
  95. package/node_modules/typebox/build/system/locale/id_ID.mjs +0 -1
  96. package/node_modules/typebox/build/system/locale/it_IT.mjs +0 -1
  97. package/node_modules/typebox/build/system/locale/ja_JP.mjs +0 -1
  98. package/node_modules/typebox/build/system/locale/ko_KR.mjs +0 -1
  99. package/node_modules/typebox/build/system/locale/ms_MY.mjs +0 -1
  100. package/node_modules/typebox/build/system/locale/nl_NL.mjs +0 -1
  101. package/node_modules/typebox/build/system/locale/pl_PL.mjs +0 -1
  102. package/node_modules/typebox/build/system/locale/pt_BR.mjs +0 -1
  103. package/node_modules/typebox/build/system/locale/pt_PT.mjs +0 -1
  104. package/node_modules/typebox/build/system/locale/ro_RO.mjs +0 -1
  105. package/node_modules/typebox/build/system/locale/ru_RU.mjs +0 -1
  106. package/node_modules/typebox/build/system/locale/sv_SE.mjs +0 -1
  107. package/node_modules/typebox/build/system/locale/sw_TZ.mjs +0 -1
  108. package/node_modules/typebox/build/system/locale/th_TH.mjs +0 -1
  109. package/node_modules/typebox/build/system/locale/tr_TR.mjs +0 -1
  110. package/node_modules/typebox/build/system/locale/uk_UA.mjs +0 -1
  111. package/node_modules/typebox/build/system/locale/ur_PK.mjs +0 -1
  112. package/node_modules/typebox/build/system/locale/vi_VN.mjs +0 -1
  113. package/node_modules/typebox/build/system/locale/yo_NG.mjs +0 -1
  114. package/node_modules/typebox/build/system/locale/zh_Hans.mjs +0 -1
  115. package/node_modules/typebox/build/system/locale/zh_Hant.mjs +0 -1
  116. package/node_modules/typebox/build/system/memory/clone.d.mts +2 -3
  117. package/node_modules/typebox/build/system/memory/clone.mjs +73 -26
  118. package/node_modules/typebox/build/system/settings/settings.d.mts +15 -0
  119. package/node_modules/typebox/build/system/settings/settings.mjs +3 -1
  120. package/node_modules/typebox/build/type/action/_add_immutable.d.mts +11 -0
  121. package/node_modules/typebox/build/type/action/_add_immutable.mjs +11 -0
  122. package/node_modules/typebox/build/type/action/_add_optional.d.mts +11 -0
  123. package/node_modules/typebox/build/type/action/_add_optional.mjs +11 -0
  124. package/node_modules/typebox/build/type/action/_add_readonly.d.mts +11 -0
  125. package/node_modules/typebox/build/type/action/_add_readonly.mjs +11 -0
  126. package/node_modules/typebox/build/type/action/_remove_immutable.d.mts +11 -0
  127. package/node_modules/typebox/build/type/action/_remove_immutable.mjs +11 -0
  128. package/node_modules/typebox/build/type/action/_remove_optional.d.mts +11 -0
  129. package/node_modules/typebox/build/type/action/_remove_optional.mjs +11 -0
  130. package/node_modules/typebox/build/type/action/_remove_readonly.d.mts +11 -0
  131. package/node_modules/typebox/build/type/action/_remove_readonly.mjs +11 -0
  132. package/node_modules/typebox/build/type/action/conditional.d.mts +2 -3
  133. package/node_modules/typebox/build/type/action/conditional.mjs +2 -1
  134. package/node_modules/typebox/build/type/action/index.d.mts +7 -4
  135. package/node_modules/typebox/build/type/action/index.mjs +7 -4
  136. package/node_modules/typebox/build/type/action/mapped.d.mts +2 -3
  137. package/node_modules/typebox/build/type/action/mapped.mjs +2 -1
  138. package/node_modules/typebox/build/type/action/module.d.mts +8 -7
  139. package/node_modules/typebox/build/type/action/module.mjs +7 -6
  140. package/node_modules/typebox/build/type/action/readonly_object.d.mts +0 -5
  141. package/node_modules/typebox/build/type/action/readonly_object.mjs +0 -5
  142. package/node_modules/typebox/build/type/action/with.d.mts +11 -0
  143. package/node_modules/typebox/build/type/action/with.mjs +11 -0
  144. package/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +1 -1
  145. package/node_modules/typebox/build/type/engine/call/instantiate.d.mts +1 -3
  146. package/node_modules/typebox/build/type/engine/call/instantiate.mjs +3 -2
  147. package/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +2 -2
  148. package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +3 -4
  149. package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +2 -1
  150. package/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +2 -3
  151. package/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +3 -6
  152. package/node_modules/typebox/build/type/engine/cyclic/check.d.mts +6 -9
  153. package/node_modules/typebox/build/type/engine/cyclic/check.mjs +10 -16
  154. package/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +1 -4
  155. package/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +9 -15
  156. package/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +1 -4
  157. package/node_modules/typebox/build/type/engine/cyclic/extends.mjs +8 -14
  158. package/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +2 -5
  159. package/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +3 -2
  160. package/node_modules/typebox/build/type/engine/enum/index.d.mts +0 -1
  161. package/node_modules/typebox/build/type/engine/enum/index.mjs +0 -1
  162. package/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +1 -2
  163. package/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +2 -6
  164. package/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +10 -6
  165. package/node_modules/typebox/build/type/engine/evaluate/composite.mjs +10 -6
  166. package/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +2 -1
  167. package/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +3 -3
  168. package/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +17 -5
  169. package/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +34 -8
  170. package/node_modules/typebox/build/type/engine/exclude/operation.d.mts +5 -6
  171. package/node_modules/typebox/build/type/engine/exclude/operation.mjs +11 -12
  172. package/node_modules/typebox/build/type/engine/extract/operation.d.mts +5 -6
  173. package/node_modules/typebox/build/type/engine/extract/operation.mjs +11 -12
  174. package/node_modules/typebox/build/type/engine/immutable/instantiate_add.d.mts +10 -0
  175. package/node_modules/typebox/build/type/engine/immutable/instantiate_add.mjs +14 -0
  176. package/node_modules/typebox/build/type/engine/immutable/instantiate_remove.d.mts +10 -0
  177. package/node_modules/typebox/build/type/engine/immutable/instantiate_remove.mjs +14 -0
  178. package/node_modules/typebox/build/type/engine/index.d.mts +2 -2
  179. package/node_modules/typebox/build/type/engine/index.mjs +2 -2
  180. package/node_modules/typebox/build/type/engine/indexable/from_dependent.d.mts +5 -0
  181. package/node_modules/typebox/build/type/engine/indexable/from_dependent.mjs +8 -0
  182. package/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +3 -3
  183. package/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +4 -4
  184. package/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +2 -2
  185. package/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +3 -3
  186. package/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +3 -1
  187. package/node_modules/typebox/build/type/engine/indexable/from_type.mjs +9 -6
  188. package/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +2 -1
  189. package/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +5 -2
  190. package/node_modules/typebox/build/type/engine/instantiate.d.mts +44 -31
  191. package/node_modules/typebox/build/type/engine/instantiate.mjs +82 -83
  192. package/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +3 -6
  193. package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +2 -2
  194. package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +3 -3
  195. package/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +2 -1
  196. package/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +5 -1
  197. package/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +4 -4
  198. package/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +3 -3
  199. package/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +5 -4
  200. package/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +10 -5
  201. package/node_modules/typebox/build/type/engine/module/instantiate.d.mts +7 -9
  202. package/node_modules/typebox/build/type/engine/module/instantiate.mjs +17 -15
  203. package/node_modules/typebox/build/type/engine/object/from_dependent.d.mts +5 -0
  204. package/node_modules/typebox/build/type/engine/object/from_dependent.mjs +8 -0
  205. package/node_modules/typebox/build/type/engine/object/from_type.d.mts +3 -1
  206. package/node_modules/typebox/build/type/engine/object/from_type.mjs +8 -5
  207. package/node_modules/typebox/build/type/engine/object/from_union.mjs +2 -2
  208. package/node_modules/typebox/build/type/engine/optional/instantiate_add.d.mts +10 -0
  209. package/node_modules/typebox/build/type/engine/optional/instantiate_add.mjs +14 -0
  210. package/node_modules/typebox/build/type/engine/optional/instantiate_remove.d.mts +10 -0
  211. package/node_modules/typebox/build/type/engine/optional/instantiate_remove.mjs +14 -0
  212. package/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +3 -4
  213. package/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +2 -1
  214. package/node_modules/typebox/build/type/engine/partial/from_dependent.d.mts +5 -0
  215. package/node_modules/typebox/build/type/engine/partial/from_dependent.mjs +8 -0
  216. package/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +1 -1
  217. package/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +3 -2
  218. package/node_modules/typebox/build/type/engine/partial/from_object.d.mts +2 -2
  219. package/node_modules/typebox/build/type/engine/partial/from_object.mjs +2 -2
  220. package/node_modules/typebox/build/type/engine/partial/from_type.d.mts +3 -1
  221. package/node_modules/typebox/build/type/engine/partial/from_type.mjs +7 -4
  222. package/node_modules/typebox/build/type/engine/priority/index.d.mts +1 -0
  223. package/node_modules/typebox/build/type/engine/priority/index.mjs +1 -0
  224. package/node_modules/typebox/build/type/engine/priority/priority.d.mts +20 -0
  225. package/node_modules/typebox/build/type/engine/priority/priority.mjs +28 -0
  226. package/node_modules/typebox/build/type/engine/readonly/instantiate_add.d.mts +10 -0
  227. package/node_modules/typebox/build/type/engine/readonly/instantiate_add.mjs +14 -0
  228. package/node_modules/typebox/build/type/engine/readonly/instantiate_remove.d.mts +10 -0
  229. package/node_modules/typebox/build/type/engine/readonly/instantiate_remove.mjs +14 -0
  230. package/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +2 -2
  231. package/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +2 -2
  232. package/node_modules/typebox/build/type/engine/readonly_object/from_dependent.d.mts +5 -0
  233. package/node_modules/typebox/build/type/engine/readonly_object/from_dependent.mjs +8 -0
  234. package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +1 -1
  235. package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +3 -2
  236. package/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +2 -2
  237. package/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +2 -2
  238. package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +2 -2
  239. package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +2 -2
  240. package/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +3 -1
  241. package/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +8 -5
  242. package/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +2 -2
  243. package/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +2 -2
  244. package/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +2 -2
  245. package/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +2 -2
  246. package/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +3 -3
  247. package/node_modules/typebox/build/type/engine/ref/instantiate.mjs +6 -6
  248. package/node_modules/typebox/build/type/engine/required/from_dependent.d.mts +5 -0
  249. package/node_modules/typebox/build/type/engine/required/from_dependent.mjs +8 -0
  250. package/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +1 -1
  251. package/node_modules/typebox/build/type/engine/required/from_intersect.mjs +3 -2
  252. package/node_modules/typebox/build/type/engine/required/from_object.d.mts +2 -2
  253. package/node_modules/typebox/build/type/engine/required/from_object.mjs +2 -2
  254. package/node_modules/typebox/build/type/engine/required/from_type.d.mts +3 -1
  255. package/node_modules/typebox/build/type/engine/required/from_type.mjs +7 -4
  256. package/node_modules/typebox/build/type/engine/template_literal/decode.mjs +3 -3
  257. package/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +2 -2
  258. package/node_modules/typebox/build/type/engine/template_literal/encode.mjs +6 -6
  259. package/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +1 -1
  260. package/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +1 -0
  261. package/node_modules/typebox/build/type/engine/this/expand_this.d.mts +1 -4
  262. package/node_modules/typebox/build/type/engine/this/expand_this.mjs +7 -13
  263. package/node_modules/typebox/build/type/engine/with/instantiate.d.mts +8 -0
  264. package/node_modules/typebox/build/type/engine/{options → with}/instantiate.mjs +5 -5
  265. package/node_modules/typebox/build/type/extends/dependent.d.mts +6 -0
  266. package/node_modules/typebox/build/type/extends/dependent.mjs +6 -0
  267. package/node_modules/typebox/build/type/extends/enum.d.mts +4 -4
  268. package/node_modules/typebox/build/type/extends/enum.mjs +3 -2
  269. package/node_modules/typebox/build/type/extends/extends_left.d.mts +5 -7
  270. package/node_modules/typebox/build/type/extends/extends_left.mjs +24 -27
  271. package/node_modules/typebox/build/type/extends/extends_right.d.mts +7 -5
  272. package/node_modules/typebox/build/type/extends/extends_right.mjs +20 -15
  273. package/node_modules/typebox/build/type/extends/inference.mjs +1 -1
  274. package/node_modules/typebox/build/type/extends/object.d.mts +8 -1
  275. package/node_modules/typebox/build/type/extends/object.mjs +25 -3
  276. package/node_modules/typebox/build/type/extends/parameters.mjs +2 -2
  277. package/node_modules/typebox/build/type/extends/record.d.mts +13 -0
  278. package/node_modules/typebox/build/type/extends/record.mjs +23 -0
  279. package/node_modules/typebox/build/type/extends/template_literal.d.mts +3 -3
  280. package/node_modules/typebox/build/type/extends/template_literal.mjs +3 -3
  281. package/node_modules/typebox/build/type/extends/tuple.d.mts +3 -6
  282. package/node_modules/typebox/build/type/extends/tuple.mjs +6 -5
  283. package/node_modules/typebox/build/type/extends/union.mjs +2 -2
  284. package/node_modules/typebox/build/type/script/mapping.d.mts +84 -99
  285. package/node_modules/typebox/build/type/script/mapping.mjs +81 -85
  286. package/node_modules/typebox/build/type/script/parser.d.mts +40 -40
  287. package/node_modules/typebox/build/type/script/parser.mjs +22 -22
  288. package/node_modules/typebox/build/type/script/script.d.mts +3 -4
  289. package/node_modules/typebox/build/type/script/script.mjs +3 -2
  290. package/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -1
  291. package/node_modules/typebox/build/type/script/token/internal/guard.mjs +1 -1
  292. package/node_modules/typebox/build/type/script/token/internal/take.mjs +1 -1
  293. package/node_modules/typebox/build/type/script/token/until.mjs +2 -2
  294. package/node_modules/typebox/build/type/types/_codec.d.mts +12 -12
  295. package/node_modules/typebox/build/type/types/_codec.mjs +0 -1
  296. package/node_modules/typebox/build/type/types/_immutable.d.mts +2 -9
  297. package/node_modules/typebox/build/type/types/_immutable.mjs +2 -10
  298. package/node_modules/typebox/build/type/types/_optional.d.mts +2 -9
  299. package/node_modules/typebox/build/type/types/_optional.mjs +2 -11
  300. package/node_modules/typebox/build/type/types/_readonly.d.mts +2 -9
  301. package/node_modules/typebox/build/type/types/_readonly.mjs +2 -10
  302. package/node_modules/typebox/build/type/types/_refine.d.mts +8 -10
  303. package/node_modules/typebox/build/type/types/_refine.mjs +1 -2
  304. package/node_modules/typebox/build/type/types/call.d.mts +3 -3
  305. package/node_modules/typebox/build/type/types/call.mjs +3 -2
  306. package/node_modules/typebox/build/type/types/deferred.d.mts +1 -0
  307. package/node_modules/typebox/build/type/types/deferred.mjs +1 -1
  308. package/node_modules/typebox/build/type/types/dependent.d.mts +17 -0
  309. package/node_modules/typebox/build/type/types/dependent.mjs +24 -0
  310. package/node_modules/typebox/build/type/types/enum.d.mts +3 -1
  311. package/node_modules/typebox/build/type/types/enum.mjs +5 -0
  312. package/node_modules/typebox/build/type/types/index.d.mts +1 -4
  313. package/node_modules/typebox/build/type/types/index.mjs +1 -4
  314. package/node_modules/typebox/build/type/types/number.d.mts +1 -1
  315. package/node_modules/typebox/build/type/types/number.mjs +1 -1
  316. package/node_modules/typebox/build/type/types/record.d.mts +13 -7
  317. package/node_modules/typebox/build/type/types/record.mjs +15 -9
  318. package/node_modules/typebox/build/type/types/static.d.mts +2 -5
  319. package/node_modules/typebox/build/typebox.d.mts +4 -8
  320. package/node_modules/typebox/build/typebox.mjs +4 -8
  321. package/node_modules/typebox/build/value/clean/clean.mjs +4 -2
  322. package/node_modules/typebox/build/value/clean/from_intersect.mjs +2 -2
  323. package/node_modules/typebox/build/value/clean/from_type.mjs +8 -10
  324. package/node_modules/typebox/build/value/clean/from_union.d.mts +1 -1
  325. package/node_modules/typebox/build/value/clean/from_union.mjs +1 -2
  326. package/node_modules/typebox/build/value/clone/clone.mjs +2 -73
  327. package/node_modules/typebox/build/value/codec/decode.mjs +4 -2
  328. package/node_modules/typebox/build/value/codec/encode.mjs +4 -2
  329. package/node_modules/typebox/build/value/codec/from_array.mjs +1 -4
  330. package/node_modules/typebox/build/value/codec/from_object.mjs +1 -4
  331. package/node_modules/typebox/build/value/codec/from_record.mjs +2 -7
  332. package/node_modules/typebox/build/value/codec/from_tuple.mjs +1 -4
  333. package/node_modules/typebox/build/value/codec/from_union.mjs +2 -3
  334. package/node_modules/typebox/build/value/convert/from_enum.mjs +3 -4
  335. package/node_modules/typebox/build/value/convert/from_template_literal.d.mts +1 -1
  336. package/node_modules/typebox/build/value/convert/from_template_literal.mjs +2 -3
  337. package/node_modules/typebox/build/value/convert/from_type.mjs +19 -21
  338. package/node_modules/typebox/build/value/create/from_enum.mjs +2 -2
  339. package/node_modules/typebox/build/value/create/from_type.mjs +23 -31
  340. package/node_modules/typebox/build/value/default/from_object.mjs +1 -1
  341. package/node_modules/typebox/build/value/default/from_type.mjs +8 -10
  342. package/node_modules/typebox/build/value/index.d.mts +0 -1
  343. package/node_modules/typebox/build/value/index.mjs +0 -1
  344. package/node_modules/typebox/build/value/repair/from_enum.mjs +2 -3
  345. package/node_modules/typebox/build/value/repair/from_type.mjs +24 -22
  346. package/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +6 -2
  347. package/node_modules/typebox/build/value/shared/union_priority_sort.mjs +62 -26
  348. package/node_modules/typebox/build/value/value.d.mts +0 -1
  349. package/node_modules/typebox/build/value/value.mjs +0 -1
  350. package/node_modules/typebox/package.json +25 -25
  351. package/node_modules/typebox/readme.md +97 -80
  352. package/npm-shrinkwrap.json +12 -12
  353. package/package.json +6 -6
  354. package/node_modules/typebox/build/schema/engine/_guard.d.mts +0 -6
  355. package/node_modules/typebox/build/schema/engine/_guard.mjs +0 -26
  356. package/node_modules/typebox/build/schema/types/_guard.d.mts +0 -10
  357. package/node_modules/typebox/build/schema/types/_guard.mjs +0 -16
  358. package/node_modules/typebox/build/type/action/_optional.d.mts +0 -19
  359. package/node_modules/typebox/build/type/action/_optional.mjs +0 -40
  360. package/node_modules/typebox/build/type/action/_readonly.d.mts +0 -19
  361. package/node_modules/typebox/build/type/action/_readonly.mjs +0 -40
  362. package/node_modules/typebox/build/type/action/awaited.d.mts +0 -15
  363. package/node_modules/typebox/build/type/action/awaited.mjs +0 -15
  364. package/node_modules/typebox/build/type/action/options.d.mts +0 -11
  365. package/node_modules/typebox/build/type/action/options.mjs +0 -11
  366. package/node_modules/typebox/build/type/engine/awaited/instantiate.d.mts +0 -11
  367. package/node_modules/typebox/build/type/engine/awaited/instantiate.mjs +0 -20
  368. package/node_modules/typebox/build/type/engine/enum/enum_to_union.d.mts +0 -14
  369. package/node_modules/typebox/build/type/engine/enum/enum_to_union.mjs +0 -24
  370. package/node_modules/typebox/build/type/engine/options/index.d.mts +0 -1
  371. package/node_modules/typebox/build/type/engine/options/index.mjs +0 -1
  372. package/node_modules/typebox/build/type/engine/options/instantiate.d.mts +0 -8
  373. package/node_modules/typebox/build/type/extends/async_iterator.d.mts +0 -7
  374. package/node_modules/typebox/build/type/extends/async_iterator.mjs +0 -9
  375. package/node_modules/typebox/build/type/extends/iterator.d.mts +0 -7
  376. package/node_modules/typebox/build/type/extends/iterator.mjs +0 -9
  377. package/node_modules/typebox/build/type/extends/promise.d.mts +0 -7
  378. package/node_modules/typebox/build/type/extends/promise.mjs +0 -9
  379. package/node_modules/typebox/build/type/types/async_iterator.d.mts +0 -20
  380. package/node_modules/typebox/build/type/types/async_iterator.mjs +0 -28
  381. package/node_modules/typebox/build/type/types/base.d.mts +0 -50
  382. package/node_modules/typebox/build/type/types/base.mjs +0 -84
  383. package/node_modules/typebox/build/type/types/iterator.d.mts +0 -20
  384. package/node_modules/typebox/build/type/types/iterator.mjs +0 -28
  385. package/node_modules/typebox/build/type/types/promise.d.mts +0 -21
  386. package/node_modules/typebox/build/type/types/promise.mjs +0 -29
  387. package/node_modules/typebox/build/value/clean/from_base.d.mts +0 -2
  388. package/node_modules/typebox/build/value/clean/from_base.mjs +0 -4
  389. package/node_modules/typebox/build/value/convert/from_base.d.mts +0 -2
  390. package/node_modules/typebox/build/value/convert/from_base.mjs +0 -4
  391. package/node_modules/typebox/build/value/create/from_async_iterator.d.mts +0 -2
  392. package/node_modules/typebox/build/value/create/from_async_iterator.mjs +0 -5
  393. package/node_modules/typebox/build/value/create/from_base.d.mts +0 -2
  394. package/node_modules/typebox/build/value/create/from_base.mjs +0 -4
  395. package/node_modules/typebox/build/value/create/from_iterator.d.mts +0 -2
  396. package/node_modules/typebox/build/value/create/from_iterator.mjs +0 -5
  397. package/node_modules/typebox/build/value/create/from_promise.d.mts +0 -2
  398. package/node_modules/typebox/build/value/create/from_promise.mjs +0 -5
  399. package/node_modules/typebox/build/value/default/from_base.d.mts +0 -2
  400. package/node_modules/typebox/build/value/default/from_base.mjs +0 -5
  401. package/node_modules/typebox/build/value/mutate/error.d.mts +0 -3
  402. package/node_modules/typebox/build/value/mutate/error.mjs +0 -6
  403. package/node_modules/typebox/build/value/mutate/from_array.d.mts +0 -2
  404. package/node_modules/typebox/build/value/mutate/from_array.mjs +0 -16
  405. package/node_modules/typebox/build/value/mutate/from_object.d.mts +0 -2
  406. package/node_modules/typebox/build/value/mutate/from_object.mjs +0 -40
  407. package/node_modules/typebox/build/value/mutate/from_unknown.d.mts +0 -2
  408. package/node_modules/typebox/build/value/mutate/from_unknown.mjs +0 -7
  409. package/node_modules/typebox/build/value/mutate/from_value.d.mts +0 -2
  410. package/node_modules/typebox/build/value/mutate/from_value.mjs +0 -12
  411. package/node_modules/typebox/build/value/mutate/index.d.mts +0 -1
  412. package/node_modules/typebox/build/value/mutate/index.mjs +0 -1
  413. package/node_modules/typebox/build/value/mutate/mutate.d.mts +0 -11
  414. package/node_modules/typebox/build/value/mutate/mutate.mjs +0 -41
  415. package/node_modules/typebox/build/value/repair/from_base.d.mts +0 -2
  416. package/node_modules/typebox/build/value/repair/from_base.mjs +0 -8
  417. /package/node_modules/typebox/build/type/engine/{awaited → with}/index.d.mts +0 -0
  418. /package/node_modules/typebox/build/type/engine/{awaited → with}/index.mjs +0 -0
@@ -0,0 +1,430 @@
1
+ import { stableStringify } from "./state/store.js";
2
+ import { compileCached } from "./validation.js";
3
+ const MAX_REPLAY_ITEMS = 1000;
4
+ const MAX_REPLAY_BYTES = 1024 * 1024;
5
+ const MAX_REQUEST_HISTORY = 100;
6
+ export class InputRequestSuspension extends Error {
7
+ stageIndex;
8
+ request;
9
+ constructor(stageIndex, request) {
10
+ super("Input request suspended");
11
+ this.name = "InputRequestSuspension";
12
+ this.stageIndex = stageIndex;
13
+ this.request = request;
14
+ }
15
+ }
16
+ export class RequestInputResumeError extends Error {
17
+ constructor(message) {
18
+ super(message);
19
+ this.name = "RequestInputResumeError";
20
+ }
21
+ }
22
+ export function createInputTracker(input) {
23
+ const knownItems = Array.isArray(input) ? input : null;
24
+ let iterator = null;
25
+ let completed = false;
26
+ let closed = false;
27
+ let replayEnabled = true;
28
+ let replaySnapshotItems = [];
29
+ let replaySnapshotIndex = 0;
30
+ let replaySnapshotError = null;
31
+ let replaySnapshotBytes = 0;
32
+ const iterable = {
33
+ async *[Symbol.asyncIterator]() {
34
+ const iter = getIterator();
35
+ let hasPrimaryError = false;
36
+ let yieldedIndex = 0;
37
+ try {
38
+ while (true) {
39
+ const next = await iter.next();
40
+ if (next.done) {
41
+ completed = true;
42
+ return;
43
+ }
44
+ if (knownItems) {
45
+ snapshotKnownItemsThrough(yieldedIndex);
46
+ yieldedIndex += 1;
47
+ }
48
+ yield next.value;
49
+ }
50
+ }
51
+ catch (err) {
52
+ hasPrimaryError = true;
53
+ throw err;
54
+ }
55
+ finally {
56
+ await closeTrackedIterator({ suppressErrors: hasPrimaryError });
57
+ }
58
+ },
59
+ };
60
+ return {
61
+ iterable,
62
+ getReplayItems(hasSuspendedState) {
63
+ if (!replayEnabled) {
64
+ throw new Error("requestInput replay is no longer available after command output");
65
+ }
66
+ if (!knownItems) {
67
+ if (hasSuspendedState)
68
+ return [];
69
+ throw new Error("requestInput requires suspendedState when command input is streaming");
70
+ }
71
+ snapshotKnownItemsThrough(knownItems.length - 1);
72
+ if (replaySnapshotError)
73
+ throw replaySnapshotError;
74
+ return snapshotArray(replaySnapshotItems, "requestInput replay input");
75
+ },
76
+ disableReplay() {
77
+ replayEnabled = false;
78
+ },
79
+ async close(options = {}) {
80
+ await closeTrackedIterator({ suppressErrors: options.suppressErrors === true });
81
+ },
82
+ };
83
+ function getIterator() {
84
+ iterator ??= toAsyncIterator(input);
85
+ return iterator;
86
+ }
87
+ async function closeTrackedIterator({ suppressErrors }) {
88
+ if (!iterator || completed || closed)
89
+ return;
90
+ closed = true;
91
+ await closeIterator(iterator, { suppressErrors });
92
+ }
93
+ function snapshotKnownItemsThrough(index) {
94
+ if (!knownItems || replaySnapshotError)
95
+ return;
96
+ while (replaySnapshotIndex <= index && replaySnapshotIndex < knownItems.length) {
97
+ try {
98
+ const snapshot = snapshotJson(knownItems[replaySnapshotIndex], "requestInput replay input");
99
+ replaySnapshotBytes += Buffer.byteLength(JSON.stringify(snapshot), "utf8");
100
+ if (replaySnapshotItems.length + 1 > MAX_REPLAY_ITEMS ||
101
+ replaySnapshotBytes > MAX_REPLAY_BYTES) {
102
+ throw new Error("requestInput replay limit exceeded");
103
+ }
104
+ replaySnapshotItems.push(snapshot);
105
+ replaySnapshotIndex += 1;
106
+ }
107
+ catch (err) {
108
+ replaySnapshotError = err instanceof Error ? err : new Error(String(err));
109
+ return;
110
+ }
111
+ }
112
+ }
113
+ }
114
+ export function createStageRequestInput({ ctx, stageIndex, mode, inputTracker, isCommandActive, getInactiveReason, isOutputStarted, resume, }) {
115
+ let requestIndex = 0;
116
+ const history = [...(resume?.state.history ?? [])];
117
+ const requestInput = async function requestInput(params) {
118
+ if (!isCommandActive()) {
119
+ throw new Error(getInactiveReason?.() ?? "requestInput cannot run after the command has completed");
120
+ }
121
+ const metadata = snapshotRequestMetadata(params);
122
+ const requestedSuspendedState = params.suspendedState === undefined
123
+ ? undefined
124
+ : snapshotJson(params.suspendedState, "requestInput suspendedState");
125
+ const historical = history[requestIndex];
126
+ if (historical) {
127
+ assertMetadataMatches(historical.requestIndex, historical.metadata, requestIndex, metadata);
128
+ assertSuspendedStateMatches(historical.suspendedState, requestedSuspendedState);
129
+ const response = snapshotJson(historical.response, "requestInput response");
130
+ validateRequestInputResponse(metadata.responseSchema, response, "requestInput");
131
+ requestIndex += 1;
132
+ return response;
133
+ }
134
+ if (resume && !resume.consumed) {
135
+ assertMetadataMatches(resume.state.pending.requestIndex, resume.state.pending.metadata, requestIndex, metadata);
136
+ assertSuspendedStateMatches(resume.state.pending.suspendedState, requestedSuspendedState);
137
+ const response = snapshotJson(resume.response, "requestInput response");
138
+ validateRequestInputResponse(metadata.responseSchema, response, "requestInput");
139
+ const historyResponse = snapshotJson(response, "requestInput response");
140
+ await resume.onConsumed?.();
141
+ resume.consumed = true;
142
+ history.push({
143
+ requestIndex,
144
+ metadata,
145
+ ...(requestedSuspendedState !== undefined
146
+ ? { suspendedState: requestedSuspendedState }
147
+ : null),
148
+ response: historyResponse,
149
+ });
150
+ requestIndex += 1;
151
+ return response;
152
+ }
153
+ if (mode === "human" && isInteractive(ctx.stdin)) {
154
+ return requestInputInteractively(ctx, metadata);
155
+ }
156
+ if (isOutputStarted()) {
157
+ throw new Error("requestInput cannot suspend after this command has produced output");
158
+ }
159
+ if (history.length >= MAX_REQUEST_HISTORY) {
160
+ throw new Error("requestInput replay history limit exceeded");
161
+ }
162
+ const items = inputTracker.getReplayItems(requestedSuspendedState !== undefined);
163
+ const pending = {
164
+ requestIndex,
165
+ metadata,
166
+ ...(requestedSuspendedState !== undefined
167
+ ? { suspendedState: requestedSuspendedState }
168
+ : null),
169
+ };
170
+ throw new InputRequestSuspension(stageIndex, {
171
+ type: "input_request",
172
+ prompt: metadata.prompt,
173
+ responseSchema: metadata.responseSchema,
174
+ ...(metadata.defaults !== undefined ? { defaults: metadata.defaults } : null),
175
+ ...(metadata.subject !== undefined ? { subject: metadata.subject } : null),
176
+ items,
177
+ commandInput: {
178
+ pending,
179
+ history,
180
+ },
181
+ });
182
+ };
183
+ requestInput.getSuspendedState = function getSuspendedState() {
184
+ if (requestIndex < history.length) {
185
+ return snapshotOptionalState(history[requestIndex].suspendedState);
186
+ }
187
+ if (resume && !resume.consumed && resume.state.pending.requestIndex === requestIndex) {
188
+ return snapshotOptionalState(resume.state.pending.suspendedState);
189
+ }
190
+ return undefined;
191
+ };
192
+ return requestInput;
193
+ }
194
+ export function assertRequestInputResumeConsumed(resume) {
195
+ if (resume && !resume.consumed) {
196
+ throw new RequestInputResumeError("resume input response was not consumed by requestInput");
197
+ }
198
+ }
199
+ export function snapshotRequestMetadata(params) {
200
+ validateRequestInputParams(params);
201
+ const responseSchema = snapshotJson(params.responseSchema, "requestInput responseSchema");
202
+ const defaults = params.defaults === undefined
203
+ ? undefined
204
+ : snapshotJson(params.defaults, "requestInput defaults");
205
+ const subject = params.subject === undefined ? undefined : snapshotJson(params.subject, "requestInput subject");
206
+ const unsigned = {
207
+ prompt: params.prompt,
208
+ responseSchema,
209
+ ...(defaults !== undefined ? { defaults } : null),
210
+ ...(subject !== undefined ? { subject } : null),
211
+ };
212
+ return {
213
+ ...unsigned,
214
+ signature: stableStringify(unsigned),
215
+ };
216
+ }
217
+ export function validateCommandInputState(value) {
218
+ if (!value || typeof value !== "object")
219
+ throw new Error("Invalid pipeline resume state");
220
+ const data = value;
221
+ validatePending(data.pending);
222
+ if (!Array.isArray(data.history))
223
+ throw new Error("Invalid pipeline resume state");
224
+ if (data.history.length !== data.pending.requestIndex) {
225
+ throw new Error("Invalid pipeline resume state");
226
+ }
227
+ data.history.forEach(validateHistoryEntry);
228
+ return data;
229
+ }
230
+ export function validateRequestInputResponse(schema, response, label) {
231
+ let validator;
232
+ try {
233
+ validator = compileCached(schema);
234
+ }
235
+ catch {
236
+ throw new Error(`${label} response schema is invalid`);
237
+ }
238
+ if (validator(response))
239
+ return;
240
+ const first = validator.errors?.[0];
241
+ const pathValue = first?.instancePath || "/";
242
+ const reason = first?.message ? ` ${first.message}` : "";
243
+ throw new Error(`${label} response failed schema validation at ${pathValue}:${reason}`);
244
+ }
245
+ function validateRequestInputParams(params) {
246
+ if (!params || typeof params !== "object") {
247
+ throw new Error("requestInput params must be an object");
248
+ }
249
+ if (typeof params.prompt !== "string" || params.prompt.length === 0) {
250
+ throw new Error("requestInput prompt is required");
251
+ }
252
+ if (params.responseSchema === undefined) {
253
+ throw new Error("requestInput responseSchema is required");
254
+ }
255
+ try {
256
+ compileCached(params.responseSchema);
257
+ }
258
+ catch {
259
+ throw new Error("requestInput response schema is invalid");
260
+ }
261
+ }
262
+ function validatePending(value) {
263
+ if (!value || typeof value !== "object")
264
+ throw new Error("Invalid pipeline resume state");
265
+ const data = value;
266
+ if (typeof data.requestIndex !== "number" ||
267
+ !Number.isInteger(data.requestIndex) ||
268
+ data.requestIndex < 0) {
269
+ throw new Error("Invalid pipeline resume state");
270
+ }
271
+ validateStoredMetadata(data.metadata);
272
+ if (data.suspendedState !== undefined) {
273
+ snapshotJson(data.suspendedState, "requestInput suspendedState");
274
+ }
275
+ }
276
+ function validateHistoryEntry(value, index) {
277
+ if (!value || typeof value !== "object")
278
+ throw new Error("Invalid pipeline resume state");
279
+ const data = value;
280
+ if (data.requestIndex !== index)
281
+ throw new Error("Invalid pipeline resume state");
282
+ validateStoredMetadata(data.metadata);
283
+ if (data.suspendedState !== undefined) {
284
+ snapshotJson(data.suspendedState, "requestInput suspendedState");
285
+ }
286
+ if (data.response === undefined)
287
+ throw new Error("Invalid pipeline resume state");
288
+ snapshotJson(data.response, "requestInput response");
289
+ }
290
+ function validateStoredMetadata(value) {
291
+ if (!value || typeof value !== "object")
292
+ throw new Error("Invalid pipeline resume state");
293
+ const data = value;
294
+ if (typeof data.prompt !== "string" || data.prompt.length === 0) {
295
+ throw new Error("Invalid pipeline resume state");
296
+ }
297
+ if (typeof data.signature !== "string" || data.signature.length === 0) {
298
+ throw new Error("Invalid pipeline resume state");
299
+ }
300
+ if (data.responseSchema === undefined)
301
+ throw new Error("Invalid pipeline resume state");
302
+ const actual = snapshotRequestMetadata({
303
+ prompt: data.prompt,
304
+ responseSchema: data.responseSchema,
305
+ ...(data.defaults !== undefined ? { defaults: data.defaults } : null),
306
+ ...(data.subject !== undefined ? { subject: data.subject } : null),
307
+ });
308
+ if (actual.signature !== data.signature)
309
+ throw new Error("Invalid pipeline resume state");
310
+ }
311
+ function assertMetadataMatches(storedIndex, stored, actualIndex, actual) {
312
+ if (storedIndex !== actualIndex ||
313
+ stored.prompt !== actual.prompt ||
314
+ stored.signature !== actual.signature) {
315
+ throw new RequestInputResumeError("requestInput resume request does not match suspended request");
316
+ }
317
+ }
318
+ function assertSuspendedStateMatches(stored, actual) {
319
+ if (stableStringify(stored) !== stableStringify(actual)) {
320
+ throw new RequestInputResumeError("requestInput resume state does not match suspended request");
321
+ }
322
+ }
323
+ function snapshotOptionalState(state) {
324
+ return state === undefined ? undefined : snapshotJson(state, "requestInput suspendedState");
325
+ }
326
+ function snapshotArray(items, label) {
327
+ if (items.length > MAX_REPLAY_ITEMS)
328
+ throw new Error("requestInput replay item limit exceeded");
329
+ let totalBytes = 0;
330
+ return items.map((item) => {
331
+ const snapshot = snapshotJson(item, label);
332
+ totalBytes += Buffer.byteLength(JSON.stringify(snapshot), "utf8");
333
+ if (totalBytes > MAX_REPLAY_BYTES) {
334
+ throw new Error("requestInput replay byte limit exceeded");
335
+ }
336
+ return snapshot;
337
+ });
338
+ }
339
+ function snapshotJson(value, label) {
340
+ assertJsonSerializable(value, label, new WeakSet());
341
+ const text = JSON.stringify(value);
342
+ if (text === undefined)
343
+ throw new Error(`${label} must be JSON-serializable`);
344
+ return JSON.parse(text);
345
+ }
346
+ function assertJsonSerializable(value, label, seen) {
347
+ if (value === null)
348
+ return;
349
+ const type = typeof value;
350
+ if (type === "string" || type === "boolean")
351
+ return;
352
+ if (type === "number") {
353
+ if (!Number.isFinite(value))
354
+ throw new Error(`${label} must be JSON-serializable`);
355
+ return;
356
+ }
357
+ if (type === "undefined" || type === "function" || type === "symbol" || type === "bigint") {
358
+ throw new Error(`${label} must be JSON-serializable`);
359
+ }
360
+ const object = value;
361
+ if (seen.has(object))
362
+ throw new Error(`${label} must be JSON-serializable`);
363
+ const prototype = Object.getPrototypeOf(object);
364
+ if (prototype !== Object.prototype && prototype !== null && !Array.isArray(value)) {
365
+ throw new Error(`${label} must be JSON-serializable`);
366
+ }
367
+ seen.add(object);
368
+ if (Array.isArray(value)) {
369
+ for (let index = 0; index < value.length; index++) {
370
+ if (!(index in value))
371
+ throw new Error(`${label} must be JSON-serializable`);
372
+ assertJsonSerializable(value[index], label, seen);
373
+ }
374
+ }
375
+ else {
376
+ for (const key of Object.keys(value)) {
377
+ assertJsonSerializable(value[key], label, seen);
378
+ }
379
+ }
380
+ seen.delete(object);
381
+ }
382
+ async function requestInputInteractively(ctx, metadata) {
383
+ ctx.stdout.write(`${metadata.prompt}\n> `);
384
+ const { readLineFromStream } = await import("./read_line.js");
385
+ const raw = await readLineFromStream(ctx.stdin, { timeoutMs: 0 });
386
+ let response;
387
+ try {
388
+ response = JSON.parse(String(raw ?? "").trim());
389
+ }
390
+ catch {
391
+ throw new Error("requestInput response must be valid JSON");
392
+ }
393
+ validateRequestInputResponse(metadata.responseSchema, response, "requestInput");
394
+ return snapshotJson(response, "requestInput response");
395
+ }
396
+ function isInteractive(stdin) {
397
+ return Boolean(stdin?.isTTY);
398
+ }
399
+ async function closeIterator(iterator, { suppressErrors }) {
400
+ if (typeof iterator.return !== "function")
401
+ return;
402
+ try {
403
+ await iterator.return();
404
+ }
405
+ catch (err) {
406
+ if (!suppressErrors)
407
+ throw err;
408
+ // Cleanup must not mask the original command error or suspension.
409
+ }
410
+ }
411
+ function toAsyncIterator(input) {
412
+ if (typeof input[Symbol.asyncIterator] === "function") {
413
+ return input[Symbol.asyncIterator]();
414
+ }
415
+ if (typeof input[Symbol.iterator] === "function") {
416
+ const iterator = input[Symbol.iterator]();
417
+ return {
418
+ async next() {
419
+ return iterator.next();
420
+ },
421
+ async return() {
422
+ if (typeof iterator.return === "function")
423
+ iterator.return();
424
+ return { done: true, value: undefined };
425
+ },
426
+ };
427
+ }
428
+ throw new Error("input is not iterable");
429
+ }
430
+ //# sourceMappingURL=input_request.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"input_request.js","sourceRoot":"","sources":["../../src/input_request.ts"],"names":[],"mappings":"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"}
@@ -2,6 +2,7 @@ import { randomUUID } from "node:crypto";
2
2
  import { encodeToken } from "./token.js";
3
3
  import { cleanupApprovalIndexByStateKey, createApprovalIndex, deleteStateJson, readStateJson, writeStateJson, } from "./state/store.js";
4
4
  import { compileCached } from "./validation.js";
5
+ import { validateCommandInputState } from "./input_request.js";
5
6
  export function extractPipelineHalt(output) {
6
7
  const halted = output.halted && output.items.length === 1
7
8
  ? output.items[0]
@@ -45,19 +46,24 @@ export async function finalizePipelineToolRun(params) {
45
46
  requiresApproval: {
46
47
  ...approval,
47
48
  resumeToken,
48
- approvalId,
49
+ ...(approvalId ? { approvalId } : null),
49
50
  },
50
51
  requiresInput: null,
51
52
  };
52
53
  }
53
54
  if (inputRequest) {
55
+ const resumeMode = inputRequest.commandInput ? "same_stage" : "next_stage";
54
56
  const nextStateKey = await savePipelineResumeState(params.env, {
55
57
  pipeline: params.pipeline,
56
- resumeAtIndex: (params.output.haltedAt?.index ?? -1) + 1,
57
- items: [],
58
+ resumeAtIndex: resumeMode === "same_stage"
59
+ ? (params.output.haltedAt?.index ?? -1)
60
+ : (params.output.haltedAt?.index ?? -1) + 1,
61
+ items: resumeMode === "same_stage" ? (inputRequest.items ?? []) : [],
58
62
  haltType: "input_request",
63
+ resumeMode,
59
64
  inputSchema: inputRequest.responseSchema,
60
65
  prompt: inputRequest.prompt,
66
+ ...(inputRequest.commandInput ? { commandInput: inputRequest.commandInput } : null),
61
67
  createdAt: new Date().toISOString(),
62
68
  });
63
69
  if (params.previousStateKey) {
@@ -108,14 +114,39 @@ export async function loadPipelineResumeState(env, stateKey) {
108
114
  const data = stored;
109
115
  if (!Array.isArray(data.pipeline))
110
116
  throw new Error("Invalid pipeline resume state");
111
- if (typeof data.resumeAtIndex !== "number")
117
+ validatePipelineShape(data.pipeline);
118
+ if (typeof data.resumeAtIndex !== "number" ||
119
+ !Number.isInteger(data.resumeAtIndex) ||
120
+ data.resumeAtIndex < 0 ||
121
+ data.resumeAtIndex > data.pipeline.length) {
112
122
  throw new Error("Invalid pipeline resume state");
123
+ }
113
124
  if (!Array.isArray(data.items))
114
125
  throw new Error("Invalid pipeline resume state");
115
126
  if (data.haltType !== undefined &&
116
127
  !["approval_request", "input_request"].includes(data.haltType)) {
117
128
  throw new Error("Invalid pipeline resume state");
118
129
  }
130
+ if (data.resumeMode !== undefined && !["next_stage", "same_stage"].includes(data.resumeMode)) {
131
+ throw new Error("Invalid pipeline resume state");
132
+ }
133
+ if (data.haltType === "input_request") {
134
+ if (data.inputSchema === undefined || typeof data.prompt !== "string") {
135
+ throw new Error("Invalid pipeline resume state");
136
+ }
137
+ if (data.resumeMode === "same_stage") {
138
+ if (data.resumeAtIndex >= data.pipeline.length) {
139
+ throw new Error("Invalid pipeline resume state");
140
+ }
141
+ data.commandInput = validateCommandInputState(data.commandInput);
142
+ }
143
+ else if (data.commandInput !== undefined) {
144
+ throw new Error("Invalid pipeline resume state");
145
+ }
146
+ }
147
+ else if (data.resumeMode === "same_stage" || data.commandInput !== undefined) {
148
+ throw new Error("Invalid pipeline resume state");
149
+ }
119
150
  return data;
120
151
  }
121
152
  export function validatePipelineInputResponse(schema, response) {
@@ -137,4 +168,19 @@ export function validatePipelineInputResponse(schema, response) {
137
168
  const reason = first?.message ? ` ${first.message}` : "";
138
169
  throw new Error(`pipeline input response failed schema validation at ${pathValue}:${reason}`);
139
170
  }
171
+ function validatePipelineShape(pipeline) {
172
+ for (const stage of pipeline) {
173
+ if (!stage || typeof stage !== "object")
174
+ throw new Error("Invalid pipeline resume state");
175
+ const data = stage;
176
+ if (typeof data.name !== "string" || data.name.length === 0) {
177
+ throw new Error("Invalid pipeline resume state");
178
+ }
179
+ if (!data.args || typeof data.args !== "object" || Array.isArray(data.args)) {
180
+ throw new Error("Invalid pipeline resume state");
181
+ }
182
+ if (typeof data.raw !== "string")
183
+ throw new Error("Invalid pipeline resume state");
184
+ }
185
+ }
140
186
  //# sourceMappingURL=pipeline_resume_state.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"pipeline_resume_state.js","sourceRoot":"","sources":["../../src/pipeline_resume_state.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"pipeline_resume_state.js","sourceRoot":"","sources":["../../src/pipeline_resume_state.ts"],"names":[],"mappings":"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"}