eve 0.5.4 → 0.6.0-beta.3

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 (1743) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/LICENSE +2 -2
  3. package/NOTICE +5 -0
  4. package/README.md +120 -108
  5. package/bin/eve.d.ts +66 -0
  6. package/bin/eve.js +285 -0
  7. package/dist/docs/public/README.md +89 -0
  8. package/dist/docs/public/advanced/auth-and-route-protection.md +270 -0
  9. package/dist/docs/public/advanced/context-control.md +109 -0
  10. package/dist/docs/public/advanced/default-harness.md +94 -0
  11. package/dist/docs/public/advanced/deployment.md +113 -0
  12. package/dist/docs/public/advanced/dev-tui.md +37 -0
  13. package/dist/docs/public/advanced/dynamic-capabilities.md +129 -0
  14. package/dist/docs/public/advanced/dynamic-workflows.md +55 -0
  15. package/dist/docs/public/advanced/evals.md +121 -0
  16. package/dist/docs/public/advanced/execution-model-and-durability.md +48 -0
  17. package/dist/docs/public/advanced/hooks.md +154 -0
  18. package/dist/docs/public/advanced/instrumentation.md +165 -0
  19. package/dist/docs/public/advanced/meta.json +21 -0
  20. package/dist/docs/public/advanced/remote-agents.md +60 -0
  21. package/dist/docs/public/advanced/security-model.md +79 -0
  22. package/dist/docs/public/advanced/session-context.md +149 -0
  23. package/dist/docs/public/advanced/sessions-runs-and-streaming.md +127 -0
  24. package/dist/docs/public/advanced/state.md +62 -0
  25. package/dist/docs/public/agent-config.md +80 -0
  26. package/dist/docs/public/channels/custom.mdx +275 -0
  27. package/dist/docs/public/channels/discord.mdx +74 -0
  28. package/dist/docs/public/channels/eve.mdx +82 -0
  29. package/dist/docs/public/channels/github.mdx +56 -0
  30. package/dist/docs/public/channels/linear.mdx +168 -0
  31. package/dist/docs/public/channels/meta.json +15 -0
  32. package/dist/docs/public/channels/overview.mdx +53 -0
  33. package/dist/docs/public/channels/slack.mdx +92 -0
  34. package/dist/docs/public/channels/teams.mdx +55 -0
  35. package/dist/docs/public/channels/telegram.mdx +56 -0
  36. package/dist/docs/public/channels/twilio.mdx +62 -0
  37. package/dist/docs/public/client/continuations.mdx +126 -0
  38. package/dist/docs/public/client/messages.mdx +152 -0
  39. package/dist/docs/public/client/meta.json +4 -0
  40. package/dist/docs/public/client/output-schema.mdx +135 -0
  41. package/dist/docs/public/client/overview.mdx +116 -0
  42. package/dist/docs/public/client/streaming.mdx +143 -0
  43. package/dist/docs/public/connections.mdx +196 -0
  44. package/dist/docs/public/frontend/meta.json +4 -0
  45. package/dist/docs/public/frontend/nextjs.mdx +79 -0
  46. package/dist/docs/public/frontend/nuxt.mdx +82 -0
  47. package/dist/docs/public/frontend/overview.mdx +234 -0
  48. package/dist/docs/public/frontend/sveltekit.mdx +94 -0
  49. package/dist/docs/public/frontend/use-eve-agent-svelte.mdx +111 -0
  50. package/dist/docs/public/frontend/use-eve-agent-vue.mdx +123 -0
  51. package/dist/docs/public/getting-started.mdx +176 -0
  52. package/dist/docs/public/instructions.mdx +58 -0
  53. package/dist/docs/public/introduction.md +102 -0
  54. package/dist/docs/public/meta.json +22 -0
  55. package/dist/docs/public/reference/cli.md +123 -0
  56. package/dist/docs/public/reference/faqs.md +48 -0
  57. package/dist/docs/public/reference/meta.json +4 -0
  58. package/dist/docs/public/reference/project-layout.md +111 -0
  59. package/dist/docs/public/reference/typescript-api.md +97 -0
  60. package/dist/docs/public/sandbox.mdx +198 -0
  61. package/dist/docs/public/schedules.mdx +104 -0
  62. package/dist/docs/public/skills.mdx +79 -0
  63. package/dist/docs/public/subagents.mdx +76 -0
  64. package/dist/docs/public/tools.mdx +111 -0
  65. package/dist/docs/public/tutorial/connect-a-warehouse.mdx +47 -0
  66. package/dist/docs/public/tutorial/first-agent.mdx +61 -0
  67. package/dist/docs/public/tutorial/guard-the-spend.mdx +59 -0
  68. package/dist/docs/public/tutorial/how-it-runs.mdx +24 -0
  69. package/dist/docs/public/tutorial/meta.json +14 -0
  70. package/dist/docs/public/tutorial/query-sample-data.mdx +81 -0
  71. package/dist/docs/public/tutorial/remember-definitions.mdx +72 -0
  72. package/dist/docs/public/tutorial/run-analysis.mdx +86 -0
  73. package/dist/docs/public/tutorial/ship-it.mdx +100 -0
  74. package/dist/docs/public/tutorial/team-playbooks.mdx +63 -0
  75. package/dist/src/_virtual/_rolldown/runtime.js +1 -0
  76. package/dist/src/channel/adapter-context.d.ts +11 -0
  77. package/dist/src/channel/adapter-context.js +1 -0
  78. package/dist/src/channel/adapter.d.ts +160 -0
  79. package/dist/src/channel/adapter.js +1 -0
  80. package/dist/src/channel/compiled-channel.d.ts +21 -0
  81. package/dist/src/channel/compiled-channel.js +1 -0
  82. package/dist/src/channel/cross-channel-receive.d.ts +70 -0
  83. package/dist/src/channel/cross-channel-receive.js +2 -0
  84. package/dist/src/channel/http.d.ts +29 -0
  85. package/dist/src/channel/http.js +1 -0
  86. package/dist/src/channel/instrumentation.d.ts +10 -0
  87. package/dist/src/channel/instrumentation.js +1 -0
  88. package/dist/src/channel/receive-target.d.ts +17 -0
  89. package/dist/src/channel/receive-target.js +1 -0
  90. package/dist/src/channel/resolve-text.d.ts +19 -0
  91. package/dist/src/channel/resolve-text.js +1 -0
  92. package/dist/src/channel/routes.d.ts +217 -0
  93. package/dist/src/channel/routes.js +1 -0
  94. package/dist/src/channel/schedule.d.ts +66 -0
  95. package/dist/src/channel/schedule.js +1 -0
  96. package/dist/src/channel/send.d.ts +4 -0
  97. package/dist/src/channel/send.js +1 -0
  98. package/dist/src/channel/session-callback.d.ts +10 -0
  99. package/dist/src/channel/session-callback.js +1 -0
  100. package/dist/src/channel/session.d.ts +46 -0
  101. package/dist/src/channel/session.js +1 -0
  102. package/dist/src/channel/types.d.ts +303 -0
  103. package/dist/src/channel/types.js +1 -0
  104. package/dist/src/channel/websocket-upgrade-server.d.ts +26 -0
  105. package/dist/src/channel/websocket-upgrade-server.js +1 -0
  106. package/dist/src/chunks/use-eve-agent-9vL56Fjy.js +1195 -0
  107. package/dist/src/chunks/use-eve-agent-DTWI5Lji.js +1225 -0
  108. package/dist/src/cli/commands/channel-add-conflicts.d.ts +21 -0
  109. package/dist/src/cli/commands/channel-add-conflicts.js +1 -0
  110. package/dist/src/cli/commands/channels.d.ts +26 -0
  111. package/dist/src/cli/commands/channels.js +1 -0
  112. package/dist/src/cli/commands/info.d.ts +53 -0
  113. package/dist/src/cli/commands/info.js +2 -0
  114. package/dist/src/cli/dev/environment.d.ts +20 -0
  115. package/dist/src/cli/dev/environment.js +1 -0
  116. package/dist/src/cli/dev/repl/input-requests.d.ts +38 -0
  117. package/dist/src/cli/dev/repl/input-requests.js +1 -0
  118. package/dist/src/cli/dev/repl/input.d.ts +19 -0
  119. package/dist/src/cli/dev/repl/input.js +1 -0
  120. package/dist/src/cli/dev/repl/repl.d.ts +62 -0
  121. package/dist/src/cli/dev/repl/repl.js +2 -0
  122. package/dist/src/cli/dev/repl/terminal.d.ts +21 -0
  123. package/dist/src/cli/dev/repl/terminal.js +5 -0
  124. package/dist/src/cli/dev/tui/layout.d.ts +24 -0
  125. package/dist/src/cli/dev/tui/layout.js +3 -0
  126. package/dist/src/cli/dev/tui/markdown.d.ts +14 -0
  127. package/dist/src/cli/dev/tui/markdown.js +3 -0
  128. package/dist/src/cli/dev/tui/runner.d.ts +211 -0
  129. package/dist/src/cli/dev/tui/runner.js +1 -0
  130. package/dist/src/cli/dev/tui/terminal-frame-buffer.d.ts +21 -0
  131. package/dist/src/cli/dev/tui/terminal-frame-buffer.js +2 -0
  132. package/dist/src/cli/dev/tui/terminal-renderer.d.ts +111 -0
  133. package/dist/src/cli/dev/tui/terminal-renderer.js +12 -0
  134. package/dist/src/cli/dev/tui/terminal-text.d.ts +6 -0
  135. package/dist/src/cli/dev/tui/terminal-text.js +1 -0
  136. package/dist/src/cli/dev/tui/test/index.d.ts +11 -0
  137. package/dist/src/cli/dev/tui/test/index.js +1 -0
  138. package/dist/src/cli/dev/tui/test/mock-terminal.d.ts +28 -0
  139. package/dist/src/cli/dev/tui/test/mock-terminal.js +3 -0
  140. package/dist/src/cli/dev/tui/tui.d.ts +32 -0
  141. package/dist/src/cli/dev/tui/tui.js +1 -0
  142. package/dist/src/cli/dev/tui/types.d.ts +68 -0
  143. package/dist/src/cli/dev/tui/types.js +1 -0
  144. package/dist/src/cli/dev/url.d.ts +4 -0
  145. package/dist/src/cli/dev/url.js +1 -0
  146. package/dist/src/cli/run.d.ts +112 -0
  147. package/dist/src/cli/run.js +3 -0
  148. package/dist/src/cli/ui/output.d.ts +62 -0
  149. package/dist/src/cli/ui/output.js +8 -0
  150. package/dist/src/client/client-error.d.ts +14 -0
  151. package/dist/src/client/client-error.js +1 -0
  152. package/dist/src/client/client.d.ts +28 -0
  153. package/dist/src/client/client.js +1 -0
  154. package/dist/src/client/eve-agent-store.d.ts +89 -0
  155. package/dist/src/client/eve-agent-store.js +2 -0
  156. package/dist/src/client/index.d.ts +15 -0
  157. package/dist/src/client/index.js +1 -0
  158. package/dist/src/client/message-reducer-types.d.ts +174 -0
  159. package/dist/src/client/message-reducer-types.js +1 -0
  160. package/dist/src/client/message-reducer.d.ts +14 -0
  161. package/dist/src/client/message-reducer.js +1 -0
  162. package/dist/src/client/message-response.d.ts +42 -0
  163. package/dist/src/client/message-response.js +1 -0
  164. package/dist/src/client/ndjson.d.ts +16 -0
  165. package/dist/src/client/ndjson.js +3 -0
  166. package/dist/src/client/open-stream.d.ts +18 -0
  167. package/dist/src/client/open-stream.js +1 -0
  168. package/dist/src/client/output-schema.d.ts +12 -0
  169. package/dist/src/client/output-schema.js +1 -0
  170. package/dist/src/client/reducer.d.ts +63 -0
  171. package/dist/src/client/reducer.js +1 -0
  172. package/dist/src/client/session-utils.d.ts +29 -0
  173. package/dist/src/client/session-utils.js +1 -0
  174. package/dist/src/client/session.d.ts +49 -0
  175. package/dist/src/client/session.js +1 -0
  176. package/dist/src/client/types.d.ts +165 -0
  177. package/dist/src/client/types.js +1 -0
  178. package/dist/src/client/url.d.ts +8 -0
  179. package/dist/src/client/url.js +1 -0
  180. package/dist/src/compiled/.vendor-stamp.json +32 -0
  181. package/dist/src/compiled/@ai-sdk/anthropic/LICENSE +13 -0
  182. package/dist/src/compiled/@ai-sdk/anthropic/_provider-utils.d.ts +15 -0
  183. package/dist/src/compiled/@ai-sdk/anthropic/index.d.ts +1262 -0
  184. package/dist/src/compiled/@ai-sdk/anthropic/index.js +2 -0
  185. package/dist/src/compiled/@ai-sdk/google/LICENSE +13 -0
  186. package/dist/src/compiled/@ai-sdk/google/_provider-utils.d.ts +11 -0
  187. package/dist/src/compiled/@ai-sdk/google/index.d.ts +627 -0
  188. package/dist/src/compiled/@ai-sdk/google/index.js +11 -0
  189. package/dist/src/compiled/@ai-sdk/mcp/LICENSE +13 -0
  190. package/dist/src/compiled/@ai-sdk/mcp/index.d.ts +37 -0
  191. package/dist/src/compiled/@ai-sdk/mcp/index.js +1 -0
  192. package/dist/src/compiled/@ai-sdk/openai/LICENSE +13 -0
  193. package/dist/src/compiled/@ai-sdk/openai/_provider-utils.d.ts +15 -0
  194. package/dist/src/compiled/@ai-sdk/openai/index.d.ts +1296 -0
  195. package/dist/src/compiled/@ai-sdk/openai/index.js +11 -0
  196. package/dist/src/compiled/@ai-sdk/otel/LICENSE +13 -0
  197. package/dist/src/compiled/@ai-sdk/otel/index.d.ts +32 -0
  198. package/dist/src/compiled/@ai-sdk/otel/index.js +3 -0
  199. package/dist/src/compiled/@ai-sdk/provider/LICENSE +13 -0
  200. package/dist/src/compiled/@ai-sdk/provider/_json-schema.d.ts +5 -0
  201. package/dist/src/compiled/@ai-sdk/provider/index.d.ts +7138 -0
  202. package/dist/src/compiled/@ai-sdk/provider/index.js +3 -0
  203. package/dist/src/compiled/@chat-adapter/slack/LICENSE +9 -0
  204. package/dist/src/compiled/@chat-adapter/slack/_chat-adapter-shared.d.ts +9 -0
  205. package/dist/src/compiled/@chat-adapter/slack/_slack-web-api.d.ts +7 -0
  206. package/dist/src/compiled/@chat-adapter/slack/index.d.ts +950 -0
  207. package/dist/src/compiled/@chat-adapter/slack/index.js +48 -0
  208. package/dist/src/compiled/@chat-adapter/state-memory/LICENSE +9 -0
  209. package/dist/src/compiled/@chat-adapter/state-memory/index.d.ts +50 -0
  210. package/dist/src/compiled/@chat-adapter/state-memory/index.js +1 -0
  211. package/dist/src/compiled/@opentelemetry/api/LICENSE +201 -0
  212. package/dist/src/compiled/@opentelemetry/api/index.d.ts +47 -0
  213. package/dist/src/compiled/@opentelemetry/api/index.js +1 -0
  214. package/dist/src/compiled/@standard-schema/spec/LICENSE +21 -0
  215. package/dist/src/compiled/@standard-schema/spec/index.d.ts +119 -0
  216. package/dist/src/compiled/@standard-schema/spec/index.js +1 -0
  217. package/dist/src/compiled/@vercel/oidc/LICENSE +202 -0
  218. package/dist/src/compiled/@vercel/oidc/index.d.ts +21 -0
  219. package/dist/src/compiled/@vercel/oidc/index.js +2 -0
  220. package/dist/src/compiled/@vercel/sandbox/LICENSE +201 -0
  221. package/dist/src/compiled/@vercel/sandbox/index.d.ts +128 -0
  222. package/dist/src/compiled/@vercel/sandbox/index.js +108 -0
  223. package/dist/src/compiled/@vercel/sandbox/network-policy.d.ts +161 -0
  224. package/dist/src/compiled/@workflow/core/LICENSE.md +201 -0
  225. package/dist/src/compiled/@workflow/core/_ms.d.ts +4 -0
  226. package/dist/src/compiled/@workflow/core/_workflow-serde.d.ts +5 -0
  227. package/dist/src/compiled/@workflow/core/_workflow-utils.d.ts +8 -0
  228. package/dist/src/compiled/@workflow/core/attribute-changes.d.ts +7 -0
  229. package/dist/src/compiled/@workflow/core/capabilities.d.ts +45 -0
  230. package/dist/src/compiled/@workflow/core/capture-stack.d.ts +16 -0
  231. package/dist/src/compiled/@workflow/core/class-serialization.d.ts +31 -0
  232. package/dist/src/compiled/@workflow/core/classify-error.d.ts +20 -0
  233. package/dist/src/compiled/@workflow/core/context-errors.d.ts +27 -0
  234. package/dist/src/compiled/@workflow/core/context-violation-error.d.ts +97 -0
  235. package/dist/src/compiled/@workflow/core/create-hook.d.ts +179 -0
  236. package/dist/src/compiled/@workflow/core/define-hook.d.ts +68 -0
  237. package/dist/src/compiled/@workflow/core/describe-error.d.ts +70 -0
  238. package/dist/src/compiled/@workflow/core/encryption.d.ts +66 -0
  239. package/dist/src/compiled/@workflow/core/events-consumer.d.ts +72 -0
  240. package/dist/src/compiled/@workflow/core/flushable-stream.d.ts +82 -0
  241. package/dist/src/compiled/@workflow/core/global.d.ts +48 -0
  242. package/dist/src/compiled/@workflow/core/index.d.ts +20 -0
  243. package/dist/src/compiled/@workflow/core/index.js +2 -0
  244. package/dist/src/compiled/@workflow/core/log-format.d.ts +25 -0
  245. package/dist/src/compiled/@workflow/core/logger.d.ts +29 -0
  246. package/dist/src/compiled/@workflow/core/private.d.ts +135 -0
  247. package/dist/src/compiled/@workflow/core/private.js +1 -0
  248. package/dist/src/compiled/@workflow/core/runtime/constants.d.ts +52 -0
  249. package/dist/src/compiled/@workflow/core/runtime/get-port-lazy.d.ts +10 -0
  250. package/dist/src/compiled/@workflow/core/runtime/get-world-lazy.d.ts +32 -0
  251. package/dist/src/compiled/@workflow/core/runtime/helpers.d.ts +105 -0
  252. package/dist/src/compiled/@workflow/core/runtime/replay-budget.d.ts +98 -0
  253. package/dist/src/compiled/@workflow/core/runtime/resume-hook.d.ts +77 -0
  254. package/dist/src/compiled/@workflow/core/runtime/run.d.ts +134 -0
  255. package/dist/src/compiled/@workflow/core/runtime/runs.d.ts +50 -0
  256. package/dist/src/compiled/@workflow/core/runtime/start.d.ts +59 -0
  257. package/dist/src/compiled/@workflow/core/runtime/step-executor.d.ts +42 -0
  258. package/dist/src/compiled/@workflow/core/runtime/step-handler.d.ts +2 -0
  259. package/dist/src/compiled/@workflow/core/runtime/suspension-handler.d.ts +42 -0
  260. package/dist/src/compiled/@workflow/core/runtime/world-init.d.ts +75 -0
  261. package/dist/src/compiled/@workflow/core/runtime/world.d.ts +32 -0
  262. package/dist/src/compiled/@workflow/core/runtime.d.ts +22 -0
  263. package/dist/src/compiled/@workflow/core/runtime.js +141 -0
  264. package/dist/src/compiled/@workflow/core/schemas.d.ts +15 -0
  265. package/dist/src/compiled/@workflow/core/serialization/client.d.ts +17 -0
  266. package/dist/src/compiled/@workflow/core/serialization/codec-devalue.d.ts +14 -0
  267. package/dist/src/compiled/@workflow/core/serialization/codec.d.ts +90 -0
  268. package/dist/src/compiled/@workflow/core/serialization/encryption.d.ts +33 -0
  269. package/dist/src/compiled/@workflow/core/serialization/errors.d.ts +34 -0
  270. package/dist/src/compiled/@workflow/core/serialization/format.d.ts +60 -0
  271. package/dist/src/compiled/@workflow/core/serialization/index.d.ts +18 -0
  272. package/dist/src/compiled/@workflow/core/serialization/reducers/class.d.ts +11 -0
  273. package/dist/src/compiled/@workflow/core/serialization/reducers/common.d.ts +16 -0
  274. package/dist/src/compiled/@workflow/core/serialization/reducers/step-function.d.ts +35 -0
  275. package/dist/src/compiled/@workflow/core/serialization/step.d.ts +17 -0
  276. package/dist/src/compiled/@workflow/core/serialization/types.d.ts +228 -0
  277. package/dist/src/compiled/@workflow/core/serialization/workflow.d.ts +29 -0
  278. package/dist/src/compiled/@workflow/core/serialization-format.d.ts +171 -0
  279. package/dist/src/compiled/@workflow/core/serialization.d.ts +344 -0
  280. package/dist/src/compiled/@workflow/core/set-attributes.d.ts +13 -0
  281. package/dist/src/compiled/@workflow/core/sleep.d.ts +33 -0
  282. package/dist/src/compiled/@workflow/core/source-map.d.ts +10 -0
  283. package/dist/src/compiled/@workflow/core/step/context-storage.d.ts +29 -0
  284. package/dist/src/compiled/@workflow/core/step/get-closure-vars.d.ts +9 -0
  285. package/dist/src/compiled/@workflow/core/step/get-step-metadata.d.ts +42 -0
  286. package/dist/src/compiled/@workflow/core/step/get-workflow-metadata.d.ts +7 -0
  287. package/dist/src/compiled/@workflow/core/step/writable-stream.d.ts +22 -0
  288. package/dist/src/compiled/@workflow/core/step.d.ts +4 -0
  289. package/dist/src/compiled/@workflow/core/symbols.d.ts +42 -0
  290. package/dist/src/compiled/@workflow/core/telemetry/semantic-conventions.d.ts +283 -0
  291. package/dist/src/compiled/@workflow/core/telemetry.d.ts +53 -0
  292. package/dist/src/compiled/@workflow/core/types.d.ts +20 -0
  293. package/dist/src/compiled/@workflow/core/util.d.ts +40 -0
  294. package/dist/src/compiled/@workflow/core/version.d.ts +2 -0
  295. package/dist/src/compiled/@workflow/core/vm/index.d.ts +17 -0
  296. package/dist/src/compiled/@workflow/core/vm/uint8array-base64.d.ts +21 -0
  297. package/dist/src/compiled/@workflow/core/vm/uuid.d.ts +10 -0
  298. package/dist/src/compiled/@workflow/core/workflow/abort-controller.d.ts +65 -0
  299. package/dist/src/compiled/@workflow/core/workflow/create-hook.d.ts +7 -0
  300. package/dist/src/compiled/@workflow/core/workflow/define-hook.d.ts +10 -0
  301. package/dist/src/compiled/@workflow/core/workflow/get-workflow-metadata.d.ts +32 -0
  302. package/dist/src/compiled/@workflow/core/workflow/hook.d.ts +4 -0
  303. package/dist/src/compiled/@workflow/core/workflow/index.d.ts +12 -0
  304. package/dist/src/compiled/@workflow/core/workflow/set-attributes.d.ts +74 -0
  305. package/dist/src/compiled/@workflow/core/workflow/sleep.d.ts +4 -0
  306. package/dist/src/compiled/@workflow/core/workflow/world-init-stub.d.ts +15 -0
  307. package/dist/src/compiled/@workflow/core/workflow/writable-stream.d.ts +3 -0
  308. package/dist/src/compiled/@workflow/core/workflow.d.ts +1 -0
  309. package/dist/src/compiled/@workflow/core/workflow.js +1 -0
  310. package/dist/src/compiled/@workflow/errors/LICENSE.md +201 -0
  311. package/dist/src/compiled/@workflow/errors/_ms.d.ts +4 -0
  312. package/dist/src/compiled/@workflow/errors/error-codes.d.ts +23 -0
  313. package/dist/src/compiled/@workflow/errors/index.d.ts +536 -0
  314. package/dist/src/compiled/@workflow/errors/index.js +1 -0
  315. package/dist/src/compiled/@workflow/world/LICENSE.md +201 -0
  316. package/dist/src/compiled/@workflow/world/attributes.d.ts +110 -0
  317. package/dist/src/compiled/@workflow/world/events.d.ts +415 -0
  318. package/dist/src/compiled/@workflow/world/hooks.d.ts +72 -0
  319. package/dist/src/compiled/@workflow/world/index.d.ts +25 -0
  320. package/dist/src/compiled/@workflow/world/index.js +1 -0
  321. package/dist/src/compiled/@workflow/world/interfaces.d.ts +264 -0
  322. package/dist/src/compiled/@workflow/world/queue.d.ts +128 -0
  323. package/dist/src/compiled/@workflow/world/recovery.d.ts +13 -0
  324. package/dist/src/compiled/@workflow/world/runs.d.ts +144 -0
  325. package/dist/src/compiled/@workflow/world/serialization.d.ts +25 -0
  326. package/dist/src/compiled/@workflow/world/shared.d.ts +83 -0
  327. package/dist/src/compiled/@workflow/world/spec-version.d.ts +46 -0
  328. package/dist/src/compiled/@workflow/world/steps.d.ts +70 -0
  329. package/dist/src/compiled/@workflow/world/ulid.d.ts +35 -0
  330. package/dist/src/compiled/@workflow/world/waits.d.ts +21 -0
  331. package/dist/src/compiled/_chunks/node/auth-BsyzphzW.js +2 -0
  332. package/dist/src/compiled/_chunks/node/dist-BQYUcBqu.js +90 -0
  333. package/dist/src/compiled/_chunks/node/dist-BdTs18CF.js +1 -0
  334. package/dist/src/compiled/_chunks/node/retry-DkR2H1Y0.js +1 -0
  335. package/dist/src/compiled/_chunks/node/token-ORseRyWn.js +1 -0
  336. package/dist/src/compiled/_chunks/node/version-BGue04qw.js +1 -0
  337. package/dist/src/compiled/_chunks/workflow/chunk-DSjMdhoD.js +1 -0
  338. package/dist/src/compiled/_chunks/workflow/coerce-BTuSKQr5.js +1 -0
  339. package/dist/src/compiled/_chunks/workflow/compat-CG1hDp-3.js +1 -0
  340. package/dist/src/compiled/_chunks/workflow/core-5Woff_dW.js +65 -0
  341. package/dist/src/compiled/_chunks/workflow/dist-6a3viBXZ.js +3 -0
  342. package/dist/src/compiled/_chunks/workflow/dist-D0jyrm7a.js +1 -0
  343. package/dist/src/compiled/_chunks/workflow/dist-gEXVSMPU.js +14 -0
  344. package/dist/src/compiled/_chunks/workflow/resume-hook-0Zk0zSvq.js +12 -0
  345. package/dist/src/compiled/_chunks/workflow/schemas-DWOIBELG.js +1 -0
  346. package/dist/src/compiled/_chunks/workflow/sleep-DXZr2BgM.js +1 -0
  347. package/dist/src/compiled/_chunks/workflow/src-B54rYDvB.js +1 -0
  348. package/dist/src/compiled/_chunks/workflow/symbols-BWCAoPHE.js +48 -0
  349. package/dist/src/compiled/_chunks/workflow/token-CcaAeZHd.js +1 -0
  350. package/dist/src/compiled/_chunks/workflow/token-nK4u-N7w.js +1 -0
  351. package/dist/src/compiled/chat/LICENSE +9 -0
  352. package/dist/src/compiled/chat/_mdast.d.ts +24 -0
  353. package/dist/src/compiled/chat/index.d.ts +714 -0
  354. package/dist/src/compiled/chat/index.js +1 -0
  355. package/dist/src/compiled/chat/jsx-runtime-CFq1K_Ve.d.ts +782 -0
  356. package/dist/src/compiled/chokidar/LICENSE +21 -0
  357. package/dist/src/compiled/chokidar/index.d.ts +33 -0
  358. package/dist/src/compiled/chokidar/index.js +1 -0
  359. package/dist/src/compiled/commander/LICENSE +22 -0
  360. package/dist/src/compiled/commander/index.d.ts +1113 -0
  361. package/dist/src/compiled/commander/index.js +19 -0
  362. package/dist/src/compiled/experimental-ai-sdk-code-mode/LICENSE +21 -0
  363. package/dist/src/compiled/experimental-ai-sdk-code-mode/approval-continuation.d.ts +71 -0
  364. package/dist/src/compiled/experimental-ai-sdk-code-mode/approval.d.ts +32 -0
  365. package/dist/src/compiled/experimental-ai-sdk-code-mode/code-mode-tool.d.ts +16 -0
  366. package/dist/src/compiled/experimental-ai-sdk-code-mode/continuation-capability.d.ts +33 -0
  367. package/dist/src/compiled/experimental-ai-sdk-code-mode/errors.d.ts +114 -0
  368. package/dist/src/compiled/experimental-ai-sdk-code-mode/fetch-policy.d.ts +21 -0
  369. package/dist/src/compiled/experimental-ai-sdk-code-mode/host-interrupt.d.ts +25 -0
  370. package/dist/src/compiled/experimental-ai-sdk-code-mode/index.d.ts +11 -0
  371. package/dist/src/compiled/experimental-ai-sdk-code-mode/index.js +419 -0
  372. package/dist/src/compiled/experimental-ai-sdk-code-mode/interrupt-continuation.d.ts +32 -0
  373. package/dist/src/compiled/experimental-ai-sdk-code-mode/options.d.ts +3 -0
  374. package/dist/src/compiled/experimental-ai-sdk-code-mode/run-code-mode.d.ts +12 -0
  375. package/dist/src/compiled/experimental-ai-sdk-code-mode/runtime/guest-sources.d.ts +3 -0
  376. package/dist/src/compiled/experimental-ai-sdk-code-mode/runtime/manager.d.ts +22 -0
  377. package/dist/src/compiled/experimental-ai-sdk-code-mode/runtime/max-workers.d.ts +20 -0
  378. package/dist/src/compiled/experimental-ai-sdk-code-mode/runtime/protocol.d.ts +49 -0
  379. package/dist/src/compiled/experimental-ai-sdk-code-mode/runtime/worker-source.d.ts +11 -0
  380. package/dist/src/compiled/experimental-ai-sdk-code-mode/serialization.d.ts +5 -0
  381. package/dist/src/compiled/experimental-ai-sdk-code-mode/source-cache.d.ts +11 -0
  382. package/dist/src/compiled/experimental-ai-sdk-code-mode/telemetry.d.ts +20 -0
  383. package/dist/src/compiled/experimental-ai-sdk-code-mode/tool-invocation.d.ts +24 -0
  384. package/dist/src/compiled/experimental-ai-sdk-code-mode/tool-prompt.d.ts +3 -0
  385. package/dist/src/compiled/experimental-ai-sdk-code-mode/types.d.ts +802 -0
  386. package/dist/src/compiled/gray-matter/LICENSE +21 -0
  387. package/dist/src/compiled/gray-matter/index.d.ts +62 -0
  388. package/dist/src/compiled/gray-matter/index.js +48 -0
  389. package/dist/src/compiled/jose/LICENSE.md +21 -0
  390. package/dist/src/compiled/jose/index.d.ts +40 -0
  391. package/dist/src/compiled/jose/index.js +2 -0
  392. package/dist/src/compiled/jsonc-parser/LICENSE.md +21 -0
  393. package/dist/src/compiled/jsonc-parser/index.d.ts +13 -0
  394. package/dist/src/compiled/jsonc-parser/index.js +15 -0
  395. package/dist/src/compiled/just-bash/LICENSE +201 -0
  396. package/dist/src/compiled/just-bash/index.d.ts +116 -0
  397. package/dist/src/compiled/just-bash/index.js +2200 -0
  398. package/dist/src/compiled/just-bash/network/types.d.ts +155 -0
  399. package/dist/src/compiled/picocolors/LICENSE +15 -0
  400. package/dist/src/compiled/picocolors/index.d.ts +55 -0
  401. package/dist/src/compiled/picocolors/index.js +1 -0
  402. package/dist/src/compiled/turndown/LICENSE +21 -0
  403. package/dist/src/compiled/turndown/index.d.ts +13 -0
  404. package/dist/src/compiled/turndown/index.js +69 -0
  405. package/dist/src/compiled/zod/LICENSE +21 -0
  406. package/dist/src/compiled/zod/index.d.ts +5 -0
  407. package/dist/src/compiled/zod/index.js +1 -0
  408. package/dist/src/compiled/zod-validation-error/LICENSE +9 -0
  409. package/dist/src/compiled/zod-validation-error/index.d.ts +12 -0
  410. package/dist/src/compiled/zod-validation-error/index.js +1 -0
  411. package/dist/src/compiler/artifacts.d.ts +109 -0
  412. package/dist/src/compiler/artifacts.js +1 -0
  413. package/dist/src/compiler/channel-instrumentation-types.d.ts +8 -0
  414. package/dist/src/compiler/channel-instrumentation-types.js +2 -0
  415. package/dist/src/compiler/compile-agent.d.ts +41 -0
  416. package/dist/src/compiler/compile-agent.js +3 -0
  417. package/dist/src/compiler/compile-from-memory.d.ts +76 -0
  418. package/dist/src/compiler/compile-from-memory.js +1 -0
  419. package/dist/src/compiler/manifest.d.ts +504 -0
  420. package/dist/src/compiler/manifest.js +1 -0
  421. package/dist/src/compiler/model-catalog.d.ts +60 -0
  422. package/dist/src/compiler/model-catalog.js +1 -0
  423. package/dist/src/compiler/module-map.d.ts +48 -0
  424. package/dist/src/compiler/module-map.js +5 -0
  425. package/dist/src/compiler/normalize-agent-config.d.ts +18 -0
  426. package/dist/src/compiler/normalize-agent-config.js +1 -0
  427. package/dist/src/compiler/normalize-channel.d.ts +16 -0
  428. package/dist/src/compiler/normalize-channel.js +1 -0
  429. package/dist/src/compiler/normalize-connection.d.ts +21 -0
  430. package/dist/src/compiler/normalize-connection.js +1 -0
  431. package/dist/src/compiler/normalize-helpers.d.ts +28 -0
  432. package/dist/src/compiler/normalize-helpers.js +1 -0
  433. package/dist/src/compiler/normalize-hook.d.ts +12 -0
  434. package/dist/src/compiler/normalize-hook.js +1 -0
  435. package/dist/src/compiler/normalize-instructions.d.ts +35 -0
  436. package/dist/src/compiler/normalize-instructions.js +1 -0
  437. package/dist/src/compiler/normalize-manifest.d.ts +6 -0
  438. package/dist/src/compiler/normalize-manifest.js +3 -0
  439. package/dist/src/compiler/normalize-sandbox.d.ts +7 -0
  440. package/dist/src/compiler/normalize-sandbox.js +1 -0
  441. package/dist/src/compiler/normalize-schedule.d.ts +14 -0
  442. package/dist/src/compiler/normalize-schedule.js +1 -0
  443. package/dist/src/compiler/normalize-skill.d.ts +21 -0
  444. package/dist/src/compiler/normalize-skill.js +1 -0
  445. package/dist/src/compiler/normalize-subagent.d.ts +29 -0
  446. package/dist/src/compiler/normalize-subagent.js +1 -0
  447. package/dist/src/compiler/normalize-tool.d.ts +34 -0
  448. package/dist/src/compiler/normalize-tool.js +1 -0
  449. package/dist/src/compiler/remote-agent-node.d.ts +22 -0
  450. package/dist/src/compiler/remote-agent-node.js +1 -0
  451. package/dist/src/compiler/workspace-resources.d.ts +14 -0
  452. package/dist/src/compiler/workspace-resources.js +1 -0
  453. package/dist/src/context/accessors.d.ts +40 -0
  454. package/dist/src/context/accessors.js +1 -0
  455. package/dist/src/context/build-callback-context.d.ts +8 -0
  456. package/dist/src/context/build-callback-context.js +1 -0
  457. package/dist/src/context/build-dynamic-tools.d.ts +13 -0
  458. package/dist/src/context/build-dynamic-tools.js +1 -0
  459. package/dist/src/context/container.d.ts +60 -0
  460. package/dist/src/context/container.js +1 -0
  461. package/dist/src/context/dynamic-instruction-lifecycle.d.ts +26 -0
  462. package/dist/src/context/dynamic-instruction-lifecycle.js +1 -0
  463. package/dist/src/context/dynamic-resolve-context.d.ts +12 -0
  464. package/dist/src/context/dynamic-resolve-context.js +1 -0
  465. package/dist/src/context/dynamic-skill-lifecycle.d.ts +24 -0
  466. package/dist/src/context/dynamic-skill-lifecycle.js +1 -0
  467. package/dist/src/context/dynamic-tool-lifecycle.d.ts +25 -0
  468. package/dist/src/context/dynamic-tool-lifecycle.js +1 -0
  469. package/dist/src/context/hook-lifecycle.d.ts +14 -0
  470. package/dist/src/context/hook-lifecycle.js +1 -0
  471. package/dist/src/context/key.d.ts +47 -0
  472. package/dist/src/context/key.js +1 -0
  473. package/dist/src/context/keys.d.ts +105 -0
  474. package/dist/src/context/keys.js +1 -0
  475. package/dist/src/context/node.d.ts +7 -0
  476. package/dist/src/context/node.js +1 -0
  477. package/dist/src/context/provider.d.ts +27 -0
  478. package/dist/src/context/provider.js +1 -0
  479. package/dist/src/context/providers/connection.d.ts +12 -0
  480. package/dist/src/context/providers/connection.js +1 -0
  481. package/dist/src/context/providers/sandbox.d.ts +3 -0
  482. package/dist/src/context/providers/sandbox.js +1 -0
  483. package/dist/src/context/providers/session.d.ts +3 -0
  484. package/dist/src/context/providers/session.js +1 -0
  485. package/dist/src/context/run-step.d.ts +23 -0
  486. package/dist/src/context/run-step.js +1 -0
  487. package/dist/src/context/serialize.d.ts +15 -0
  488. package/dist/src/context/serialize.js +1 -0
  489. package/dist/src/discover/connections.d.ts +34 -0
  490. package/dist/src/discover/connections.js +1 -0
  491. package/dist/src/discover/diagnostics.d.ts +53 -0
  492. package/dist/src/discover/diagnostics.js +1 -0
  493. package/dist/src/discover/discover-agent.d.ts +30 -0
  494. package/dist/src/discover/discover-agent.js +1 -0
  495. package/dist/src/discover/discover-subagent.d.ts +36 -0
  496. package/dist/src/discover/discover-subagent.js +1 -0
  497. package/dist/src/discover/filesystem.d.ts +71 -0
  498. package/dist/src/discover/filesystem.js +1 -0
  499. package/dist/src/discover/grammar.d.ts +202 -0
  500. package/dist/src/discover/grammar.js +1 -0
  501. package/dist/src/discover/lib.d.ts +34 -0
  502. package/dist/src/discover/lib.js +1 -0
  503. package/dist/src/discover/manifest.d.ts +250 -0
  504. package/dist/src/discover/manifest.js +1 -0
  505. package/dist/src/discover/markdown.d.ts +19 -0
  506. package/dist/src/discover/markdown.js +1 -0
  507. package/dist/src/discover/named-source-directory.d.ts +97 -0
  508. package/dist/src/discover/named-source-directory.js +1 -0
  509. package/dist/src/discover/project-source.d.ts +107 -0
  510. package/dist/src/discover/project-source.js +1 -0
  511. package/dist/src/discover/project.d.ts +33 -0
  512. package/dist/src/discover/project.js +1 -0
  513. package/dist/src/discover/sandbox.d.ts +37 -0
  514. package/dist/src/discover/sandbox.js +1 -0
  515. package/dist/src/discover/schedules.d.ts +38 -0
  516. package/dist/src/discover/schedules.js +1 -0
  517. package/dist/src/discover/skills.d.ts +38 -0
  518. package/dist/src/discover/skills.js +1 -0
  519. package/dist/src/discover/slots.d.ts +30 -0
  520. package/dist/src/discover/slots.js +1 -0
  521. package/dist/src/evals/cli/eval.d.ts +18 -0
  522. package/dist/src/evals/cli/eval.js +1 -0
  523. package/dist/src/evals/define-eval-suite.d.ts +16 -0
  524. package/dist/src/evals/define-eval-suite.js +1 -0
  525. package/dist/src/evals/index.d.ts +3 -0
  526. package/dist/src/evals/index.js +1 -0
  527. package/dist/src/evals/loaders/index.d.ts +2 -0
  528. package/dist/src/evals/loaders/index.js +1 -0
  529. package/dist/src/evals/loaders/json.d.ts +12 -0
  530. package/dist/src/evals/loaders/json.js +1 -0
  531. package/dist/src/evals/loaders/yaml.d.ts +16 -0
  532. package/dist/src/evals/loaders/yaml.js +1 -0
  533. package/dist/src/evals/reporters/index.d.ts +2 -0
  534. package/dist/src/evals/reporters/index.js +1 -0
  535. package/dist/src/evals/runner/artifacts.d.ts +11 -0
  536. package/dist/src/evals/runner/artifacts.js +3 -0
  537. package/dist/src/evals/runner/derive-run-facts.d.ts +9 -0
  538. package/dist/src/evals/runner/derive-run-facts.js +1 -0
  539. package/dist/src/evals/runner/discover.d.ts +20 -0
  540. package/dist/src/evals/runner/discover.js +1 -0
  541. package/dist/src/evals/runner/execute-case.d.ts +23 -0
  542. package/dist/src/evals/runner/execute-case.js +1 -0
  543. package/dist/src/evals/runner/execute-suite.d.ts +24 -0
  544. package/dist/src/evals/runner/execute-suite.js +1 -0
  545. package/dist/src/evals/runner/reporters/braintrust.d.ts +27 -0
  546. package/dist/src/evals/runner/reporters/braintrust.js +2 -0
  547. package/dist/src/evals/runner/reporters/console.d.ts +15 -0
  548. package/dist/src/evals/runner/reporters/console.js +1 -0
  549. package/dist/src/evals/runner/reporters/types.d.ts +20 -0
  550. package/dist/src/evals/runner/reporters/types.js +1 -0
  551. package/dist/src/evals/runner/resolve-git-metadata.d.ts +16 -0
  552. package/dist/src/evals/runner/resolve-git-metadata.js +1 -0
  553. package/dist/src/evals/scorers/autoevals-client.d.ts +14 -0
  554. package/dist/src/evals/scorers/autoevals-client.js +2 -0
  555. package/dist/src/evals/scorers/autoevals.d.ts +58 -0
  556. package/dist/src/evals/scorers/autoevals.js +1 -0
  557. package/dist/src/evals/scorers/json.d.ts +10 -0
  558. package/dist/src/evals/scorers/json.js +1 -0
  559. package/dist/src/evals/scorers/run.d.ts +18 -0
  560. package/dist/src/evals/scorers/run.js +1 -0
  561. package/dist/src/evals/scorers/sql.d.ts +9 -0
  562. package/dist/src/evals/scorers/sql.js +1 -0
  563. package/dist/src/evals/scorers/text.d.ts +18 -0
  564. package/dist/src/evals/scorers/text.js +1 -0
  565. package/dist/src/evals/scores/index.d.ts +72 -0
  566. package/dist/src/evals/scores/index.js +1 -0
  567. package/dist/src/evals/types.d.ts +272 -0
  568. package/dist/src/evals/types.js +1 -0
  569. package/dist/src/execution/channel-context.d.ts +5 -0
  570. package/dist/src/execution/channel-context.js +1 -0
  571. package/dist/src/execution/connection-auth-tool-result.d.ts +2 -0
  572. package/dist/src/execution/connection-auth-tool-result.js +1 -0
  573. package/dist/src/execution/create-session-step.d.ts +43 -0
  574. package/dist/src/execution/create-session-step.js +1 -0
  575. package/dist/src/execution/delegated-parent-notification.d.ts +15 -0
  576. package/dist/src/execution/delegated-parent-notification.js +1 -0
  577. package/dist/src/execution/delegated-parent-result.d.ts +14 -0
  578. package/dist/src/execution/delegated-parent-result.js +1 -0
  579. package/dist/src/execution/dispatch-code-mode-runtime-actions-step.d.ts +21 -0
  580. package/dist/src/execution/dispatch-code-mode-runtime-actions-step.js +1 -0
  581. package/dist/src/execution/dispatch-runtime-actions-step.d.ts +19 -0
  582. package/dist/src/execution/dispatch-runtime-actions-step.js +1 -0
  583. package/dist/src/execution/durable-session-migrations/chain.d.ts +38 -0
  584. package/dist/src/execution/durable-session-migrations/chain.js +1 -0
  585. package/dist/src/execution/durable-session-migrations/snapshot.d.ts +22 -0
  586. package/dist/src/execution/durable-session-migrations/snapshot.js +1 -0
  587. package/dist/src/execution/durable-session-migrations/turn-workflow-v0-to-v1.d.ts +12 -0
  588. package/dist/src/execution/durable-session-migrations/turn-workflow-v0-to-v1.js +1 -0
  589. package/dist/src/execution/durable-session-migrations/turn-workflow.d.ts +40 -0
  590. package/dist/src/execution/durable-session-migrations/turn-workflow.js +1 -0
  591. package/dist/src/execution/durable-session-store.d.ts +113 -0
  592. package/dist/src/execution/durable-session-store.js +1 -0
  593. package/dist/src/execution/eve-workflow-attributes.d.ts +136 -0
  594. package/dist/src/execution/eve-workflow-attributes.js +1 -0
  595. package/dist/src/execution/next-driver-action.d.ts +37 -0
  596. package/dist/src/execution/next-driver-action.js +1 -0
  597. package/dist/src/execution/node-step.d.ts +52 -0
  598. package/dist/src/execution/node-step.js +1 -0
  599. package/dist/src/execution/remote-agent-dispatch.d.ts +15 -0
  600. package/dist/src/execution/remote-agent-dispatch.js +1 -0
  601. package/dist/src/execution/runtime-context.d.ts +10 -0
  602. package/dist/src/execution/runtime-context.js +1 -0
  603. package/dist/src/execution/runtime-errors.d.ts +13 -0
  604. package/dist/src/execution/runtime-errors.js +1 -0
  605. package/dist/src/execution/sandbox/bash-tool.d.ts +30 -0
  606. package/dist/src/execution/sandbox/bash-tool.js +1 -0
  607. package/dist/src/execution/sandbox/bindings/local.d.ts +22 -0
  608. package/dist/src/execution/sandbox/bindings/local.js +1 -0
  609. package/dist/src/execution/sandbox/bindings/vercel.d.ts +28 -0
  610. package/dist/src/execution/sandbox/bindings/vercel.js +1 -0
  611. package/dist/src/execution/sandbox/ensure.d.ts +27 -0
  612. package/dist/src/execution/sandbox/ensure.js +1 -0
  613. package/dist/src/execution/sandbox/glob-tool.d.ts +22 -0
  614. package/dist/src/execution/sandbox/glob-tool.js +3 -0
  615. package/dist/src/execution/sandbox/grep-tool.d.ts +26 -0
  616. package/dist/src/execution/sandbox/grep-tool.js +3 -0
  617. package/dist/src/execution/sandbox/lazy-backend.d.ts +15 -0
  618. package/dist/src/execution/sandbox/lazy-backend.js +1 -0
  619. package/dist/src/execution/sandbox/prewarm.d.ts +57 -0
  620. package/dist/src/execution/sandbox/prewarm.js +1 -0
  621. package/dist/src/execution/sandbox/read-file-tool.d.ts +28 -0
  622. package/dist/src/execution/sandbox/read-file-tool.js +3 -0
  623. package/dist/src/execution/sandbox/require-sandbox.d.ts +15 -0
  624. package/dist/src/execution/sandbox/require-sandbox.js +1 -0
  625. package/dist/src/execution/sandbox/ripgrep-probe.d.ts +9 -0
  626. package/dist/src/execution/sandbox/ripgrep-probe.js +1 -0
  627. package/dist/src/execution/sandbox/session.d.ts +17 -0
  628. package/dist/src/execution/sandbox/session.js +3 -0
  629. package/dist/src/execution/sandbox/shell-quote.d.ts +12 -0
  630. package/dist/src/execution/sandbox/shell-quote.js +1 -0
  631. package/dist/src/execution/sandbox/stream-utils.d.ts +9 -0
  632. package/dist/src/execution/sandbox/stream-utils.js +1 -0
  633. package/dist/src/execution/sandbox/truncate-output.d.ts +72 -0
  634. package/dist/src/execution/sandbox/truncate-output.js +3 -0
  635. package/dist/src/execution/sandbox/write-file-tool.d.ts +23 -0
  636. package/dist/src/execution/sandbox/write-file-tool.js +1 -0
  637. package/dist/src/execution/session-callback-step.d.ts +16 -0
  638. package/dist/src/execution/session-callback-step.js +1 -0
  639. package/dist/src/execution/session.d.ts +81 -0
  640. package/dist/src/execution/session.js +5 -0
  641. package/dist/src/execution/skills/instructions.d.ts +19 -0
  642. package/dist/src/execution/skills/instructions.js +2 -0
  643. package/dist/src/execution/skills/types.d.ts +22 -0
  644. package/dist/src/execution/skills/types.js +1 -0
  645. package/dist/src/execution/subagent-adapter.d.ts +43 -0
  646. package/dist/src/execution/subagent-adapter.js +1 -0
  647. package/dist/src/execution/subagent-hitl-proxy.d.ts +37 -0
  648. package/dist/src/execution/subagent-hitl-proxy.js +1 -0
  649. package/dist/src/execution/subagent-invocation.d.ts +16 -0
  650. package/dist/src/execution/subagent-invocation.js +2 -0
  651. package/dist/src/execution/subagent-tool.d.ts +39 -0
  652. package/dist/src/execution/subagent-tool.js +1 -0
  653. package/dist/src/execution/tool-auth.d.ts +42 -0
  654. package/dist/src/execution/tool-auth.js +1 -0
  655. package/dist/src/execution/tool-compaction.d.ts +9 -0
  656. package/dist/src/execution/tool-compaction.js +1 -0
  657. package/dist/src/execution/turn-workflow.d.ts +30 -0
  658. package/dist/src/execution/turn-workflow.js +1 -0
  659. package/dist/src/execution/web-fetch/html.d.ts +15 -0
  660. package/dist/src/execution/web-fetch/html.js +7 -0
  661. package/dist/src/execution/web-fetch/tool.d.ts +34 -0
  662. package/dist/src/execution/web-fetch/tool.js +1 -0
  663. package/dist/src/execution/workflow-callback-url.d.ts +12 -0
  664. package/dist/src/execution/workflow-callback-url.js +1 -0
  665. package/dist/src/execution/workflow-entry.d.ts +26 -0
  666. package/dist/src/execution/workflow-entry.js +1 -0
  667. package/dist/src/execution/workflow-errors.d.ts +14 -0
  668. package/dist/src/execution/workflow-errors.js +1 -0
  669. package/dist/src/execution/workflow-runtime.d.ts +48 -0
  670. package/dist/src/execution/workflow-runtime.js +3 -0
  671. package/dist/src/execution/workflow-steps.d.ts +103 -0
  672. package/dist/src/execution/workflow-steps.js +1 -0
  673. package/dist/src/harness/action-result-helpers.d.ts +40 -0
  674. package/dist/src/harness/action-result-helpers.js +1 -0
  675. package/dist/src/harness/attachment-staging.d.ts +30 -0
  676. package/dist/src/harness/attachment-staging.js +1 -0
  677. package/dist/src/harness/authorization.d.ts +116 -0
  678. package/dist/src/harness/authorization.js +1 -0
  679. package/dist/src/harness/code-mode-interrupt-state.d.ts +26 -0
  680. package/dist/src/harness/code-mode-interrupt-state.js +1 -0
  681. package/dist/src/harness/code-mode-lifecycle.d.ts +16 -0
  682. package/dist/src/harness/code-mode-lifecycle.js +1 -0
  683. package/dist/src/harness/code-mode-runtime-action-state.d.ts +6 -0
  684. package/dist/src/harness/code-mode-runtime-action-state.js +1 -0
  685. package/dist/src/harness/code-mode.d.ts +26 -0
  686. package/dist/src/harness/code-mode.js +1 -0
  687. package/dist/src/harness/compaction.d.ts +43 -0
  688. package/dist/src/harness/compaction.js +4 -0
  689. package/dist/src/harness/emission.d.ts +124 -0
  690. package/dist/src/harness/emission.js +1 -0
  691. package/dist/src/harness/execute-tool.d.ts +28 -0
  692. package/dist/src/harness/execute-tool.js +1 -0
  693. package/dist/src/harness/input-extraction.d.ts +17 -0
  694. package/dist/src/harness/input-extraction.js +1 -0
  695. package/dist/src/harness/input-requests.d.ts +75 -0
  696. package/dist/src/harness/input-requests.js +1 -0
  697. package/dist/src/harness/instrumentation-config.d.ts +18 -0
  698. package/dist/src/harness/instrumentation-config.js +1 -0
  699. package/dist/src/harness/instrumentation-runtime-context.d.ts +23 -0
  700. package/dist/src/harness/instrumentation-runtime-context.js +1 -0
  701. package/dist/src/harness/messages.d.ts +41 -0
  702. package/dist/src/harness/messages.js +1 -0
  703. package/dist/src/harness/model-call-error.d.ts +53 -0
  704. package/dist/src/harness/model-call-error.js +1 -0
  705. package/dist/src/harness/otel-integration.d.ts +9 -0
  706. package/dist/src/harness/otel-integration.js +1 -0
  707. package/dist/src/harness/prompt-cache.d.ts +83 -0
  708. package/dist/src/harness/prompt-cache.js +1 -0
  709. package/dist/src/harness/provider-tools.d.ts +62 -0
  710. package/dist/src/harness/provider-tools.js +1 -0
  711. package/dist/src/harness/proxy-input-requests.d.ts +32 -0
  712. package/dist/src/harness/proxy-input-requests.js +1 -0
  713. package/dist/src/harness/runtime-actions.d.ts +106 -0
  714. package/dist/src/harness/runtime-actions.js +1 -0
  715. package/dist/src/harness/sandbox-surface.d.ts +68 -0
  716. package/dist/src/harness/sandbox-surface.js +1 -0
  717. package/dist/src/harness/step-hooks.d.ts +109 -0
  718. package/dist/src/harness/step-hooks.js +1 -0
  719. package/dist/src/harness/tool-interrupts.d.ts +22 -0
  720. package/dist/src/harness/tool-interrupts.js +1 -0
  721. package/dist/src/harness/tool-loop.d.ts +2 -0
  722. package/dist/src/harness/tool-loop.js +1 -0
  723. package/dist/src/harness/tool-result-pruning.d.ts +8 -0
  724. package/dist/src/harness/tool-result-pruning.js +1 -0
  725. package/dist/src/harness/tools.d.ts +69 -0
  726. package/dist/src/harness/tools.js +1 -0
  727. package/dist/src/harness/turn-tag-state.d.ts +50 -0
  728. package/dist/src/harness/turn-tag-state.js +1 -0
  729. package/dist/src/harness/types.d.ts +229 -0
  730. package/dist/src/harness/types.js +1 -0
  731. package/dist/src/harness/workflow-stream-error.d.ts +29 -0
  732. package/dist/src/harness/workflow-stream-error.js +1 -0
  733. package/dist/src/harness/workflow-tool-description.d.ts +17 -0
  734. package/dist/src/harness/workflow-tool-description.js +23 -0
  735. package/dist/src/index.d.ts +1 -0
  736. package/dist/src/index.js +1 -0
  737. package/dist/src/internal/application/cache-metadata.d.ts +9 -0
  738. package/dist/src/internal/application/cache-metadata.js +1 -0
  739. package/dist/src/internal/application/compiled-artifacts.d.ts +33 -0
  740. package/dist/src/internal/application/compiled-artifacts.js +4 -0
  741. package/dist/src/internal/application/import-specifier.d.ts +17 -0
  742. package/dist/src/internal/application/import-specifier.js +1 -0
  743. package/dist/src/internal/application/package.d.ts +34 -0
  744. package/dist/src/internal/application/package.js +1 -0
  745. package/dist/src/internal/application/paths.d.ts +47 -0
  746. package/dist/src/internal/application/paths.js +1 -0
  747. package/dist/src/internal/application/runtime-compiled-artifacts-source.d.ts +6 -0
  748. package/dist/src/internal/application/runtime-compiled-artifacts-source.js +1 -0
  749. package/dist/src/internal/attachments/data.d.ts +18 -0
  750. package/dist/src/internal/attachments/data.js +1 -0
  751. package/dist/src/internal/attachments/errors.d.ts +38 -0
  752. package/dist/src/internal/attachments/errors.js +1 -0
  753. package/dist/src/internal/attachments/refs.d.ts +55 -0
  754. package/dist/src/internal/attachments/refs.js +1 -0
  755. package/dist/src/internal/attachments/sandbox-refs.d.ts +46 -0
  756. package/dist/src/internal/attachments/sandbox-refs.js +1 -0
  757. package/dist/src/internal/attachments/url-refs.d.ts +17 -0
  758. package/dist/src/internal/attachments/url-refs.js +1 -0
  759. package/dist/src/internal/authored-asset-import-plugin.d.ts +5 -0
  760. package/dist/src/internal/authored-asset-import-plugin.js +1 -0
  761. package/dist/src/internal/authored-definition/channel.d.ts +16 -0
  762. package/dist/src/internal/authored-definition/channel.js +1 -0
  763. package/dist/src/internal/authored-definition/connection.d.ts +18 -0
  764. package/dist/src/internal/authored-definition/connection.js +1 -0
  765. package/dist/src/internal/authored-definition/core.d.ts +46 -0
  766. package/dist/src/internal/authored-definition/core.js +1 -0
  767. package/dist/src/internal/authored-definition/sandbox.d.ts +17 -0
  768. package/dist/src/internal/authored-definition/sandbox.js +1 -0
  769. package/dist/src/internal/authored-definition/schema-backed.d.ts +36 -0
  770. package/dist/src/internal/authored-definition/schema-backed.js +1 -0
  771. package/dist/src/internal/authored-module-bundle.d.ts +4 -0
  772. package/dist/src/internal/authored-module-bundle.js +2 -0
  773. package/dist/src/internal/authored-module-loader.d.ts +6 -0
  774. package/dist/src/internal/authored-module-loader.js +2 -0
  775. package/dist/src/internal/authored-module-map-loader.d.ts +10 -0
  776. package/dist/src/internal/authored-module-map-loader.js +1 -0
  777. package/dist/src/internal/authored-module.d.ts +42 -0
  778. package/dist/src/internal/authored-module.js +1 -0
  779. package/dist/src/internal/authored-package-tsconfig-paths.d.ts +9 -0
  780. package/dist/src/internal/authored-package-tsconfig-paths.js +1 -0
  781. package/dist/src/internal/bundler/nitro-rolldown.d.ts +26 -0
  782. package/dist/src/internal/bundler/nitro-rolldown.js +1 -0
  783. package/dist/src/internal/helpers/markdown.d.ts +45 -0
  784. package/dist/src/internal/helpers/markdown.js +3 -0
  785. package/dist/src/internal/instrumentation.d.ts +40 -0
  786. package/dist/src/internal/instrumentation.js +1 -0
  787. package/dist/src/internal/json-schema.d.ts +1 -0
  788. package/dist/src/internal/json-schema.js +1 -0
  789. package/dist/src/internal/logging.d.ts +100 -0
  790. package/dist/src/internal/logging.js +1 -0
  791. package/dist/src/internal/nitro/dev-runtime-artifacts.d.ts +32 -0
  792. package/dist/src/internal/nitro/dev-runtime-artifacts.js +1 -0
  793. package/dist/src/internal/nitro/host/artifacts-config.d.ts +16 -0
  794. package/dist/src/internal/nitro/host/artifacts-config.js +1 -0
  795. package/dist/src/internal/nitro/host/build-application.d.ts +4 -0
  796. package/dist/src/internal/nitro/host/build-application.js +1 -0
  797. package/dist/src/internal/nitro/host/build-vercel-agent-summary.d.ts +40 -0
  798. package/dist/src/internal/nitro/host/build-vercel-agent-summary.js +1 -0
  799. package/dist/src/internal/nitro/host/channel-routes.d.ts +38 -0
  800. package/dist/src/internal/nitro/host/channel-routes.js +3 -0
  801. package/dist/src/internal/nitro/host/code-mode-runtime-dependency-plugin.d.ts +1 -0
  802. package/dist/src/internal/nitro/host/code-mode-runtime-dependency-plugin.js +1 -0
  803. package/dist/src/internal/nitro/host/compiled-sandbox-backend-prune-plugin.d.ts +13 -0
  804. package/dist/src/internal/nitro/host/compiled-sandbox-backend-prune-plugin.js +2 -0
  805. package/dist/src/internal/nitro/host/configure-nitro-routes.d.ts +9 -0
  806. package/dist/src/internal/nitro/host/configure-nitro-routes.js +4 -0
  807. package/dist/src/internal/nitro/host/create-application-nitro.d.ts +14 -0
  808. package/dist/src/internal/nitro/host/create-application-nitro.js +1 -0
  809. package/dist/src/internal/nitro/host/cron-handler-route.d.ts +41 -0
  810. package/dist/src/internal/nitro/host/cron-handler-route.js +1 -0
  811. package/dist/src/internal/nitro/host/dev-authored-source-watcher.d.ts +29 -0
  812. package/dist/src/internal/nitro/host/dev-authored-source-watcher.js +1 -0
  813. package/dist/src/internal/nitro/host/dispatch-schedule-in-dev.d.ts +41 -0
  814. package/dist/src/internal/nitro/host/dispatch-schedule-in-dev.js +1 -0
  815. package/dist/src/internal/nitro/host/nitro-bundler-config.d.ts +5 -0
  816. package/dist/src/internal/nitro/host/nitro-bundler-config.js +1 -0
  817. package/dist/src/internal/nitro/host/nitro-routing-import-specifier-plugin.d.ts +6 -0
  818. package/dist/src/internal/nitro/host/nitro-routing-import-specifier-plugin.js +1 -0
  819. package/dist/src/internal/nitro/host/prepare-application-host.d.ts +8 -0
  820. package/dist/src/internal/nitro/host/prepare-application-host.js +1 -0
  821. package/dist/src/internal/nitro/host/schedule-task-routes.d.ts +60 -0
  822. package/dist/src/internal/nitro/host/schedule-task-routes.js +2 -0
  823. package/dist/src/internal/nitro/host/server-external-packages.d.ts +5 -0
  824. package/dist/src/internal/nitro/host/server-external-packages.js +1 -0
  825. package/dist/src/internal/nitro/host/start-development-server.d.ts +20 -0
  826. package/dist/src/internal/nitro/host/start-development-server.js +1 -0
  827. package/dist/src/internal/nitro/host/start-production-server.d.ts +8 -0
  828. package/dist/src/internal/nitro/host/start-production-server.js +3 -0
  829. package/dist/src/internal/nitro/host/types.d.ts +31 -0
  830. package/dist/src/internal/nitro/host/types.js +1 -0
  831. package/dist/src/internal/nitro/host/vercel-build-output-config.d.ts +8 -0
  832. package/dist/src/internal/nitro/host/vercel-build-output-config.js +1 -0
  833. package/dist/src/internal/nitro/host/vercel-build-prewarm.d.ts +19 -0
  834. package/dist/src/internal/nitro/host/vercel-build-prewarm.js +1 -0
  835. package/dist/src/internal/nitro/host.d.ts +4 -0
  836. package/dist/src/internal/nitro/host.js +1 -0
  837. package/dist/src/internal/nitro/routes/agent-info/build-agent-info-response.d.ts +86 -0
  838. package/dist/src/internal/nitro/routes/agent-info/build-agent-info-response.js +6 -0
  839. package/dist/src/internal/nitro/routes/agent-info/load-agent-info-data.d.ts +26 -0
  840. package/dist/src/internal/nitro/routes/agent-info/load-agent-info-data.js +1 -0
  841. package/dist/src/internal/nitro/routes/channel-dispatch.d.ts +22 -0
  842. package/dist/src/internal/nitro/routes/channel-dispatch.js +1 -0
  843. package/dist/src/internal/nitro/routes/dev-runtime-artifacts.d.ts +10 -0
  844. package/dist/src/internal/nitro/routes/dev-runtime-artifacts.js +1 -0
  845. package/dist/src/internal/nitro/routes/dev-schedule-dispatch.d.ts +15 -0
  846. package/dist/src/internal/nitro/routes/dev-schedule-dispatch.js +1 -0
  847. package/dist/src/internal/nitro/routes/health.d.ts +14 -0
  848. package/dist/src/internal/nitro/routes/health.js +1 -0
  849. package/dist/src/internal/nitro/routes/index.d.ts +12 -0
  850. package/dist/src/internal/nitro/routes/index.js +151 -0
  851. package/dist/src/internal/nitro/routes/info.d.ts +16 -0
  852. package/dist/src/internal/nitro/routes/info.js +1 -0
  853. package/dist/src/internal/nitro/routes/runtime-artifacts.d.ts +17 -0
  854. package/dist/src/internal/nitro/routes/runtime-artifacts.js +1 -0
  855. package/dist/src/internal/nitro/routes/runtime-stack.d.ts +26 -0
  856. package/dist/src/internal/nitro/routes/runtime-stack.js +1 -0
  857. package/dist/src/internal/nitro/routes/schedule-task.d.ts +12 -0
  858. package/dist/src/internal/nitro/routes/schedule-task.js +1 -0
  859. package/dist/src/internal/node-esm-compat-banner.d.ts +46 -0
  860. package/dist/src/internal/node-esm-compat-banner.js +4 -0
  861. package/dist/src/internal/package-name.d.ts +8 -0
  862. package/dist/src/internal/package-name.js +1 -0
  863. package/dist/src/internal/process/pnpm.d.ts +28 -0
  864. package/dist/src/internal/process/pnpm.js +1 -0
  865. package/dist/src/internal/runtime-model.d.ts +13 -0
  866. package/dist/src/internal/runtime-model.js +1 -0
  867. package/dist/src/internal/runtime-registry.d.ts +77 -0
  868. package/dist/src/internal/runtime-registry.js +1 -0
  869. package/dist/src/internal/vercel-agent-summary.d.ts +210 -0
  870. package/dist/src/internal/vercel-agent-summary.js +1 -0
  871. package/dist/src/internal/workflow/builtins.d.ts +41 -0
  872. package/dist/src/internal/workflow/builtins.js +1 -0
  873. package/dist/src/internal/workflow/index.d.ts +6 -0
  874. package/dist/src/internal/workflow/index.js +1 -0
  875. package/dist/src/internal/workflow-bundle/builder-support.d.ts +71 -0
  876. package/dist/src/internal/workflow-bundle/builder-support.js +9 -0
  877. package/dist/src/internal/workflow-bundle/builder.d.ts +36 -0
  878. package/dist/src/internal/workflow-bundle/builder.js +5 -0
  879. package/dist/src/internal/workflow-bundle/dynamic-tool-transform.d.ts +39 -0
  880. package/dist/src/internal/workflow-bundle/dynamic-tool-transform.js +4 -0
  881. package/dist/src/internal/workflow-bundle/eve-service-route-output.d.ts +4 -0
  882. package/dist/src/internal/workflow-bundle/eve-service-route-output.js +54 -0
  883. package/dist/src/internal/workflow-bundle/nitro-step-entry.d.ts +17 -0
  884. package/dist/src/internal/workflow-bundle/nitro-step-entry.js +2 -0
  885. package/dist/src/internal/workflow-bundle/vercel-workflow-output.d.ts +66 -0
  886. package/dist/src/internal/workflow-bundle/vercel-workflow-output.js +3 -0
  887. package/dist/src/internal/workflow-bundle/workflow-builders.d.ts +44 -0
  888. package/dist/src/internal/workflow-bundle/workflow-builders.js +1 -0
  889. package/dist/src/internal/workflow-bundle/workflow-core-shim.d.ts +82 -0
  890. package/dist/src/internal/workflow-bundle/workflow-core-shim.js +1 -0
  891. package/dist/src/internal/workflow-bundle/workflow-transformer.d.ts +25 -0
  892. package/dist/src/internal/workflow-bundle/workflow-transformer.js +5 -0
  893. package/dist/src/node_modules/.pnpm/@clack_core@1.3.1/node_modules/@clack/core/dist/index.js +10 -0
  894. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/ajv.js +1 -0
  895. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/codegen/code.js +1 -0
  896. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/codegen/index.js +2 -0
  897. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/codegen/scope.js +1 -0
  898. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/errors.js +1 -0
  899. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/index.js +1 -0
  900. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/names.js +1 -0
  901. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/ref_error.js +1 -0
  902. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/resolve.js +1 -0
  903. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/rules.js +1 -0
  904. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/util.js +1 -0
  905. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/validate/applicability.js +1 -0
  906. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/validate/boolSchema.js +1 -0
  907. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/validate/dataType.js +4 -0
  908. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/validate/defaults.js +1 -0
  909. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/validate/index.js +1 -0
  910. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/validate/keyword.js +1 -0
  911. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/compile/validate/subschema.js +1 -0
  912. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/core.js +1 -0
  913. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/refs/data.js +1 -0
  914. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/refs/json-schema-draft-07.js +1 -0
  915. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/runtime/equal.js +1 -0
  916. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/runtime/ucs2length.js +1 -0
  917. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/runtime/uri.js +1 -0
  918. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/runtime/validation_error.js +1 -0
  919. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +1 -0
  920. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +1 -0
  921. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/allOf.js +1 -0
  922. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +1 -0
  923. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/contains.js +1 -0
  924. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +4 -0
  925. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/if.js +1 -0
  926. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/index.js +1 -0
  927. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/items.js +1 -0
  928. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/items2020.js +1 -0
  929. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/not.js +1 -0
  930. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +1 -0
  931. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +1 -0
  932. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +1 -0
  933. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/properties.js +1 -0
  934. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +1 -0
  935. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +1 -0
  936. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/code.js +1 -0
  937. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/core/id.js +1 -0
  938. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/core/index.js +1 -0
  939. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/core/ref.js +1 -0
  940. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/discriminator/index.js +1 -0
  941. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/discriminator/types.js +1 -0
  942. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/draft7.js +1 -0
  943. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/format/format.js +1 -0
  944. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/format/index.js +1 -0
  945. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/metadata.js +1 -0
  946. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/const.js +1 -0
  947. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/enum.js +1 -0
  948. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/index.js +1 -0
  949. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/limitItems.js +1 -0
  950. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/limitLength.js +1 -0
  951. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +1 -0
  952. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +1 -0
  953. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +1 -0
  954. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/pattern.js +1 -0
  955. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/required.js +1 -0
  956. package/dist/src/node_modules/.pnpm/ajv@8.20.0/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +1 -0
  957. package/dist/src/node_modules/.pnpm/autoevals@0.0.132_ws@8.21.0/node_modules/autoevals/jsdist/index.js +384 -0
  958. package/dist/src/node_modules/.pnpm/compute-cosine-similarity@1.1.0/node_modules/compute-cosine-similarity/lib/index.js +1 -0
  959. package/dist/src/node_modules/.pnpm/compute-dot@1.1.0/node_modules/compute-dot/lib/index.js +1 -0
  960. package/dist/src/node_modules/.pnpm/compute-l2norm@1.1.0/node_modules/compute-l2norm/lib/index.js +1 -0
  961. package/dist/src/node_modules/.pnpm/fast-deep-equal@3.1.3/node_modules/fast-deep-equal/index.js +1 -0
  962. package/dist/src/node_modules/.pnpm/fast-string-truncated-width@3.0.3/node_modules/fast-string-truncated-width/dist/index.js +1 -0
  963. package/dist/src/node_modules/.pnpm/fast-string-truncated-width@3.0.3/node_modules/fast-string-truncated-width/dist/utils.js +1 -0
  964. package/dist/src/node_modules/.pnpm/fast-string-width@3.0.2/node_modules/fast-string-width/dist/index.js +1 -0
  965. package/dist/src/node_modules/.pnpm/fast-uri@3.1.2/node_modules/fast-uri/index.js +1 -0
  966. package/dist/src/node_modules/.pnpm/fast-uri@3.1.2/node_modules/fast-uri/lib/schemes.js +1 -0
  967. package/dist/src/node_modules/.pnpm/fast-uri@3.1.2/node_modules/fast-uri/lib/utils.js +1 -0
  968. package/dist/src/node_modules/.pnpm/fast-wrap-ansi@0.2.2/node_modules/fast-wrap-ansi/lib/main.js +5 -0
  969. package/dist/src/node_modules/.pnpm/js-levenshtein@1.1.6/node_modules/js-levenshtein/index.js +1 -0
  970. package/dist/src/node_modules/.pnpm/js-yaml@4.1.1/node_modules/js-yaml/dist/js-yaml.js +32 -0
  971. package/dist/src/node_modules/.pnpm/json-schema-traverse@1.0.0/node_modules/json-schema-traverse/index.js +1 -0
  972. package/dist/src/node_modules/.pnpm/mustache@4.2.0/node_modules/mustache/mustache.js +4 -0
  973. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/_vendor/partial-json-parser/parser.js +2 -0
  974. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/auth/workload-identity-auth.js +1 -0
  975. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/azure.js +1 -0
  976. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/client.js +11 -0
  977. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/core/api-promise.js +1 -0
  978. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/core/error.js +1 -0
  979. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/core/pagination.js +1 -0
  980. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/core/resource.js +1 -0
  981. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/core/streaming.js +3 -0
  982. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/core/uploads.js +1 -0
  983. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/error.js +1 -0
  984. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/index.js +1 -0
  985. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/decoders/line.js +3 -0
  986. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/detect-platform.js +1 -0
  987. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/errors.js +1 -0
  988. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/headers.js +1 -0
  989. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/parse.js +1 -0
  990. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/qs/formats.js +1 -0
  991. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/qs/stringify.js +1 -0
  992. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/qs/utils.js +1 -0
  993. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/request-options.js +1 -0
  994. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/shims.js +1 -0
  995. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/to-file.js +1 -0
  996. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/tslib.js +1 -0
  997. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/uploads.js +1 -0
  998. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils/base64.js +1 -0
  999. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils/bytes.js +1 -0
  1000. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils/env.js +1 -0
  1001. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils/log.js +1 -0
  1002. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils/path.js +2 -0
  1003. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils/query.js +1 -0
  1004. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils/sleep.js +1 -0
  1005. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils/uuid.js +1 -0
  1006. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils/values.js +1 -0
  1007. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/internal/utils.js +1 -0
  1008. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/AbstractChatCompletionRunner.js +1 -0
  1009. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/AssistantStream.js +1 -0
  1010. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/ChatCompletionRunner.js +1 -0
  1011. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/ChatCompletionStream.js +1 -0
  1012. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/ChatCompletionStreamingRunner.js +1 -0
  1013. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/EventStream.js +1 -0
  1014. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/ResponsesParser.js +1 -0
  1015. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/RunnableFunction.js +1 -0
  1016. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/Util.js +1 -0
  1017. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/chatCompletionUtils.js +1 -0
  1018. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/parser.js +1 -0
  1019. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/lib/responses/ResponseStream.js +1 -0
  1020. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/admin.js +1 -0
  1021. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/admin-api-keys.js +1 -0
  1022. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/audit-logs.js +1 -0
  1023. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/certificates.js +1 -0
  1024. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/data-retention.js +1 -0
  1025. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/groups/groups.js +1 -0
  1026. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/groups/roles.js +1 -0
  1027. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/groups/users.js +1 -0
  1028. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/invites.js +1 -0
  1029. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/organization.js +1 -0
  1030. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/api-keys.js +1 -0
  1031. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/certificates.js +1 -0
  1032. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/data-retention.js +1 -0
  1033. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/groups/groups.js +1 -0
  1034. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/groups/roles.js +1 -0
  1035. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/hosted-tool-permissions.js +1 -0
  1036. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/model-permissions.js +1 -0
  1037. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/projects.js +1 -0
  1038. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/rate-limits.js +1 -0
  1039. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/roles.js +1 -0
  1040. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/service-accounts.js +1 -0
  1041. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/spend-alerts.js +1 -0
  1042. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/users/roles.js +1 -0
  1043. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/projects/users/users.js +1 -0
  1044. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/roles.js +1 -0
  1045. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/spend-alerts.js +1 -0
  1046. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/usage.js +1 -0
  1047. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/users/roles.js +1 -0
  1048. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/admin/organization/users/users.js +1 -0
  1049. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/audio/audio.js +1 -0
  1050. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/audio/speech.js +1 -0
  1051. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/audio/transcriptions.js +1 -0
  1052. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/audio/translations.js +1 -0
  1053. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/batches.js +1 -0
  1054. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/assistants.js +1 -0
  1055. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/beta.js +1 -0
  1056. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/chatkit/chatkit.js +1 -0
  1057. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/chatkit/sessions.js +1 -0
  1058. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/chatkit/threads.js +1 -0
  1059. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/realtime/realtime.js +1 -0
  1060. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/realtime/sessions.js +1 -0
  1061. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/realtime/transcription-sessions.js +1 -0
  1062. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/threads/messages.js +1 -0
  1063. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/threads/runs/runs.js +1 -0
  1064. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/threads/runs/steps.js +1 -0
  1065. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/beta/threads/threads.js +1 -0
  1066. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/chat/chat.js +1 -0
  1067. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/chat/completions/completions.js +1 -0
  1068. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/chat/completions/index.js +1 -0
  1069. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/chat/completions/messages.js +1 -0
  1070. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/chat/index.js +1 -0
  1071. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/completions.js +1 -0
  1072. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/containers/containers.js +1 -0
  1073. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/containers/files/content.js +1 -0
  1074. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/containers/files/files.js +1 -0
  1075. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/conversations/conversations.js +1 -0
  1076. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/conversations/items.js +1 -0
  1077. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/embeddings.js +1 -0
  1078. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/evals/evals.js +1 -0
  1079. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/evals/runs/output-items.js +1 -0
  1080. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/evals/runs/runs.js +1 -0
  1081. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/files.js +1 -0
  1082. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/fine-tuning/alpha/alpha.js +1 -0
  1083. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/fine-tuning/alpha/graders.js +1 -0
  1084. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/fine-tuning/checkpoints/checkpoints.js +1 -0
  1085. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/fine-tuning/checkpoints/permissions.js +1 -0
  1086. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/fine-tuning/fine-tuning.js +1 -0
  1087. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/fine-tuning/jobs/checkpoints.js +1 -0
  1088. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/fine-tuning/jobs/jobs.js +1 -0
  1089. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/fine-tuning/methods.js +1 -0
  1090. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/graders/grader-models.js +1 -0
  1091. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/graders/graders.js +1 -0
  1092. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/images.js +1 -0
  1093. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/index.js +1 -0
  1094. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/models.js +1 -0
  1095. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/moderations.js +1 -0
  1096. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/realtime/calls.js +1 -0
  1097. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/realtime/client-secrets.js +1 -0
  1098. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/realtime/realtime.js +1 -0
  1099. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/responses/input-items.js +1 -0
  1100. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/responses/input-tokens.js +1 -0
  1101. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/responses/responses.js +1 -0
  1102. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/shared.js +1 -0
  1103. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/skills/content.js +1 -0
  1104. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/skills/skills.js +1 -0
  1105. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/skills/versions/content.js +1 -0
  1106. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/skills/versions/versions.js +1 -0
  1107. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/uploads/parts.js +1 -0
  1108. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/uploads/uploads.js +1 -0
  1109. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/vector-stores/file-batches.js +1 -0
  1110. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/vector-stores/files.js +1 -0
  1111. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/vector-stores/vector-stores.js +1 -0
  1112. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/videos.js +1 -0
  1113. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/webhooks/index.js +1 -0
  1114. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/webhooks/webhooks.js +1 -0
  1115. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/resources/webhooks.js +1 -0
  1116. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/streaming.js +1 -0
  1117. package/dist/src/node_modules/.pnpm/openai@6.39.1_ws@8.21.0_zod@3.25.76/node_modules/openai/version.js +1 -0
  1118. package/dist/src/node_modules/.pnpm/picocolors@1.1.1/node_modules/picocolors/picocolors.js +1 -0
  1119. package/dist/src/node_modules/.pnpm/sisteransi@1.0.5/node_modules/sisteransi/src/index.js +1 -0
  1120. package/dist/src/node_modules/.pnpm/validate.io-array@1.0.6/node_modules/validate.io-array/lib/index.js +1 -0
  1121. package/dist/src/node_modules/.pnpm/validate.io-function@1.0.2/node_modules/validate.io-function/lib/index.js +1 -0
  1122. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/Options.js +1 -0
  1123. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/Refs.js +1 -0
  1124. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/errorMessages.js +1 -0
  1125. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/getRelativePath.js +1 -0
  1126. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/index.js +1 -0
  1127. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parseDef.js +1 -0
  1128. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parseTypes.js +1 -0
  1129. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/any.js +1 -0
  1130. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/array.js +1 -0
  1131. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js +1 -0
  1132. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js +1 -0
  1133. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js +1 -0
  1134. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js +1 -0
  1135. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/date.js +1 -0
  1136. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/default.js +1 -0
  1137. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js +1 -0
  1138. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js +1 -0
  1139. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js +1 -0
  1140. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js +1 -0
  1141. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/map.js +1 -0
  1142. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js +1 -0
  1143. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/never.js +1 -0
  1144. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/null.js +1 -0
  1145. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js +1 -0
  1146. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/number.js +1 -0
  1147. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/object.js +1 -0
  1148. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js +1 -0
  1149. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js +1 -0
  1150. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js +1 -0
  1151. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js +1 -0
  1152. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/record.js +1 -0
  1153. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/set.js +1 -0
  1154. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/string.js +3 -0
  1155. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js +1 -0
  1156. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js +1 -0
  1157. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/union.js +1 -0
  1158. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js +1 -0
  1159. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/selectParser.js +1 -0
  1160. package/dist/src/node_modules/.pnpm/zod-to-json-schema@3.25.2_zod@3.25.76/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js +1 -0
  1161. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/index.js +1 -0
  1162. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/ZodError.js +1 -0
  1163. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/errors.js +1 -0
  1164. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/external.js +1 -0
  1165. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.js +1 -0
  1166. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.js +1 -0
  1167. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  1168. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/util.js +1 -0
  1169. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/index.js +1 -0
  1170. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/locales/en.js +1 -0
  1171. package/dist/src/node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/types.js +1 -0
  1172. package/dist/src/packages/eve-catalog/src/index.js +1 -0
  1173. package/dist/src/packages/eve-scaffold/src/channels-catalog.js +1 -0
  1174. package/dist/src/packages/eve-scaffold/src/channels.js +7 -0
  1175. package/dist/src/packages/eve-scaffold/src/cli/channel-add-prompter.js +1 -0
  1176. package/dist/src/packages/eve-scaffold/src/cli/channel-setup-prompter.js +1 -0
  1177. package/dist/src/packages/eve-scaffold/src/cli/command-output.js +1 -0
  1178. package/dist/src/packages/eve-scaffold/src/cli/connection-add-prompter.js +1 -0
  1179. package/dist/src/packages/eve-scaffold/src/cli/index.js +1 -0
  1180. package/dist/src/packages/eve-scaffold/src/cli/prompt-ui.js +5 -0
  1181. package/dist/src/packages/eve-scaffold/src/cli/rail-log.js +2 -0
  1182. package/dist/src/packages/eve-scaffold/src/cli/select-component.js +1 -0
  1183. package/dist/src/packages/eve-scaffold/src/cli/select-state.js +1 -0
  1184. package/dist/src/packages/eve-scaffold/src/connections/catalog.js +1 -0
  1185. package/dist/src/packages/eve-scaffold/src/connections.js +21 -0
  1186. package/dist/src/packages/eve-scaffold/src/files.js +1 -0
  1187. package/dist/src/packages/eve-scaffold/src/human-action.js +1 -0
  1188. package/dist/src/packages/eve-scaffold/src/index.js +1 -0
  1189. package/dist/src/packages/eve-scaffold/src/module-files.js +1 -0
  1190. package/dist/src/packages/eve-scaffold/src/package-json.js +1 -0
  1191. package/dist/src/packages/eve-scaffold/src/pnpm-workspace.js +11 -0
  1192. package/dist/src/packages/eve-scaffold/src/primitives/detect-deployment.js +1 -0
  1193. package/dist/src/packages/eve-scaffold/src/primitives/index.js +1 -0
  1194. package/dist/src/packages/eve-scaffold/src/primitives/pnpm-invocation.js +1 -0
  1195. package/dist/src/packages/eve-scaffold/src/primitives/process-output.js +1 -0
  1196. package/dist/src/packages/eve-scaffold/src/primitives/run-pnpm.js +1 -0
  1197. package/dist/src/packages/eve-scaffold/src/primitives/run-vercel.js +1 -0
  1198. package/dist/src/packages/eve-scaffold/src/primitives/update-connection-connector.js +1 -0
  1199. package/dist/src/packages/eve-scaffold/src/primitives/update-slack-channel.js +1 -0
  1200. package/dist/src/packages/eve-scaffold/src/project.js +1 -0
  1201. package/dist/src/packages/eve-scaffold/src/steps/deploy-to-vercel.js +1 -0
  1202. package/dist/src/packages/eve-scaffold/src/steps/index.js +1 -0
  1203. package/dist/src/packages/eve-scaffold/src/steps/project-resolution.js +1 -0
  1204. package/dist/src/packages/eve-scaffold/src/steps/run-add-connection.js +1 -0
  1205. package/dist/src/packages/eve-scaffold/src/steps/run-add-to-agent.js +2 -0
  1206. package/dist/src/packages/eve-scaffold/src/steps/setup-connection.js +1 -0
  1207. package/dist/src/packages/eve-scaffold/src/steps/setup-slackbot.js +1 -0
  1208. package/dist/src/packages/eve-scaffold/src/web-template.js +4691 -0
  1209. package/dist/src/protocol/message.d.ts +732 -0
  1210. package/dist/src/protocol/message.js +2 -0
  1211. package/dist/src/protocol/routes.d.ts +108 -0
  1212. package/dist/src/protocol/routes.js +1 -0
  1213. package/dist/src/public/agents/auth.d.ts +46 -0
  1214. package/dist/src/public/agents/auth.js +1 -0
  1215. package/dist/src/public/channels/auth.d.ts +416 -0
  1216. package/dist/src/public/channels/auth.js +1 -0
  1217. package/dist/src/public/channels/discord/api.d.ts +106 -0
  1218. package/dist/src/public/channels/discord/api.js +2 -0
  1219. package/dist/src/public/channels/discord/defaults.d.ts +15 -0
  1220. package/dist/src/public/channels/discord/defaults.js +3 -0
  1221. package/dist/src/public/channels/discord/discordChannel.d.ts +134 -0
  1222. package/dist/src/public/channels/discord/discordChannel.js +1 -0
  1223. package/dist/src/public/channels/discord/hitl.d.ts +47 -0
  1224. package/dist/src/public/channels/discord/hitl.js +1 -0
  1225. package/dist/src/public/channels/discord/inbound.d.ts +106 -0
  1226. package/dist/src/public/channels/discord/inbound.js +2 -0
  1227. package/dist/src/public/channels/discord/index.d.ts +23 -0
  1228. package/dist/src/public/channels/discord/index.js +1 -0
  1229. package/dist/src/public/channels/discord/responses.d.ts +11 -0
  1230. package/dist/src/public/channels/discord/responses.js +1 -0
  1231. package/dist/src/public/channels/discord/verify.d.ts +46 -0
  1232. package/dist/src/public/channels/discord/verify.js +1 -0
  1233. package/dist/src/public/channels/discord/verifyInbound.d.ts +6 -0
  1234. package/dist/src/public/channels/discord/verifyInbound.js +1 -0
  1235. package/dist/src/public/channels/eve.d.ts +81 -0
  1236. package/dist/src/public/channels/eve.js +2 -0
  1237. package/dist/src/public/channels/github/api.d.ts +177 -0
  1238. package/dist/src/public/channels/github/api.js +1 -0
  1239. package/dist/src/public/channels/github/auth.d.ts +82 -0
  1240. package/dist/src/public/channels/github/auth.js +2 -0
  1241. package/dist/src/public/channels/github/binding.d.ts +59 -0
  1242. package/dist/src/public/channels/github/binding.js +1 -0
  1243. package/dist/src/public/channels/github/checkout.d.ts +48 -0
  1244. package/dist/src/public/channels/github/checkout.js +1 -0
  1245. package/dist/src/public/channels/github/constants.d.ts +2 -0
  1246. package/dist/src/public/channels/github/constants.js +1 -0
  1247. package/dist/src/public/channels/github/defaults.d.ts +26 -0
  1248. package/dist/src/public/channels/github/defaults.js +3 -0
  1249. package/dist/src/public/channels/github/dispatch.d.ts +34 -0
  1250. package/dist/src/public/channels/github/dispatch.js +1 -0
  1251. package/dist/src/public/channels/github/githubChannel.d.ts +126 -0
  1252. package/dist/src/public/channels/github/githubChannel.js +1 -0
  1253. package/dist/src/public/channels/github/inbound.d.ts +183 -0
  1254. package/dist/src/public/channels/github/inbound.js +2 -0
  1255. package/dist/src/public/channels/github/index.d.ts +9 -0
  1256. package/dist/src/public/channels/github/index.js +1 -0
  1257. package/dist/src/public/channels/github/limits.d.ts +4 -0
  1258. package/dist/src/public/channels/github/limits.js +2 -0
  1259. package/dist/src/public/channels/github/pr-context.d.ts +46 -0
  1260. package/dist/src/public/channels/github/pr-context.js +5 -0
  1261. package/dist/src/public/channels/github/state.d.ts +60 -0
  1262. package/dist/src/public/channels/github/state.js +1 -0
  1263. package/dist/src/public/channels/github/verify.d.ts +35 -0
  1264. package/dist/src/public/channels/github/verify.js +1 -0
  1265. package/dist/src/public/channels/index.d.ts +89 -0
  1266. package/dist/src/public/channels/index.js +1 -0
  1267. package/dist/src/public/channels/linear/api.d.ts +122 -0
  1268. package/dist/src/public/channels/linear/api.js +69 -0
  1269. package/dist/src/public/channels/linear/auth.d.ts +22 -0
  1270. package/dist/src/public/channels/linear/auth.js +1 -0
  1271. package/dist/src/public/channels/linear/constants.d.ts +2 -0
  1272. package/dist/src/public/channels/linear/constants.js +1 -0
  1273. package/dist/src/public/channels/linear/defaults.d.ts +16 -0
  1274. package/dist/src/public/channels/linear/defaults.js +3 -0
  1275. package/dist/src/public/channels/linear/hitl.d.ts +14 -0
  1276. package/dist/src/public/channels/linear/hitl.js +4 -0
  1277. package/dist/src/public/channels/linear/inbound.d.ts +88 -0
  1278. package/dist/src/public/channels/linear/inbound.js +2 -0
  1279. package/dist/src/public/channels/linear/index.d.ts +8 -0
  1280. package/dist/src/public/channels/linear/index.js +1 -0
  1281. package/dist/src/public/channels/linear/linearChannel.d.ts +138 -0
  1282. package/dist/src/public/channels/linear/linearChannel.js +1 -0
  1283. package/dist/src/public/channels/linear/verify.d.ts +22 -0
  1284. package/dist/src/public/channels/linear/verify.js +1 -0
  1285. package/dist/src/public/channels/slack/api-encoding.d.ts +5 -0
  1286. package/dist/src/public/channels/slack/api-encoding.js +1 -0
  1287. package/dist/src/public/channels/slack/api.d.ts +258 -0
  1288. package/dist/src/public/channels/slack/api.js +1 -0
  1289. package/dist/src/public/channels/slack/attachments.d.ts +51 -0
  1290. package/dist/src/public/channels/slack/attachments.js +1 -0
  1291. package/dist/src/public/channels/slack/auth.d.ts +16 -0
  1292. package/dist/src/public/channels/slack/auth.js +1 -0
  1293. package/dist/src/public/channels/slack/blocks.d.ts +45 -0
  1294. package/dist/src/public/channels/slack/blocks.js +3 -0
  1295. package/dist/src/public/channels/slack/connections.d.ts +53 -0
  1296. package/dist/src/public/channels/slack/connections.js +1 -0
  1297. package/dist/src/public/channels/slack/constants.d.ts +7 -0
  1298. package/dist/src/public/channels/slack/constants.js +1 -0
  1299. package/dist/src/public/channels/slack/defaults.d.ts +36 -0
  1300. package/dist/src/public/channels/slack/defaults.js +4 -0
  1301. package/dist/src/public/channels/slack/hitl.d.ts +141 -0
  1302. package/dist/src/public/channels/slack/hitl.js +1 -0
  1303. package/dist/src/public/channels/slack/inbound.d.ts +122 -0
  1304. package/dist/src/public/channels/slack/inbound.js +2 -0
  1305. package/dist/src/public/channels/slack/index.d.ts +22 -0
  1306. package/dist/src/public/channels/slack/index.js +1 -0
  1307. package/dist/src/public/channels/slack/interactions.d.ts +64 -0
  1308. package/dist/src/public/channels/slack/interactions.js +1 -0
  1309. package/dist/src/public/channels/slack/limits.d.ts +62 -0
  1310. package/dist/src/public/channels/slack/limits.js +1 -0
  1311. package/dist/src/public/channels/slack/mrkdwn.d.ts +38 -0
  1312. package/dist/src/public/channels/slack/mrkdwn.js +1 -0
  1313. package/dist/src/public/channels/slack/slackChannel.d.ts +303 -0
  1314. package/dist/src/public/channels/slack/slackChannel.js +1 -0
  1315. package/dist/src/public/channels/slack/thread.d.ts +33 -0
  1316. package/dist/src/public/channels/slack/thread.js +1 -0
  1317. package/dist/src/public/channels/slack/utils.d.ts +1 -0
  1318. package/dist/src/public/channels/slack/utils.js +1 -0
  1319. package/dist/src/public/channels/slack/verify.d.ts +48 -0
  1320. package/dist/src/public/channels/slack/verify.js +1 -0
  1321. package/dist/src/public/channels/teams/api.d.ts +155 -0
  1322. package/dist/src/public/channels/teams/api.js +4 -0
  1323. package/dist/src/public/channels/teams/attachments.d.ts +35 -0
  1324. package/dist/src/public/channels/teams/attachments.js +1 -0
  1325. package/dist/src/public/channels/teams/defaults.d.ts +24 -0
  1326. package/dist/src/public/channels/teams/defaults.js +3 -0
  1327. package/dist/src/public/channels/teams/hitl.d.ts +49 -0
  1328. package/dist/src/public/channels/teams/hitl.js +1 -0
  1329. package/dist/src/public/channels/teams/inbound.d.ts +85 -0
  1330. package/dist/src/public/channels/teams/inbound.js +3 -0
  1331. package/dist/src/public/channels/teams/index.d.ts +19 -0
  1332. package/dist/src/public/channels/teams/index.js +1 -0
  1333. package/dist/src/public/channels/teams/limits.d.ts +8 -0
  1334. package/dist/src/public/channels/teams/limits.js +1 -0
  1335. package/dist/src/public/channels/teams/teamsChannel.d.ts +164 -0
  1336. package/dist/src/public/channels/teams/teamsChannel.js +1 -0
  1337. package/dist/src/public/channels/teams/verify.d.ts +50 -0
  1338. package/dist/src/public/channels/teams/verify.js +1 -0
  1339. package/dist/src/public/channels/telegram/api.d.ts +120 -0
  1340. package/dist/src/public/channels/telegram/api.js +2 -0
  1341. package/dist/src/public/channels/telegram/attachments.d.ts +31 -0
  1342. package/dist/src/public/channels/telegram/attachments.js +1 -0
  1343. package/dist/src/public/channels/telegram/defaults.d.ts +9 -0
  1344. package/dist/src/public/channels/telegram/defaults.js +3 -0
  1345. package/dist/src/public/channels/telegram/hitl.d.ts +59 -0
  1346. package/dist/src/public/channels/telegram/hitl.js +1 -0
  1347. package/dist/src/public/channels/telegram/inbound.d.ts +102 -0
  1348. package/dist/src/public/channels/telegram/inbound.js +2 -0
  1349. package/dist/src/public/channels/telegram/index.d.ts +19 -0
  1350. package/dist/src/public/channels/telegram/index.js +1 -0
  1351. package/dist/src/public/channels/telegram/telegramChannel.d.ts +127 -0
  1352. package/dist/src/public/channels/telegram/telegramChannel.js +1 -0
  1353. package/dist/src/public/channels/telegram/verify.d.ts +35 -0
  1354. package/dist/src/public/channels/telegram/verify.js +1 -0
  1355. package/dist/src/public/channels/twilio/api.d.ts +74 -0
  1356. package/dist/src/public/channels/twilio/api.js +1 -0
  1357. package/dist/src/public/channels/twilio/defaults.d.ts +17 -0
  1358. package/dist/src/public/channels/twilio/defaults.js +3 -0
  1359. package/dist/src/public/channels/twilio/inbound.d.ts +60 -0
  1360. package/dist/src/public/channels/twilio/inbound.js +2 -0
  1361. package/dist/src/public/channels/twilio/index.d.ts +5 -0
  1362. package/dist/src/public/channels/twilio/index.js +1 -0
  1363. package/dist/src/public/channels/twilio/twilioChannel.d.ts +195 -0
  1364. package/dist/src/public/channels/twilio/twilioChannel.js +1 -0
  1365. package/dist/src/public/channels/twilio/twiml.d.ts +37 -0
  1366. package/dist/src/public/channels/twilio/twiml.js +1 -0
  1367. package/dist/src/public/channels/twilio/verify.d.ts +50 -0
  1368. package/dist/src/public/channels/twilio/verify.js +1 -0
  1369. package/dist/src/public/channels/upload-policy.d.ts +101 -0
  1370. package/dist/src/public/channels/upload-policy.js +1 -0
  1371. package/dist/src/public/connections/errors.d.ts +117 -0
  1372. package/dist/src/public/connections/errors.js +1 -0
  1373. package/dist/src/public/connections/index.d.ts +9 -0
  1374. package/dist/src/public/connections/index.js +1 -0
  1375. package/dist/src/public/context/index.d.ts +14 -0
  1376. package/dist/src/public/context/index.js +1 -0
  1377. package/dist/src/public/definitions/agent.d.ts +24 -0
  1378. package/dist/src/public/definitions/agent.js +1 -0
  1379. package/dist/src/public/definitions/callback-context.d.ts +33 -0
  1380. package/dist/src/public/definitions/callback-context.js +1 -0
  1381. package/dist/src/public/definitions/channel.d.ts +126 -0
  1382. package/dist/src/public/definitions/channel.js +1 -0
  1383. package/dist/src/public/definitions/connections/mcp.d.ts +82 -0
  1384. package/dist/src/public/definitions/connections/mcp.js +1 -0
  1385. package/dist/src/public/definitions/connections/openapi.d.ts +99 -0
  1386. package/dist/src/public/definitions/connections/openapi.js +1 -0
  1387. package/dist/src/public/definitions/connections/protocol.d.ts +12 -0
  1388. package/dist/src/public/definitions/connections/protocol.js +1 -0
  1389. package/dist/src/public/definitions/defineChannel.d.ts +145 -0
  1390. package/dist/src/public/definitions/defineChannel.js +1 -0
  1391. package/dist/src/public/definitions/exact.d.ts +7 -0
  1392. package/dist/src/public/definitions/exact.js +1 -0
  1393. package/dist/src/public/definitions/hook.d.ts +60 -0
  1394. package/dist/src/public/definitions/hook.js +1 -0
  1395. package/dist/src/public/definitions/instructions.d.ts +31 -0
  1396. package/dist/src/public/definitions/instructions.js +1 -0
  1397. package/dist/src/public/definitions/instrumentation.d.ts +1 -0
  1398. package/dist/src/public/definitions/instrumentation.js +1 -0
  1399. package/dist/src/public/definitions/remote-agent.d.ts +49 -0
  1400. package/dist/src/public/definitions/remote-agent.js +1 -0
  1401. package/dist/src/public/definitions/sandbox-backend.d.ts +17 -0
  1402. package/dist/src/public/definitions/sandbox-backend.js +1 -0
  1403. package/dist/src/public/definitions/sandbox.d.ts +24 -0
  1404. package/dist/src/public/definitions/sandbox.js +1 -0
  1405. package/dist/src/public/definitions/schedule.d.ts +96 -0
  1406. package/dist/src/public/definitions/schedule.js +1 -0
  1407. package/dist/src/public/definitions/skill.d.ts +21 -0
  1408. package/dist/src/public/definitions/skill.js +1 -0
  1409. package/dist/src/public/definitions/source.d.ts +8 -0
  1410. package/dist/src/public/definitions/source.js +1 -0
  1411. package/dist/src/public/definitions/state.d.ts +37 -0
  1412. package/dist/src/public/definitions/state.js +1 -0
  1413. package/dist/src/public/definitions/tool.d.ts +285 -0
  1414. package/dist/src/public/definitions/tool.js +1 -0
  1415. package/dist/src/public/hooks/index.d.ts +8 -0
  1416. package/dist/src/public/hooks/index.js +1 -0
  1417. package/dist/src/public/index.d.ts +5 -0
  1418. package/dist/src/public/index.js +1 -0
  1419. package/dist/src/public/instructions/index.d.ts +7 -0
  1420. package/dist/src/public/instructions/index.js +1 -0
  1421. package/dist/src/public/instrumentation/index.d.ts +144 -0
  1422. package/dist/src/public/instrumentation/index.js +1 -0
  1423. package/dist/src/public/next/index.d.ts +86 -0
  1424. package/dist/src/public/next/index.js +1 -0
  1425. package/dist/src/public/next/server.d.ts +6 -0
  1426. package/dist/src/public/next/server.js +1 -0
  1427. package/dist/src/public/next/vercel-output-config.d.ts +9 -0
  1428. package/dist/src/public/next/vercel-output-config.js +1 -0
  1429. package/dist/src/public/nuxt/dev-server.d.ts +24 -0
  1430. package/dist/src/public/nuxt/dev-server.js +1 -0
  1431. package/dist/src/public/nuxt/index.d.ts +1 -0
  1432. package/dist/src/public/nuxt/index.js +1 -0
  1433. package/dist/src/public/nuxt/module.d.ts +43 -0
  1434. package/dist/src/public/nuxt/module.js +1 -0
  1435. package/dist/src/public/nuxt/routing.d.ts +55 -0
  1436. package/dist/src/public/nuxt/routing.js +1 -0
  1437. package/dist/src/public/nuxt/vercel-json.d.ts +17 -0
  1438. package/dist/src/public/nuxt/vercel-json.js +1 -0
  1439. package/dist/src/public/sandbox/backends/default.d.ts +22 -0
  1440. package/dist/src/public/sandbox/backends/default.js +1 -0
  1441. package/dist/src/public/sandbox/backends/local.d.ts +17 -0
  1442. package/dist/src/public/sandbox/backends/local.js +1 -0
  1443. package/dist/src/public/sandbox/backends/vercel.d.ts +24 -0
  1444. package/dist/src/public/sandbox/backends/vercel.js +1 -0
  1445. package/dist/src/public/sandbox/index.d.ts +13 -0
  1446. package/dist/src/public/sandbox/index.js +1 -0
  1447. package/dist/src/public/sandbox/local-sandbox.d.ts +7 -0
  1448. package/dist/src/public/sandbox/local-sandbox.js +1 -0
  1449. package/dist/src/public/sandbox/vercel-sandbox.d.ts +42 -0
  1450. package/dist/src/public/sandbox/vercel-sandbox.js +1 -0
  1451. package/dist/src/public/schedules/index.d.ts +4 -0
  1452. package/dist/src/public/schedules/index.js +1 -0
  1453. package/dist/src/public/skills/index.d.ts +7 -0
  1454. package/dist/src/public/skills/index.js +1 -0
  1455. package/dist/src/public/sveltekit/dev-server.d.ts +24 -0
  1456. package/dist/src/public/sveltekit/dev-server.js +1 -0
  1457. package/dist/src/public/sveltekit/index.d.ts +44 -0
  1458. package/dist/src/public/sveltekit/index.js +1 -0
  1459. package/dist/src/public/sveltekit/routing.d.ts +32 -0
  1460. package/dist/src/public/sveltekit/routing.js +1 -0
  1461. package/dist/src/public/sveltekit/vercel-json.d.ts +17 -0
  1462. package/dist/src/public/sveltekit/vercel-json.js +1 -0
  1463. package/dist/src/public/tool-result-narrowing.d.ts +74 -0
  1464. package/dist/src/public/tool-result-narrowing.js +1 -0
  1465. package/dist/src/public/tools/approval/approval-helpers.d.ts +19 -0
  1466. package/dist/src/public/tools/approval/approval-helpers.js +1 -0
  1467. package/dist/src/public/tools/approval/index.d.ts +5 -0
  1468. package/dist/src/public/tools/approval/index.js +1 -0
  1469. package/dist/src/public/tools/defaults.d.ts +60 -0
  1470. package/dist/src/public/tools/defaults.js +1 -0
  1471. package/dist/src/public/tools/define-bash-tool.d.ts +21 -0
  1472. package/dist/src/public/tools/define-bash-tool.js +1 -0
  1473. package/dist/src/public/tools/define-glob-tool.d.ts +22 -0
  1474. package/dist/src/public/tools/define-glob-tool.js +1 -0
  1475. package/dist/src/public/tools/define-grep-tool.d.ts +22 -0
  1476. package/dist/src/public/tools/define-grep-tool.js +1 -0
  1477. package/dist/src/public/tools/define-read-file-tool.d.ts +27 -0
  1478. package/dist/src/public/tools/define-read-file-tool.js +1 -0
  1479. package/dist/src/public/tools/define-write-file-tool.d.ts +22 -0
  1480. package/dist/src/public/tools/define-write-file-tool.js +1 -0
  1481. package/dist/src/public/tools/index.d.ts +12 -0
  1482. package/dist/src/public/tools/index.js +1 -0
  1483. package/dist/src/public/tools/internal.d.ts +12 -0
  1484. package/dist/src/public/tools/internal.js +1 -0
  1485. package/dist/src/public/types/json.d.ts +28 -0
  1486. package/dist/src/public/types/json.js +1 -0
  1487. package/dist/src/react/index.d.ts +3 -0
  1488. package/dist/src/react/index.js +1 -0
  1489. package/dist/src/react/use-eve-agent.d.ts +76 -0
  1490. package/dist/src/react/use-eve-agent.js +1 -0
  1491. package/dist/src/runtime/actions/keys.d.ts +11 -0
  1492. package/dist/src/runtime/actions/keys.js +1 -0
  1493. package/dist/src/runtime/actions/types.d.ts +150 -0
  1494. package/dist/src/runtime/actions/types.js +1 -0
  1495. package/dist/src/runtime/agent/bootstrap-model-utils.d.ts +37 -0
  1496. package/dist/src/runtime/agent/bootstrap-model-utils.js +1 -0
  1497. package/dist/src/runtime/agent/bootstrap-model.d.ts +7 -0
  1498. package/dist/src/runtime/agent/bootstrap-model.js +1 -0
  1499. package/dist/src/runtime/agent/bootstrap.d.ts +44 -0
  1500. package/dist/src/runtime/agent/bootstrap.js +1 -0
  1501. package/dist/src/runtime/agent/mock-model-adapter.d.ts +21 -0
  1502. package/dist/src/runtime/agent/mock-model-adapter.js +5 -0
  1503. package/dist/src/runtime/agent/mock-model-skill-selection.d.ts +9 -0
  1504. package/dist/src/runtime/agent/mock-model-skill-selection.js +4 -0
  1505. package/dist/src/runtime/agent/mock-structured-output.d.ts +5 -0
  1506. package/dist/src/runtime/agent/mock-structured-output.js +1 -0
  1507. package/dist/src/runtime/agent/resolve-model.d.ts +11 -0
  1508. package/dist/src/runtime/agent/resolve-model.js +1 -0
  1509. package/dist/src/runtime/attributes/emit.d.ts +73 -0
  1510. package/dist/src/runtime/attributes/emit.js +1 -0
  1511. package/dist/src/runtime/cache-key.d.ts +9 -0
  1512. package/dist/src/runtime/cache-key.js +1 -0
  1513. package/dist/src/runtime/channels/registry.d.ts +27 -0
  1514. package/dist/src/runtime/channels/registry.js +1 -0
  1515. package/dist/src/runtime/compiled-artifacts-source.d.ts +44 -0
  1516. package/dist/src/runtime/compiled-artifacts-source.js +1 -0
  1517. package/dist/src/runtime/connections/authorization-complete-page.d.ts +11 -0
  1518. package/dist/src/runtime/connections/authorization-complete-page.js +53 -0
  1519. package/dist/src/runtime/connections/authorization-tokens.d.ts +51 -0
  1520. package/dist/src/runtime/connections/authorization-tokens.js +1 -0
  1521. package/dist/src/runtime/connections/callback-route.d.ts +55 -0
  1522. package/dist/src/runtime/connections/callback-route.js +1 -0
  1523. package/dist/src/runtime/connections/mcp-client.d.ts +74 -0
  1524. package/dist/src/runtime/connections/mcp-client.js +1 -0
  1525. package/dist/src/runtime/connections/openapi-client.d.ts +43 -0
  1526. package/dist/src/runtime/connections/openapi-client.js +1 -0
  1527. package/dist/src/runtime/connections/openapi-operations.d.ts +30 -0
  1528. package/dist/src/runtime/connections/openapi-operations.js +1 -0
  1529. package/dist/src/runtime/connections/openapi-schema.d.ts +39 -0
  1530. package/dist/src/runtime/connections/openapi-schema.js +1 -0
  1531. package/dist/src/runtime/connections/openapi-security.d.ts +41 -0
  1532. package/dist/src/runtime/connections/openapi-security.js +1 -0
  1533. package/dist/src/runtime/connections/openapi-spec.d.ts +20 -0
  1534. package/dist/src/runtime/connections/openapi-spec.js +1 -0
  1535. package/dist/src/runtime/connections/principal.d.ts +66 -0
  1536. package/dist/src/runtime/connections/principal.js +1 -0
  1537. package/dist/src/runtime/connections/registry.d.ts +36 -0
  1538. package/dist/src/runtime/connections/registry.js +1 -0
  1539. package/dist/src/runtime/connections/scoped-authorization.d.ts +61 -0
  1540. package/dist/src/runtime/connections/scoped-authorization.js +1 -0
  1541. package/dist/src/runtime/connections/types.d.ts +349 -0
  1542. package/dist/src/runtime/connections/types.js +1 -0
  1543. package/dist/src/runtime/connections/validate-authorization.d.ts +21 -0
  1544. package/dist/src/runtime/connections/validate-authorization.js +1 -0
  1545. package/dist/src/runtime/framework-channels/index.d.ts +11 -0
  1546. package/dist/src/runtime/framework-channels/index.js +1 -0
  1547. package/dist/src/runtime/framework-tools/ask-question.d.ts +21 -0
  1548. package/dist/src/runtime/framework-tools/ask-question.js +1 -0
  1549. package/dist/src/runtime/framework-tools/bash.d.ts +17 -0
  1550. package/dist/src/runtime/framework-tools/bash.js +1 -0
  1551. package/dist/src/runtime/framework-tools/code-mode-connection-auth.d.ts +29 -0
  1552. package/dist/src/runtime/framework-tools/code-mode-connection-auth.js +1 -0
  1553. package/dist/src/runtime/framework-tools/connection-search-dynamic.d.ts +35 -0
  1554. package/dist/src/runtime/framework-tools/connection-search-dynamic.js +1 -0
  1555. package/dist/src/runtime/framework-tools/file-state.d.ts +62 -0
  1556. package/dist/src/runtime/framework-tools/file-state.js +1 -0
  1557. package/dist/src/runtime/framework-tools/final-output.d.ts +14 -0
  1558. package/dist/src/runtime/framework-tools/final-output.js +1 -0
  1559. package/dist/src/runtime/framework-tools/glob.d.ts +17 -0
  1560. package/dist/src/runtime/framework-tools/glob.js +2 -0
  1561. package/dist/src/runtime/framework-tools/grep.d.ts +17 -0
  1562. package/dist/src/runtime/framework-tools/grep.js +2 -0
  1563. package/dist/src/runtime/framework-tools/index.d.ts +26 -0
  1564. package/dist/src/runtime/framework-tools/index.js +1 -0
  1565. package/dist/src/runtime/framework-tools/read-file.d.ts +17 -0
  1566. package/dist/src/runtime/framework-tools/read-file.js +2 -0
  1567. package/dist/src/runtime/framework-tools/skill.d.ts +4 -0
  1568. package/dist/src/runtime/framework-tools/skill.js +1 -0
  1569. package/dist/src/runtime/framework-tools/todo.d.ts +39 -0
  1570. package/dist/src/runtime/framework-tools/todo.js +3 -0
  1571. package/dist/src/runtime/framework-tools/web-fetch.d.ts +5 -0
  1572. package/dist/src/runtime/framework-tools/web-fetch.js +2 -0
  1573. package/dist/src/runtime/framework-tools/web-search.d.ts +26 -0
  1574. package/dist/src/runtime/framework-tools/web-search.js +1 -0
  1575. package/dist/src/runtime/framework-tools/write-file.d.ts +17 -0
  1576. package/dist/src/runtime/framework-tools/write-file.js +2 -0
  1577. package/dist/src/runtime/governance/auth/http-basic.d.ts +8 -0
  1578. package/dist/src/runtime/governance/auth/http-basic.js +1 -0
  1579. package/dist/src/runtime/governance/auth/jwt-ecdsa.d.ts +8 -0
  1580. package/dist/src/runtime/governance/auth/jwt-ecdsa.js +1 -0
  1581. package/dist/src/runtime/governance/auth/jwt-hmac.d.ts +8 -0
  1582. package/dist/src/runtime/governance/auth/jwt-hmac.js +1 -0
  1583. package/dist/src/runtime/governance/auth/oidc.d.ts +8 -0
  1584. package/dist/src/runtime/governance/auth/oidc.js +1 -0
  1585. package/dist/src/runtime/governance/auth/token-claims.d.ts +17 -0
  1586. package/dist/src/runtime/governance/auth/token-claims.js +1 -0
  1587. package/dist/src/runtime/governance/auth/types.d.ts +104 -0
  1588. package/dist/src/runtime/governance/auth/types.js +1 -0
  1589. package/dist/src/runtime/governance/network/ip-allow-list.d.ts +17 -0
  1590. package/dist/src/runtime/governance/network/ip-allow-list.js +1 -0
  1591. package/dist/src/runtime/graph.d.ts +46 -0
  1592. package/dist/src/runtime/graph.js +1 -0
  1593. package/dist/src/runtime/hooks/registry.d.ts +40 -0
  1594. package/dist/src/runtime/hooks/registry.js +1 -0
  1595. package/dist/src/runtime/input/types.d.ts +78 -0
  1596. package/dist/src/runtime/input/types.js +1 -0
  1597. package/dist/src/runtime/loaders/artifact-paths.d.ts +18 -0
  1598. package/dist/src/runtime/loaders/artifact-paths.js +1 -0
  1599. package/dist/src/runtime/loaders/bundled-artifacts.d.ts +36 -0
  1600. package/dist/src/runtime/loaders/bundled-artifacts.js +1 -0
  1601. package/dist/src/runtime/loaders/compile-metadata.d.ts +14 -0
  1602. package/dist/src/runtime/loaders/compile-metadata.js +1 -0
  1603. package/dist/src/runtime/loaders/manifest.d.ts +21 -0
  1604. package/dist/src/runtime/loaders/manifest.js +1 -0
  1605. package/dist/src/runtime/loaders/module-map.d.ts +21 -0
  1606. package/dist/src/runtime/loaders/module-map.js +1 -0
  1607. package/dist/src/runtime/prompt/compose.d.ts +19 -0
  1608. package/dist/src/runtime/prompt/compose.js +2 -0
  1609. package/dist/src/runtime/prompt/connections.d.ts +9 -0
  1610. package/dist/src/runtime/prompt/connections.js +2 -0
  1611. package/dist/src/runtime/resolve-agent-graph.d.ts +17 -0
  1612. package/dist/src/runtime/resolve-agent-graph.js +1 -0
  1613. package/dist/src/runtime/resolve-agent.d.ts +16 -0
  1614. package/dist/src/runtime/resolve-agent.js +1 -0
  1615. package/dist/src/runtime/resolve-channel.d.ts +17 -0
  1616. package/dist/src/runtime/resolve-channel.js +1 -0
  1617. package/dist/src/runtime/resolve-connection.d.ts +15 -0
  1618. package/dist/src/runtime/resolve-connection.js +1 -0
  1619. package/dist/src/runtime/resolve-dynamic-instructions.d.ts +4 -0
  1620. package/dist/src/runtime/resolve-dynamic-instructions.js +1 -0
  1621. package/dist/src/runtime/resolve-dynamic-skill.d.ts +8 -0
  1622. package/dist/src/runtime/resolve-dynamic-skill.js +1 -0
  1623. package/dist/src/runtime/resolve-dynamic-tool.d.ts +12 -0
  1624. package/dist/src/runtime/resolve-dynamic-tool.js +1 -0
  1625. package/dist/src/runtime/resolve-helpers.d.ts +43 -0
  1626. package/dist/src/runtime/resolve-helpers.js +1 -0
  1627. package/dist/src/runtime/resolve-hook.d.ts +13 -0
  1628. package/dist/src/runtime/resolve-hook.js +1 -0
  1629. package/dist/src/runtime/resolve-sandbox.d.ts +13 -0
  1630. package/dist/src/runtime/resolve-sandbox.js +1 -0
  1631. package/dist/src/runtime/resolve-tool.d.ts +14 -0
  1632. package/dist/src/runtime/resolve-tool.js +1 -0
  1633. package/dist/src/runtime/sandbox/keys.d.ts +38 -0
  1634. package/dist/src/runtime/sandbox/keys.js +1 -0
  1635. package/dist/src/runtime/sandbox/registry.d.ts +61 -0
  1636. package/dist/src/runtime/sandbox/registry.js +1 -0
  1637. package/dist/src/runtime/sandbox/template-plan.d.ts +26 -0
  1638. package/dist/src/runtime/sandbox/template-plan.js +1 -0
  1639. package/dist/src/runtime/schedules/register.d.ts +35 -0
  1640. package/dist/src/runtime/schedules/register.js +1 -0
  1641. package/dist/src/runtime/schedules/resolve-schedule.d.ts +31 -0
  1642. package/dist/src/runtime/schedules/resolve-schedule.js +1 -0
  1643. package/dist/src/runtime/session-callback-route.d.ts +6 -0
  1644. package/dist/src/runtime/session-callback-route.js +1 -0
  1645. package/dist/src/runtime/sessions/auth.d.ts +39 -0
  1646. package/dist/src/runtime/sessions/auth.js +1 -0
  1647. package/dist/src/runtime/sessions/compiled-agent-cache.d.ts +47 -0
  1648. package/dist/src/runtime/sessions/compiled-agent-cache.js +1 -0
  1649. package/dist/src/runtime/sessions/runtime-context-keys.d.ts +11 -0
  1650. package/dist/src/runtime/sessions/runtime-context-keys.js +1 -0
  1651. package/dist/src/runtime/sessions/runtime-session.d.ts +52 -0
  1652. package/dist/src/runtime/sessions/runtime-session.js +1 -0
  1653. package/dist/src/runtime/sessions/turn.d.ts +33 -0
  1654. package/dist/src/runtime/sessions/turn.js +1 -0
  1655. package/dist/src/runtime/skills/fragment-context.d.ts +4 -0
  1656. package/dist/src/runtime/skills/fragment-context.js +1 -0
  1657. package/dist/src/runtime/skills/sandbox-access.d.ts +21 -0
  1658. package/dist/src/runtime/skills/sandbox-access.js +1 -0
  1659. package/dist/src/runtime/subagents/registry.d.ts +32 -0
  1660. package/dist/src/runtime/subagents/registry.js +1 -0
  1661. package/dist/src/runtime/tools/registry.d.ts +30 -0
  1662. package/dist/src/runtime/tools/registry.js +1 -0
  1663. package/dist/src/runtime/types.d.ts +368 -0
  1664. package/dist/src/runtime/types.js +1 -0
  1665. package/dist/src/runtime/validation.d.ts +5 -0
  1666. package/dist/src/runtime/validation.js +1 -0
  1667. package/dist/src/runtime/workspace/seed-files.d.ts +15 -0
  1668. package/dist/src/runtime/workspace/seed-files.js +1 -0
  1669. package/dist/src/runtime/workspace/spec.d.ts +6 -0
  1670. package/dist/src/runtime/workspace/spec.js +2 -0
  1671. package/dist/src/runtime/workspace/types.d.ts +18 -0
  1672. package/dist/src/runtime/workspace/types.js +1 -0
  1673. package/dist/src/sandbox/state.d.ts +33 -0
  1674. package/dist/src/sandbox/state.js +1 -0
  1675. package/dist/src/services/dev-client/request-headers.d.ts +74 -0
  1676. package/dist/src/services/dev-client/request-headers.js +1 -0
  1677. package/dist/src/services/dev-client/stream.d.ts +5 -0
  1678. package/dist/src/services/dev-client/stream.js +1 -0
  1679. package/dist/src/services/dev-client/url.d.ts +11 -0
  1680. package/dist/src/services/dev-client/url.js +1 -0
  1681. package/dist/src/services/dev-client/vercel-auth-error.d.ts +42 -0
  1682. package/dist/src/services/dev-client/vercel-auth-error.js +2 -0
  1683. package/dist/src/services/dev-client.d.ts +75 -0
  1684. package/dist/src/services/dev-client.js +1 -0
  1685. package/dist/src/services/inspect-application.d.ts +23 -0
  1686. package/dist/src/services/inspect-application.js +1 -0
  1687. package/dist/src/shared/agent-definition.d.ts +154 -0
  1688. package/dist/src/shared/agent-definition.js +1 -0
  1689. package/dist/src/shared/code-mode.d.ts +29 -0
  1690. package/dist/src/shared/code-mode.js +1 -0
  1691. package/dist/src/shared/dynamic-tool-definition.d.ts +159 -0
  1692. package/dist/src/shared/dynamic-tool-definition.js +1 -0
  1693. package/dist/src/shared/errors.d.ts +17 -0
  1694. package/dist/src/shared/errors.js +1 -0
  1695. package/dist/src/shared/guards.d.ts +45 -0
  1696. package/dist/src/shared/guards.js +1 -0
  1697. package/dist/src/shared/json-schema.d.ts +9 -0
  1698. package/dist/src/shared/json-schema.js +1 -0
  1699. package/dist/src/shared/json-schemas.d.ts +10 -0
  1700. package/dist/src/shared/json-schemas.js +1 -0
  1701. package/dist/src/shared/json.d.ts +34 -0
  1702. package/dist/src/shared/json.js +1 -0
  1703. package/dist/src/shared/network-address.d.ts +11 -0
  1704. package/dist/src/shared/network-address.js +1 -0
  1705. package/dist/src/shared/node.d.ts +6 -0
  1706. package/dist/src/shared/node.js +1 -0
  1707. package/dist/src/shared/optional.d.ts +3 -0
  1708. package/dist/src/shared/optional.js +1 -0
  1709. package/dist/src/shared/run-mode.d.ts +7 -0
  1710. package/dist/src/shared/run-mode.js +1 -0
  1711. package/dist/src/shared/sandbox-backend.d.ts +149 -0
  1712. package/dist/src/shared/sandbox-backend.js +1 -0
  1713. package/dist/src/shared/sandbox-definition.d.ts +110 -0
  1714. package/dist/src/shared/sandbox-definition.js +1 -0
  1715. package/dist/src/shared/sandbox-network-policy.d.ts +23 -0
  1716. package/dist/src/shared/sandbox-network-policy.js +1 -0
  1717. package/dist/src/shared/sandbox-session.d.ts +144 -0
  1718. package/dist/src/shared/sandbox-session.js +1 -0
  1719. package/dist/src/shared/skill-definition.d.ts +24 -0
  1720. package/dist/src/shared/skill-definition.js +1 -0
  1721. package/dist/src/shared/skill-package.d.ts +50 -0
  1722. package/dist/src/shared/skill-package.js +1 -0
  1723. package/dist/src/shared/source-ref.d.ts +53 -0
  1724. package/dist/src/shared/source-ref.js +1 -0
  1725. package/dist/src/shared/tool-definition.d.ts +58 -0
  1726. package/dist/src/shared/tool-definition.js +1 -0
  1727. package/dist/src/shared/vercel-output-directory.d.ts +2 -0
  1728. package/dist/src/shared/vercel-output-directory.js +1 -0
  1729. package/dist/src/svelte/index.d.ts +3 -0
  1730. package/dist/src/svelte/index.js +3 -0
  1731. package/dist/src/svelte/use-eve-agent.d.ts +105 -0
  1732. package/dist/src/svelte/use-eve-agent.js +3 -0
  1733. package/dist/src/vue/index.d.ts +3 -0
  1734. package/dist/src/vue/index.js +3 -0
  1735. package/dist/src/vue/use-eve-agent.d.ts +103 -0
  1736. package/dist/src/vue/use-eve-agent.js +3 -0
  1737. package/package.json +336 -71
  1738. package/.npmignore +0 -2
  1739. package/component.json +0 -13
  1740. package/dr.json +0 -10
  1741. package/e.html +0 -66
  1742. package/eve.js +0 -435
  1743. package/template.dot +0 -13
@@ -0,0 +1,41 @@
1
+ /**
2
+ * Built-in Workflow response body steps used by Eve-owned workflow bundles.
3
+ *
4
+ * These mirror Workflow's tiny `workflow/internal/builtins` module without
5
+ * requiring Eve to depend on Workflow's umbrella package.
6
+ */
7
+ export declare function __builtin_response_array_buffer(this: Request | Response): Promise<ArrayBuffer>;
8
+ export declare function __builtin_response_json(this: Request | Response): Promise<unknown>;
9
+ export declare function __builtin_response_text(this: Request | Response): Promise<string>;
10
+ /**
11
+ * Step bridge for `experimental_setAttributes`.
12
+ *
13
+ * Mirrors the `__builtin_set_attributes` step from
14
+ * `@workflow/workflow/internal/builtins`. The workflow-body shim's
15
+ * `experimental_setAttributes` (in `internal/workflow-bundle/workflow-core-shim.ts`)
16
+ * dispatches into the workflow runtime with the step id
17
+ * `"__builtin_set_attributes"`; the runtime walks the deployment's step
18
+ * registry to resolve it, so the step has to live inside an
19
+ * Eve-vendored builtins module that the registry visits. The Eve bundler
20
+ * already pulls this file in via `resolveWorkflowModulePath("workflow/internal/builtins")`,
21
+ * so adding the function here is sufficient to register it.
22
+ *
23
+ * Implementation notes — kept intentionally close to the upstream:
24
+ * - Reads world and run id directly from the runtime's `globalThis`
25
+ * symbols rather than importing `@workflow/core`. Importing the
26
+ * compiled core from a step file would re-introduce the bundling
27
+ * chain we want to keep out of step bodies.
28
+ * - Treats missing world support as a silent best-effort no-op with a
29
+ * single process-wide warning, matching upstream behaviour and the
30
+ * contract on `setEveAttributes`.
31
+ * - On any other error, retries up to `EVE_INTERNAL_ATTRIBUTES_MAX_ATTEMPTS - 1`
32
+ * times via the runtime's normal step retry path, then degrades to a
33
+ * `console.error` so failed attribute writes never escalate into a
34
+ * `FatalError` and tear down the user's agent run.
35
+ */
36
+ export declare function __builtin_set_attributes(changes: Array<{
37
+ key: string;
38
+ value: string | null;
39
+ }>, options?: {
40
+ allowReservedAttributes?: boolean;
41
+ }): Promise<void>;
@@ -0,0 +1 @@
1
+ async function __builtin_response_array_buffer(){"use step";return await this.arrayBuffer()}async function __builtin_response_json(){"use step";return await this.json()}async function __builtin_response_text(){"use step";return await this.text()}const EVE_UNSUPPORTED_WORLD_WARNED=Symbol.for(`@workflow/setAttributes//unsupportedWorldWarned`);function formatUnknownError(e){return e instanceof Error?e.stack??`${e.name}: ${e.message}`:String(e)}async function __builtin_set_attributes(t,n){"use step";if(t.length===0)return;let r=globalThis,i=r[Symbol.for(`WORKFLOW_STEP_CONTEXT_STORAGE`)]?.getStore?.(),a=typeof i?.stepMetadata?.attempt==`number`?i.stepMetadata.attempt:3,o=r[Symbol.for(`@workflow/world//cache`)];if(typeof o?.runs?.experimentalSetAttributes!=`function`){if(r[EVE_UNSUPPORTED_WORLD_WARNED]!==!0){r[EVE_UNSUPPORTED_WORLD_WARNED]=!0;let t=o?.name===void 0?``:` (${o.name})`;console.warn(`[eve] setAttributes: the current world implementation${t} does not implement experimentalSetAttributes; this call (and any subsequent setAttributes calls in this process) is a no-op. Attributes will become available once the world adapter adds support.`)}return}try{let e=i?.workflowMetadata?.workflowRunId;if(e===void 0)throw Error(`__builtin_set_attributes: no workflow run id available in step context`);await o.runs.experimentalSetAttributes(e,t,n)}catch(e){if(a<3)throw e;console.error(`[eve] setAttributes: failed to post tags after 3 attempts; dropping the internal attribute write. ${formatUnknownError(e)}`)}}__builtin_set_attributes.maxRetries=2;export{__builtin_response_array_buffer,__builtin_response_json,__builtin_response_text,__builtin_set_attributes};
@@ -0,0 +1,6 @@
1
+ export * from "#compiled/@workflow/core/index.js";
2
+ /**
3
+ * Workflow-safe fetch helper retained for generated or authored workflow code
4
+ * that imports `fetch` from the historical `workflow` package surface.
5
+ */
6
+ export declare function fetch(...args: Parameters<typeof globalThis.fetch>): Promise<Response>;
@@ -0,0 +1 @@
1
+ export*from"#compiled/@workflow/core/index.js";async function fetch(...e){"use step";return await globalThis.fetch(...e)}export{fetch};
@@ -0,0 +1,71 @@
1
+ import { type WorkflowManifest } from "#internal/workflow-bundle/workflow-builders.js";
2
+ export declare const WORKFLOW_VIRTUAL_ENTRY_ID = "\0eve-workflow-entry";
3
+ export interface WorkflowBundleBuilderConfig {
4
+ readonly buildTarget: "standalone";
5
+ readonly dirs: readonly string[];
6
+ readonly externalPackages: readonly string[];
7
+ readonly projectRoot: string;
8
+ readonly watch: boolean;
9
+ readonly workingDir: string;
10
+ }
11
+ export interface WorkflowBundleDiscoveredEntries {
12
+ readonly discoveredSerdeFiles: string[];
13
+ readonly discoveredSteps: string[];
14
+ readonly discoveredWorkflows: string[];
15
+ }
16
+ export interface WorkflowBundleCreateWorkflowsBundleOptions {
17
+ readonly bundleFinalOutput?: boolean;
18
+ readonly discoveredEntries?: WorkflowBundleDiscoveredEntries;
19
+ readonly format?: "cjs" | "esm";
20
+ readonly inputFiles: readonly string[];
21
+ readonly keepInterimBundleContext?: boolean;
22
+ readonly outfile: string;
23
+ readonly tsconfigPath?: string;
24
+ }
25
+ export interface WorkflowBundleCreateWorkflowsBundleResult {
26
+ readonly bundleFinal?: (interimBundleResult: string) => Promise<void>;
27
+ readonly interimBundleCtx?: undefined;
28
+ readonly manifest: WorkflowManifest;
29
+ }
30
+ interface WorkflowRolldownPlugin {
31
+ readonly name: string;
32
+ readonly resolveId?: (source: string, importer?: string) => unknown;
33
+ readonly load?: (id: string) => unknown;
34
+ readonly transform?: (code: string, id: string) => unknown;
35
+ }
36
+ export declare function collectWorkflowInputFiles(root: string): Promise<string[]>;
37
+ export declare function createWorkflowImport(filePath: string, workingDir: string): string;
38
+ export declare function createWorkflowVirtualEntryPlugin(source: string): WorkflowRolldownPlugin;
39
+ export declare function createWorkflowPseudoPackagePlugin(): WorkflowRolldownPlugin;
40
+ export declare function createWorkflowRuntimeAliasPlugin(): WorkflowRolldownPlugin;
41
+ export declare function createEvePackageImportsPlugin(workingDir: string, options?: {
42
+ workflowCondition?: boolean;
43
+ }): WorkflowRolldownPlugin;
44
+ export declare function createWorkflowTransformPlugin(input: {
45
+ manifest: WorkflowManifest;
46
+ mode?: "step" | "workflow";
47
+ projectRoot: string;
48
+ sideEffectFiles?: readonly string[];
49
+ workingDir: string;
50
+ }): WorkflowRolldownPlugin;
51
+ export declare function bundleWorkflowStepRegistrations(input: {
52
+ builtinsPath: string;
53
+ discoveredEntries: WorkflowBundleDiscoveredEntries;
54
+ outfile: string;
55
+ projectRoot: string;
56
+ tsconfigPath?: string;
57
+ workingDir: string;
58
+ }): Promise<void>;
59
+ export declare function createWorkflowNodeBuiltinGuardPlugin(): WorkflowRolldownPlugin;
60
+ export declare function bundleFinalWorkflowOutput(input: {
61
+ bundleFinalOutput: boolean;
62
+ code: string;
63
+ format: "cjs" | "esm";
64
+ outfile: string;
65
+ workingDir: string;
66
+ }): Promise<void>;
67
+ export declare function convertStepsManifest(steps: WorkflowManifest["steps"]): Record<string, unknown>;
68
+ export declare function convertWorkflowsManifest(workflows: WorkflowManifest["workflows"]): Record<string, unknown>;
69
+ export declare function convertClassesManifest(classes: WorkflowManifest["classes"]): Record<string, unknown>;
70
+ export declare function atomicWriteFile(targetPath: string, contents: string | Buffer | Uint8Array): Promise<void>;
71
+ export {};
@@ -0,0 +1,9 @@
1
+ import{builtinModules}from"node:module";import{dirname,join,relative,resolve}from"node:path";import{mkdir,readFile,readdir,rename,writeFile}from"node:fs/promises";import{existsSync}from"node:fs";import{resolveWorkflowModulePath}from"#internal/application/package.js";import{buildWithNitroRolldown,getSingleRolldownChunk}from"#internal/bundler/nitro-rolldown.js";import{applyWorkflowTransform,getImportPath}from"#internal/workflow-bundle/workflow-builders.js";const WORKFLOW_VIRTUAL_ENTRY_ID=`\0eve-workflow-entry`,PSEUDO_PACKAGES=new Set([`server-only`,`client-only`,`next/dist/compiled/server-only`,`next/dist/compiled/client-only`]),NODE_BUILTIN_MODULES=new Set([...builtinModules,...builtinModules.map(e=>`node:${e}`)]),WORKFLOW_INPUT_EXTENSIONS=new Set([`.ts`,`.tsx`,`.mts`,`.cts`,`.js`,`.jsx`,`.mjs`,`.cjs`]),IGNORED_INPUT_DIRECTORIES=new Set([`node_modules`,`.git`,`.next`,`.nuxt`,`.output`,`.vercel`,`.workflow-data`,`.workflow-vitest`,`.well-known`,`.svelte-kit`,`.turbo`,`.cache`,`.yarn`,`.pnpm-store`]);async function collectWorkflowInputFiles(e){let t=[];async function visit(e){let r;try{r=await readdir(e,{withFileTypes:!0})}catch(e){if(e instanceof Error&&`code`in e&&e.code===`ENOENT`)return;throw e}for(let i of r){if(i.isDirectory()){IGNORED_INPUT_DIRECTORIES.has(i.name)||await visit(join(e,i.name));continue}if(!i.isFile())continue;let r=i.name.match(/\.[^.]+$/)?.[0];r!==void 0&&WORKFLOW_INPUT_EXTENSIONS.has(r)&&t.push(join(e,i.name))}}return await visit(e),t}function createWorkflowImport(e,t){let{importPath:n,isPackage:r}=getImportPath(e,t);return r?`import ${JSON.stringify(n)};`:`import ${JSON.stringify(toRelativeImportSpecifier(t,e))};`}function createWorkflowVirtualEntryPlugin(e){return{name:`eve-workflow-virtual-entry`,resolveId(e){if(e===`\0eve-workflow-entry`)return{id:e}},load(t){if(t===`\0eve-workflow-entry`)return{code:e,moduleSideEffects:!0,moduleType:`js`}}}}function createWorkflowPseudoPackagePlugin(){return{name:`eve-workflow-pseudo-packages`,resolveId(e){if(PSEUDO_PACKAGES.has(e))return{id:`\0eve-workflow-pseudo-package:${e}`}},load(e){if(e.startsWith(`\0eve-workflow-pseudo-package:`))return{code:``,moduleType:`js`}}}}function createWorkflowRuntimeAliasPlugin(){return{name:`eve-workflow-runtime-aliases`,resolveId(e){if(!(e!==`workflow`&&!e.startsWith(`workflow/`)))return resolveWorkflowModulePath(e)}}}function createEvePackageImportsPlugin(e,t={}){return{name:`eve-package-imports`,resolveId(r){let i=r.match(/^#compiled\/(.+)$/)?.[1];if(i!==void 0)return t.workflowCondition===!0&&i===`@workflow/core/index.js`?resolveFirstExistingPath([join(e,`src`,`internal`,`workflow-bundle`,`workflow-core-shim.ts`),join(e,`dist`,`src`,`internal`,`workflow-bundle`,`workflow-core-shim.js`)]):resolveFirstExistingPath([join(e,`.generated`,`compiled`,i),join(e,`dist`,`src`,`compiled`,i)]);let a=r.match(/^#(.+)\.js$/)?.[1];if(a!==void 0)return resolveFirstExistingPath([`.ts`,`.tsx`,`.mts`,`.cts`,`.js`,`.jsx`,`.mjs`,`.cjs`].flatMap(t=>[join(e,`src`,`${a}${t}`),join(e,`dist`,`src`,`${a}${t}`)]))}}}function createWorkflowTransformPlugin(e){let t=new Set(e.sideEffectFiles?.map(e=>e.replaceAll(`\\`,`/`))??[]);return{name:`eve-workflow-transform`,async load(n){if(!isJavaScriptLikePath(n))return;let r=await readFile(n,`utf8`),i=await applyWorkflowTransform(createManifestRelativeFilepath(e.workingDir,n),r.replace(/require\(\s*(['"])server-only\1\s*\)/g,`void 0`).replace(/require\(\s*(['"])client-only\1\s*\)/g,`void 0`),e.mode??`workflow`,n,e.projectRoot);return mergeWorkflowManifest(e.manifest,i.workflowManifest),{code:i.code,map:null,moduleSideEffects:t.has(n.replaceAll(`\\`,`/`))||void 0}}}}async function bundleWorkflowStepRegistrations(e){let t=[...e.discoveredEntries.discoveredSteps].sort(),n=new Set(t),r=[...e.discoveredEntries.discoveredSerdeFiles].sort().filter(e=>!n.has(e)),i={},a=[createWorkflowImport(e.builtinsPath,e.workingDir),...t.map(t=>createWorkflowImport(t,e.workingDir)),...r.map(t=>createWorkflowImport(t,e.workingDir)),`export const __steps_registered = true;`].join(`
2
+ `),o=getSingleRolldownChunk(await buildWithNitroRolldown({cwd:e.workingDir,input:WORKFLOW_VIRTUAL_ENTRY_ID,platform:`node`,plugins:[createWorkflowVirtualEntryPlugin(a),createWorkflowPseudoPackagePlugin(),createWorkflowRuntimeAliasPlugin(),createEvePackageImportsPlugin(e.workingDir),createWorkflowTransformPlugin({manifest:i,mode:`step`,projectRoot:e.projectRoot,sideEffectFiles:[...t,...r],workingDir:e.workingDir})],resolve:{conditionNames:[`eve-source`,`node`,`import`,`default`],extensions:[`.ts`,`.tsx`,`.mts`,`.cts`,`.js`,`.jsx`,`.mjs`,`.cjs`],mainFields:[`module`,`main`]},tsconfig:e.tsconfigPath??!1,write:!1,output:{codeSplitting:!1,comments:!1,format:`esm`,sourcemap:`inline`}}),`step registrations bundle for "${e.outfile}"`);await writeWorkflowBundleAtomically(e.outfile,o.code)}function createWorkflowNodeBuiltinGuardPlugin(){return{name:`eve-workflow-node-builtins`,resolveId(e,t){let n=e.startsWith(`node:`)?e.slice(5):e;if(!NODE_BUILTIN_MODULES.has(e)&&!NODE_BUILTIN_MODULES.has(n))return;let r=t?` (imported by "${t}")`:``;throw Error(`Workflow bundle cannot import Node.js builtin "${e}"${r}. Move Node.js APIs behind a "use step" function, or keep the importing module out of the workflow driver body (only reachable through a "use step").`)}}}async function bundleFinalWorkflowOutput(e){let t=`// biome-ignore-all lint: generated file
3
+ /* eslint-disable */
4
+ import { workflowEntrypoint } from 'workflow/runtime';
5
+
6
+ const workflowCode = \`${(e.code.endsWith(`
7
+ `)?e.code:`${e.code}\n`).replace(/[\\`$]/g,`\\$&`)}\`;
8
+
9
+ export const POST = workflowEntrypoint(workflowCode);`;if(!e.bundleFinalOutput){await writeWorkflowBundleAtomically(e.outfile,t);return}let n=getSingleRolldownChunk(await buildWithNitroRolldown({cwd:e.workingDir,input:WORKFLOW_VIRTUAL_ENTRY_ID,external:e=>e===`@aws-sdk/credential-provider-web-identity`,platform:`node`,plugins:[createWorkflowVirtualEntryPlugin(t)],write:!1,output:{comments:!1,format:e.format,sourcemap:!1}}),`final workflow bundle for "${e.outfile}"`);await writeWorkflowBundleAtomically(e.outfile,n.code)}function convertStepsManifest(e){let t={};for(let[n,r]of Object.entries(e??{})){t[n]={};for(let[e,i]of Object.entries(r))t[n][e]={stepId:i.stepId}}return t}function convertWorkflowsManifest(e){let t={};for(let[n,r]of Object.entries(e??{})){t[n]={};for(let[e,i]of Object.entries(r))t[n][e]={graph:{edges:[],nodes:[]},workflowId:i.workflowId}}return t}function convertClassesManifest(e){let t={};for(let[n,r]of Object.entries(e??{})){t[n]={};for(let[e,i]of Object.entries(r))t[n][e]={classId:i.classId}}return t}function toRelativeImportSpecifier(e,t){let n=relative(e,t).replaceAll(`\\`,`/`);return n.startsWith(`./`)||n.startsWith(`../`)?n:`./${n}`}function resolveFirstExistingPath(e){for(let t of e)if(existsSync(t))return{id:resolve(t)}}async function writeWorkflowBundleAtomically(e,n){await mkdir(dirname(e),{recursive:!0});let r=`${e}.${process.pid}.${Date.now()}.tmp`;await writeFile(r,n),await rename(r,e)}function mergeWorkflowManifest(e,t){e.steps=mergeWorkflowManifestSection(e.steps,t.steps),e.workflows=mergeWorkflowManifestSection(e.workflows,t.workflows),e.classes=mergeWorkflowManifestSection(e.classes,t.classes)}function mergeWorkflowManifestSection(e,t){if(t===void 0)return e;let n={...e};for(let[e,r]of Object.entries(t))n[e]={...n[e],...r};return n}function createManifestRelativeFilepath(e,t){let n=t.replaceAll(`\\`,`/`),i=relative(e.replaceAll(`\\`,`/`),n).replaceAll(`\\`,`/`);return i.startsWith(`../`)&&(i=i.split(`/`).filter(e=>e!==`..`).join(`/`)),i}function isJavaScriptLikePath(e){return/\.(?:[cm]?[jt]sx?)$/.test(e)}async function atomicWriteFile(e,t){let n=`${e}.tmp-${process.pid}-${Date.now().toString(36)}`;await writeFile(n,t),await rename(n,e)}export{WORKFLOW_VIRTUAL_ENTRY_ID,atomicWriteFile,bundleFinalWorkflowOutput,bundleWorkflowStepRegistrations,collectWorkflowInputFiles,convertClassesManifest,convertStepsManifest,convertWorkflowsManifest,createEvePackageImportsPlugin,createWorkflowImport,createWorkflowNodeBuiltinGuardPlugin,createWorkflowPseudoPackagePlugin,createWorkflowRuntimeAliasPlugin,createWorkflowTransformPlugin,createWorkflowVirtualEntryPlugin};
@@ -0,0 +1,36 @@
1
+ import { type WorkflowBundleBuilderConfig, type WorkflowBundleCreateWorkflowsBundleOptions, type WorkflowBundleCreateWorkflowsBundleResult, type WorkflowBundleDiscoveredEntries } from "#internal/workflow-bundle/builder-support.js";
2
+ import { type WorkflowManifest } from "#internal/workflow-bundle/workflow-builders.js";
3
+ export declare class WorkflowBundleBuilder {
4
+ #private;
5
+ protected readonly config: WorkflowBundleBuilderConfig;
6
+ constructor(options: WorkflowBundleBuilderOptions);
7
+ build(options?: {
8
+ nitroStepOutfile?: string;
9
+ nitroWorkflowOutfile?: string;
10
+ }): Promise<void>;
11
+ protected get transformProjectRoot(): string;
12
+ protected findTsConfigPath(): Promise<string | undefined>;
13
+ protected getInputFiles(): Promise<string[]>;
14
+ protected discoverEntries(inputs: readonly string[], _outdir: string, _tsconfigPath?: string): Promise<WorkflowBundleDiscoveredEntries>;
15
+ protected createWorkflowsBundle({ bundleFinalOutput, discoveredEntries, format, inputFiles, keepInterimBundleContext, outfile, tsconfigPath, }: WorkflowBundleCreateWorkflowsBundleOptions): Promise<WorkflowBundleCreateWorkflowsBundleResult>;
16
+ protected createManifest({ manifest, manifestDir, }: {
17
+ manifest: WorkflowManifest;
18
+ manifestDir: string;
19
+ workflowBundlePath: string;
20
+ }): Promise<string | undefined>;
21
+ buildVercelOutput(options: {
22
+ flowNitroOutputDir: string;
23
+ outputDir: string;
24
+ runtime?: string;
25
+ }): Promise<void>;
26
+ }
27
+ interface WorkflowBundleBuilderOptions {
28
+ appRoot: string;
29
+ compiledArtifactsBootstrapPath: string;
30
+ outDir: string;
31
+ rootDir: string;
32
+ watch: boolean;
33
+ /** Test-harness-only: also scans `src/internal/testing/`. */
34
+ includeTestFixtures?: boolean;
35
+ }
36
+ export {};
@@ -0,0 +1,5 @@
1
+ import{dirname,join,relative,resolve}from"node:path";import{cp,mkdir,readFile,rm,writeFile}from"node:fs/promises";import{resolvePackageSourceDirectoryPath,resolveWorkflowModulePath}from"#internal/application/package.js";import{normalizeEsmImportSpecifier}from"#internal/application/import-specifier.js";import{buildWithNitroRolldown,getSingleRolldownChunk}from"#internal/bundler/nitro-rolldown.js";import{prepareEveVersionedCacheDirectory,writeEveVersionedCacheMetadata}from"#internal/application/cache-metadata.js";import{WORKFLOW_BUILDER_DEFERRED_PACKAGES,WORKFLOW_STEP_EXTERNAL_PACKAGES,copyNitroFunctionDirectory,createWorkflowFunctionEnvironment,retargetNitroFunctionDirectoryToWorkflowRoute}from"#internal/workflow-bundle/vercel-workflow-output.js";import{WORKFLOW_QUEUE_TRIGGER,detectWorkflowPatterns}from"#internal/workflow-bundle/workflow-builders.js";import{Buffer}from"node:buffer";import{WORKFLOW_VIRTUAL_ENTRY_ID,atomicWriteFile,bundleFinalWorkflowOutput,collectWorkflowInputFiles,convertClassesManifest,convertStepsManifest,convertWorkflowsManifest,createEvePackageImportsPlugin,createWorkflowImport,createWorkflowNodeBuiltinGuardPlugin,createWorkflowPseudoPackagePlugin,createWorkflowTransformPlugin,createWorkflowVirtualEntryPlugin}from"#internal/workflow-bundle/builder-support.js";import{writeNitroStepEntrypoint}from"#internal/workflow-bundle/nitro-step-entry.js";const workflowBundleBuildLocks=new Map;var WorkflowBundleBuilder=class{#e;#t;config;#n=new WeakMap;constructor(e){let t=[resolvePackageSourceDirectoryPath(`src/execution`)];e.includeTestFixtures===!0&&t.push(resolvePackageSourceDirectoryPath(`src/internal/testing`)),this.config={buildTarget:`standalone`,dirs:t,externalPackages:[...WORKFLOW_STEP_EXTERNAL_PACKAGES,...WORKFLOW_BUILDER_DEFERRED_PACKAGES],projectRoot:e.appRoot,watch:e.watch,workingDir:e.rootDir},this.#e=e.compiledArtifactsBootstrapPath,this.#t=e.outDir}async build(e={}){let t=(workflowBundleBuildLocks.get(this.#t)??Promise.resolve()).then(()=>this.#r(e));workflowBundleBuildLocks.set(this.#t,t.catch(()=>{})),await t}async#r(n){await prepareEveVersionedCacheDirectory(this.#t);let r=await this.#i();if(r.length===0)throw Error(`Expected the execution workflow source file under "${resolvePackageSourceDirectoryPath(`src/execution`)}".`);let i=await this.findTsConfigPath();await mkdir(this.#t,{recursive:!0});let o=await this.discoverEntries(r,this.#t,i),s=join(this.#t,`workflows.mjs`),{manifest:c}=await this.createWorkflowsBundle({discoveredEntries:o,keepInterimBundleContext:!1,outfile:s,bundleFinalOutput:!1,format:`esm`,inputFiles:r,tsconfigPath:i}),d=join(this.#t,`steps.mjs`),f=await writeNitroStepEntrypoint({builtinsPath:resolveWorkflowModulePath(`workflow/internal/builtins`),discoveredEntries:o,outfile:d,preferAbsoluteFileImports:!0,projectRoot:this.config.projectRoot??this.config.workingDir,workingDir:this.config.workingDir}),p=n.nitroStepOutfile;p!==void 0&&p!==d&&await writeNitroStepEntrypoint({builtinsPath:resolveWorkflowModulePath(`workflow/internal/builtins`),discoveredEntries:o,outfile:p,preferAbsoluteFileImports:!0,projectRoot:this.config.projectRoot??this.config.workingDir,workingDir:this.config.workingDir}),await addStepRegistrationsImport(s,d),await rewriteWorkflowRuntimeImports(s),await rewriteWorkflowCodeLiteral(s);let g=n.nitroWorkflowOutfile;g!==void 0&&g!==s&&(await mkdir(dirname(g),{recursive:!0}),await mirrorFileBypassingUnlink(s,g),p!==void 0&&(await addStepRegistrationsImport(g,p),await rewriteWorkflowRuntimeImports(g),await rewriteWorkflowCodeLiteral(g))),await this.createManifest({workflowBundlePath:join(this.#t,`workflows.mjs`),manifestDir:this.#t,manifest:{steps:{...f.steps,...c.steps},workflows:{...f.workflows,...c.workflows},classes:{...f.classes,...c.classes}}}),await writeEveVersionedCacheMetadata(this.#t)}get transformProjectRoot(){return this.config.projectRoot??this.config.workingDir}async findTsConfigPath(){let n=this.config.workingDir;for(;;){for(let e of[`tsconfig.json`,`jsconfig.json`]){let r=join(n,e);try{return await readFile(r),r}catch(e){if(!(e instanceof Error&&`code`in e&&e.code===`ENOENT`))throw e}}let r=dirname(n);if(r===n)return;n=r}}async getInputFiles(){let e=this.config.dirs.map(e=>resolve(this.config.workingDir,e));return(await Promise.all(e.map(e=>collectWorkflowInputFiles(e)))).flat()}async discoverEntries(e,t,n){let r=this.#n.get(e);if(r!==void 0)return r;let i={discoveredSerdeFiles:[],discoveredSteps:[],discoveredWorkflows:[]};for(let t of e){let e=detectWorkflowPatterns(await readFile(t,`utf8`));e.hasUseStep&&i.discoveredSteps.push(t),e.hasUseWorkflow&&i.discoveredWorkflows.push(t),e.hasSerde&&i.discoveredSerdeFiles.push(t)}return this.#n.set(e,i),i}async createWorkflowsBundle({bundleFinalOutput:t=!0,discoveredEntries:n,format:r=`cjs`,inputFiles:i,keepInterimBundleContext:a=this.config.watch,outfile:o,tsconfigPath:s}){let c=n??await this.discoverEntries(i,dirname(o),s),l=[...c.discoveredWorkflows].sort(),u=new Set(l),d=[...c.discoveredSerdeFiles].sort().filter(e=>!u.has(e)),m={},h=[...l.map(e=>createWorkflowImport(e,this.config.workingDir)),...d.map(e=>createWorkflowImport(e,this.config.workingDir))].join(`
2
+ `);return await bundleFinalWorkflowOutput({bundleFinalOutput:t,code:getSingleRolldownChunk(await buildWithNitroRolldown({cwd:this.config.workingDir,input:WORKFLOW_VIRTUAL_ENTRY_ID,platform:`neutral`,plugins:[createWorkflowVirtualEntryPlugin(h),createWorkflowPseudoPackagePlugin(),createEvePackageImportsPlugin(this.config.workingDir,{workflowCondition:!0}),createWorkflowTransformPlugin({manifest:m,projectRoot:this.transformProjectRoot,sideEffectFiles:[...l,...d],workingDir:this.config.workingDir}),createWorkflowNodeBuiltinGuardPlugin()],resolve:{conditionNames:[`eve-source`,`workflow`,`node`,`import`,`default`],extensions:[`.ts`,`.tsx`,`.mts`,`.cts`,`.js`,`.jsx`,`.mjs`,`.cjs`],mainFields:[`module`,`main`]},tsconfig:s??!1,write:!1,output:{banner:`globalThis.__private_workflows = new Map();`,codeSplitting:!1,comments:!1,format:`cjs`,sourcemap:`inline`}}),`intermediate workflow bundle for "${o}"`).code,format:r,outfile:o,workingDir:this.config.workingDir}),a?{bundleFinal:async e=>{await bundleFinalWorkflowOutput({bundleFinalOutput:t,code:e,format:r,outfile:o,workingDir:this.config.workingDir})},interimBundleCtx:void 0,manifest:m}:{manifest:m}}async createManifest({manifest:e,manifestDir:n}){let r={version:`1.0.0`,steps:convertStepsManifest(e.steps),workflows:convertWorkflowsManifest(e.workflows),classes:convertClassesManifest(e.classes)},i=JSON.stringify(r,null,2);return await mkdir(n,{recursive:!0}),await writeFile(join(n,`manifest.json`),i),i}async buildVercelOutput(e){await this.build();let n=join(this.#t,`vercel-build-output`,`functions`,`.well-known`,`workflow`,`v1`),r=join(n,`flow.func`),o=join(e.outputDir,`functions`,`.well-known`,`workflow`,`v1`),c=join(e.flowNitroOutputDir,`functions`,`__server.func`),l=join(e.flowNitroOutputDir,`functions`,`.well-known`,`workflow`,`v1`,`flow.func`),u=join(o,`flow.func`),d=join(o,`step.func`),f=join(o,`webhook`,`[token].func`);await copyNitroFunctionDirectory({fallbackPath:c,sourcePath:l,targetPath:r}),await Promise.all([this.#a(r,{experimentalTriggers:Array.from([WORKFLOW_QUEUE_TRIGGER]),maxDuration:`max`,runtime:e.runtime??null,shouldAddHelpers:!1}),cp(join(this.#t,`manifest.json`),join(n,`manifest.json`))]),await retargetNitroFunctionDirectoryToWorkflowRoute({functionDirectoryPath:r,workflowRoutePath:`/.well-known/workflow/v1/flow`}),await Promise.all([rm(u,{force:!0,recursive:!0}),rm(d,{force:!0,recursive:!0}),rm(f,{force:!0,recursive:!0})]),await mkdir(o,{recursive:!0}),await Promise.all([cp(r,u,{recursive:!0}),cp(join(n,`manifest.json`),join(o,`manifest.json`))])}async#i(){return[...await this.getInputFiles(),this.#e]}async#a(e,n){let r=join(e,`.vc-config.json`),i=await this.#o(r),a={...i};a.environment=createWorkflowFunctionEnvironment(i.environment),n.runtime!==null&&(a.runtime=n.runtime),n.maxDuration!==void 0&&(a.maxDuration=n.maxDuration),n.shouldAddHelpers!==void 0&&(a.shouldAddHelpers=n.shouldAddHelpers),n.shouldAddSourcemapSupport!==void 0&&(a.shouldAddSourcemapSupport=n.shouldAddSourcemapSupport),n.experimentalTriggers!==void 0&&(a.experimentalTriggers=[...n.experimentalTriggers]),await writeFile(r,`${JSON.stringify(a,null,2)}\n`)}async#o(e){try{let t=JSON.parse(await readFile(e,`utf8`));if(typeof t==`object`&&t)return t}catch{}return{}}};async function addStepRegistrationsImport(t,n){let r=await readTextFileIfPresent(t);if(r===null||r.includes(`__eveWorkflowStepsRegistered`))return;let i=createRelativeImportSpecifier(dirname(t),n),a=[`import { __steps_registered as __eveWorkflowStepsRegistered } from ${JSON.stringify(i)};`,`void __eveWorkflowStepsRegistered;`,``].join(`
3
+ `),o=r.match(/^import\s.+?;\n/m);if(o===null||o.index===void 0){await atomicWriteFile(t,`${a}${r}`);return}let s=o.index+o[0].length;await atomicWriteFile(t,`${r.slice(0,s)}${a}${r.slice(s)}`)}async function rewriteWorkflowRuntimeImports(e){let t=await readTextFileIfPresent(e);if(t===null)return;let n=t;for(let e of[`workflow`,`workflow/api`,`workflow/internal/builtins`,`workflow/internal/private`,`workflow/runtime`]){let t=normalizeImportSpecifierPath(resolveWorkflowModulePath(e));n=replaceStringLiteralSpecifier(n,e,t)}n!==t&&await atomicWriteFile(e,n)}async function rewriteWorkflowCodeLiteral(e){let t=await readTextFileIfPresent(e);if(t===null)return;let n=t.indexOf(`const workflowCode = `),r=t.lastIndexOf(`;
4
+
5
+ export const POST = workflowEntrypoint(workflowCode);`);if(n===-1||r===-1||r<=n)return;let i=n+21,a=t.slice(i,r);if(!a.trimStart().startsWith("`"))return;let o=decodeWorkflowCodeTemplateLiteral(a,e),s=`${t.slice(0,i)}${encodeWorkflowCodeLiteral(o)}${t.slice(r)}`;s!==t&&await atomicWriteFile(e,s)}function encodeWorkflowCodeLiteral(e){let t=Buffer.from(e,`utf8`).toString(`base64`).match(/.{1,16384}/g)??[``];return`Buffer.from(${JSON.stringify(t)}.join(""), "base64").toString("utf8")`}function decodeWorkflowCodeTemplateLiteral(e,t){let n=e.trim();if(!n.startsWith("`")||!n.endsWith("`"))throw Error(`Expected generated workflow code literal in "${t}" to be a template.`);let r=n.slice(1,-1),i=``;for(let e=0;e<r.length;e+=1){let t=r[e];if(t!==`\\`){i+=t;continue}let n=r[e+1];if(n===`\\`||n==="`"||n===`$`){i+=n,e+=1;continue}i+=t}return i}function replaceStringLiteralSpecifier(e,t,n){return e.replaceAll(JSON.stringify(t),JSON.stringify(n)).replaceAll(`'${t}'`,JSON.stringify(n))}function normalizeImportSpecifierPath(e){return normalizeEsmImportSpecifier(e)}function createRelativeImportSpecifier(e,t){let r=relative(e,t).replaceAll(`\\`,`/`);return r.startsWith(`.`)?r:`./${r}`}async function readTextFileIfPresent(e){try{return await readFile(e,`utf8`)}catch(e){if(e instanceof Error&&`code`in e&&e.code===`ENOENT`)return null;throw e}}async function readBinaryFileIfPresent(e){try{return await readFile(e)}catch(e){if(e instanceof Error&&`code`in e&&e.code===`ENOENT`)return null;throw e}}async function mirrorFileBypassingUnlink(e,t){let n=await readFile(e),r=await readBinaryFileIfPresent(t);r!==null&&r.equals(n)||await atomicWriteFile(t,n)}export{WorkflowBundleBuilder};
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Compiler transform for dynamic tool files.
3
+ *
4
+ * Hoists inline `execute` functions from `defineDynamic`
5
+ * event handler return values to module-scope named functions
6
+ * registered in the global step registry. The workflow SDK then
7
+ * handles serialization and replay.
8
+ *
9
+ * The walker enters nested functions (helpers, callbacks, IIFEs) so
10
+ * patterns like `function buildTool(n) { return { execute() {} } }`
11
+ * are supported. For each execute found, scope variables from every
12
+ * enclosing function between the handler and the execute are
13
+ * collected. Only variables the execute body actually references are
14
+ * captured — this avoids TDZ errors from later declarations.
15
+ *
16
+ * At each call site the inline execute is replaced with:
17
+ * - A wrapper that passes referenced scope values as `__vars`
18
+ * - `__executeStepFn`: reference to the hoisted function
19
+ * - `__closureVars`: snapshot for durable serialization
20
+ *
21
+ * Limitation: `execute` must be an inline function literal (function
22
+ * expression, arrow, or method shorthand). Variable references
23
+ * (`execute: myFn`) and call results (`execute: makeFn()`) are not
24
+ * detected — the transform returns null and the tool works on the
25
+ * first workflow step but is not replayable.
26
+ */
27
+ /**
28
+ * Transforms a dynamic tool file:
29
+ * 1. Hoists execute functions to module scope with "use step"
30
+ * 2. Captures handler-scope variables via __vars parameter
31
+ * 3. Adds "use step" to event handlers so the workflow SDK caches
32
+ * the handler's return value (resolver runs once per scope)
33
+ *
34
+ * Returns null if the file doesn't contain a dynamic tool pattern.
35
+ */
36
+ export declare function transformDynamicToolExecute(filename: string, source: string): Promise<{
37
+ code: string;
38
+ } | null>;
39
+ export { transformDynamicToolExecute as transformDynamicToolAwait };
@@ -0,0 +1,4 @@
1
+ import{loadNitroRolldownParseAst}from"#internal/bundler/nitro-rolldown.js";let transformCounter=0;async function transformDynamicToolExecute(e,t){if(!t.includes(`defineDynamic`)||!t.includes(`events`)||!t.includes(`execute`))return null;let n=findDynamicToolHandlers(t,await parseSource(e,t));return n.every(e=>e.executes.length===0)?null:applyTransform(t,n)}async function parseSource(t,n){let{parseAst:r}=await loadNitroRolldownParseAst();return r(n,{astType:`ts`,lang:inferLang(t),range:!0,sourceType:`module`},t)}function inferLang(e){return e.endsWith(`.tsx`)?`tsx`:e.endsWith(`.jsx`)?`jsx`:e.endsWith(`.js`)||e.endsWith(`.mjs`)||e.endsWith(`.cjs`)?`js`:`ts`}function findDynamicToolHandlers(e,t){let n=[];return walkNode(t,t=>{if(t.type===`CallExpression`&&t.callee?.type===`Identifier`&&t.callee.name===`defineDynamic`&&t.arguments?.length===1){let r=t.arguments[0];if(r.type===`ObjectExpression`){let t=findProperty(r,`events`);t?.value&&t.value.type===`ObjectExpression`&&collectHandlers(e,t.value,n)}return!1}return!0}),n}function collectHandlers(e,t,n){for(let r of t.properties??[]){if(r.type!==`Property`)continue;let t=r.value;if(!t||t.type!==`ArrowFunctionExpression`&&t.type!==`FunctionExpression`)continue;let i=t.body;if(!i)continue;let a=findBlockBodyStart(i);if(a===null)continue;let o=extractParamNames(t),s=collectScopeVarDeclarations(i),c=findExecuteFunctions(e,i);c.length>0&&n.push({handlerNode:t,bodyStart:a,scopeVars:s,paramNames:o,executes:c})}}function findBlockBodyStart(e){return e.type===`BlockStatement`&&e.start!==void 0?e.start:typeof e.body==`object`&&!Array.isArray(e.body)&&e.body?.type===`BlockStatement`&&e.body.start!==void 0?e.body.start:null}function extractParamNames(e){let t=[];for(let n of e.params??[])n.type===`Identifier`&&n.name&&t.push(n.name);return t}function collectScopeVarDeclarations(e){let t=[];return collectVarsRecursive(e,t),t}function collectVarsRecursive(e,t){if(!e||e.type===`FunctionExpression`||e.type===`ArrowFunctionExpression`||e.type===`FunctionDeclaration`)return;if(e.type===`VariableDeclaration`)for(let n of e.declarations??[])collectDeclaredNames(n,t);e.type===`ForStatement`&&e.init&&collectVarsRecursive(e.init,t);let n=e;if((e.type===`ForInStatement`||e.type===`ForOfStatement`)&&e.left&&collectVarsRecursive(e.left,t),Array.isArray(e.body))for(let n of e.body)collectVarsRecursive(n,t);else e.body&&typeof e.body==`object`&&`type`in e.body&&collectVarsRecursive(e.body,t);if(e.declarations)for(let n of e.declarations)collectVarsRecursive(n,t);if(e.expression&&collectVarsRecursive(e.expression,t),Array.isArray(n.consequent))for(let e of n.consequent)collectVarsRecursive(e,t);else n.consequent&&collectVarsRecursive(n.consequent,t);if(n.alternate&&collectVarsRecursive(n.alternate,t),n.block&&collectVarsRecursive(n.block,t),n.handler&&collectVarsRecursive(n.handler,t),n.finalizer&&collectVarsRecursive(n.finalizer,t),n.cases&&Array.isArray(n.cases))for(let e of n.cases)collectVarsRecursive(e,t)}function collectDeclaredNames(e,t){e.type===`VariableDeclarator`&&collectPatternNames(e.id,t)}function collectPatternNames(e,t){if(e){if(e.type===`Identifier`&&e.name){t.push(e.name);return}if(e.type===`ObjectPattern`)for(let n of e.properties??[])n.type===`Property`?collectPatternNames(n.value,t):n.type===`RestElement`&&collectPatternNames(n.argument,t);if(e.type===`ArrayPattern`)for(let n of e.elements??[])n&&collectPatternNames(n,t)}}function findExecuteFunctions(e,t){let n=[];return walkForExecuteProps(e,t,n,[]),n}function walkForExecuteProps(e,n,r,i){if(!n)return;if(n.type===`FunctionExpression`||n.type===`ArrowFunctionExpression`||n.type===`FunctionDeclaration`){let t=extractParamNames(n),a=n.body;if(!a)return;let o=collectScopeVarDeclarations(a),s=[...i,{params:t,vars:o}];a.type,walkForExecuteProps(e,a,r,s);return}if(n.type===`CallExpression`&&n.callee?.type===`Identifier`&&n.callee.name===`defineTool`&&n.arguments?.length===1&&n.arguments[0].type===`ObjectExpression`){let a=n.arguments[0];for(let n of a.properties??[])if(n.type===`Property`&&!n.computed&&n.key?.type===`Identifier`&&n.key.name===`execute`&&n.start!==void 0&&n.end!==void 0){let a=n.value;if(!a||a.start===void 0||a.end===void 0)continue;let o=a.type===`FunctionExpression`||a.type===`ArrowFunctionExpression`,s=n.method===!0;if(o||s){let o=extractFnParams(e,a),s=extractFnBody(e,a),c=a.async===!0;r.push({propStart:n.start,propEnd:n.end,fnSource:e.slice(a.start,a.end),isAsync:c,params:o,body:s,hoistedName:`__eve_dynamic_exec_${transformCounter++}`,nestedScopes:i})}}return}let walk=t=>walkForExecuteProps(e,t,r,i);if(Array.isArray(n.body))for(let e of n.body)walk(e);else n.body&&typeof n.body==`object`&&`type`in n.body&&walk(n.body);if(n.properties)for(let e of n.properties)e.value&&typeof e.value==`object`&&`type`in e.value&&walk(e.value);if(n.callee&&walk(n.callee),n.arguments)for(let e of n.arguments)walk(e);if(n.expression&&walk(n.expression),n.argument&&walk(n.argument),n.init&&walk(n.init),n.left&&walk(n.left),n.right&&walk(n.right),n.declarations)for(let e of n.declarations)walk(e);let a=n;if(Array.isArray(a.consequent))for(let e of a.consequent)walk(e);else a.consequent&&walk(a.consequent);if(a.alternate&&walk(a.alternate),a.block&&walk(a.block),a.handler&&walk(a.handler),a.finalizer&&walk(a.finalizer),a.cases&&Array.isArray(a.cases))for(let e of a.cases)walk(e)}function extractFnParams(e,t){if(!t.params||t.params.length===0)return``;let n=t.params[0],r=t.params[t.params.length-1];return n.start===void 0||r.end===void 0?``:e.slice(n.start,r.end)}function extractFnBody(e,t){let n=t.body;if(!n||n.start===void 0||n.end===void 0)return`{}`;let r=e.slice(n.start,n.end);return t.type===`ArrowFunctionExpression`&&n.type!==`BlockStatement`?`{ return ${r}; }`:r}function applyTransform(e,t){let n=[],r=[],i=[],a=[];for(let e of t)for(let t of e.executes){let o=[...e.paramNames,...e.scopeVars,...t.nestedScopes.flatMap(e=>[...e.params,...e.vars])],s=new Set,c=[];for(let e=o.length-1;e>=0;e--)s.has(o[e])||(s.add(o[e]),c.unshift(o[e]));let l=t.body,u=extractExecuteParamNames(t.params),d=c.filter(e=>!u.has(e)&&RegExp(`\\b${escapeForRegex(e)}\\b`).test(l)),f=d.length>0?`{ ${d.join(`, `)} }`:`{}`,p=t.isAsync?`async `:``,m=d.length>0?`const ${f} = __vars;\n `:``,h=t.params,g=h?`__vars, ${h}`:`__vars`,_=t.body.slice(1,-1).trim(),v=`eve:dynamic-tool//${t.hoistedName}`;r.push(`${p}function ${t.hoistedName}(${g}) {\n ${m}${_}\n}`),i.push(`${t.hoistedName}.stepId = ${JSON.stringify(v)};`),i.push(`__eveStepRegistry.set(${JSON.stringify(v)}, ${t.hoistedName});`),a.push(t.hoistedName);let y=h||``,b=h?splitParamsTopLevel(h).map(e=>extractParamBindingName(e)).join(`, `):``,x=b?`${f}, ${b}`:f,S=t.isAsync?`async `:``,C=t.isAsync?`await `:``;n.push({start:t.propStart,end:t.propEnd,text:[`execute: ${S}(${y}) => ${C}${t.hoistedName}(${x})`,`__executeStepFn: ${t.hoistedName}`,`__closureVars: ${f}`].join(`,
2
+ `)})}let o=[...n].sort((e,t)=>t.start-e.start),s=e;for(let e of o)s=s.slice(0,e.start)+e.text+s.slice(e.end);s=`${[`var __eveStepRegistrySym = Symbol.for("@workflow/core//registeredSteps");`,`if (!globalThis[__eveStepRegistrySym]) globalThis[__eveStepRegistrySym] = new Map();`,`var __eveStepRegistry = globalThis[__eveStepRegistrySym];`].join(`
3
+ `)}\n${s}`;let c=[...r,...i];return c.length>0&&(s=`${s}\n\n${c.join(`
4
+ `)}\n`),{code:s}}function walkNode(e,t){if(t(e)){if(Array.isArray(e.body))for(let n of e.body)walkNode(n,t);else e.body&&typeof e.body==`object`&&`type`in e.body&&walkNode(e.body,t);if(e.declarations)for(let n of e.declarations)walkNode(n,t);if(e.init&&walkNode(e.init,t),e.expression&&walkNode(e.expression,t),e.declaration&&walkNode(e.declaration,t),e.argument&&walkNode(e.argument,t),e.arguments)for(let n of e.arguments)walkNode(n,t);if(e.properties)for(let n of e.properties)walkNode(n,t),n.value&&typeof n.value==`object`&&`type`in n.value&&walkNode(n.value,t);e.left&&walkNode(e.left,t),e.right&&walkNode(e.right,t)}}function findProperty(e,t){return e.properties?.find(e=>e.type===`Property`&&!e.computed&&e.key?.type===`Identifier`&&e.key.name===t)}function escapeForRegex(e){return e.replace(/[.*+?^${}()|[\]\\]/g,`\\$&`)}function splitParamsTopLevel(e){let t=[],n=0,r=0;for(let i=0;i<e.length;i++){let a=e[i];a===`<`||a===`(`||a===`[`||a===`{`?n++:a===`>`||a===`)`||a===`]`||a===`}`?n--:a===`,`&&n===0&&(t.push(e.slice(r,i)),r=i+1)}return t.push(e.slice(r)),t}function extractParamBindingName(e){let t=e.trim(),n=0;for(let e=0;e<t.length;e++){let r=t[e];if(r===`<`||r===`(`||r===`[`||r===`{`)n++;else if(r===`>`||r===`)`||r===`]`||r===`}`)n--;else if(n===0&&(r===`:`||r===`=`))return t.slice(0,e).trim()}return t}function extractExecuteParamNames(e){if(!e)return new Set;let t=new Set;for(let n of splitParamsTopLevel(e)){let e=extractParamBindingName(n);e&&t.add(e)}return t}export{transformDynamicToolExecute as transformDynamicToolAwait,transformDynamicToolExecute};
@@ -0,0 +1,4 @@
1
+ export declare const EVE_SHARED_SERVER_FUNCTION_PATH = "eve/__server.func";
2
+ export declare function isEveVercelFunctionPath(path: string): boolean;
3
+ export declare function normalizeEveVercelRoutes(routes: readonly unknown[], servicePrefix: string | undefined): unknown[];
4
+ export declare function applyEveServiceRoutePrefixWrapper(functionPath: string, servicePrefix: string): Promise<void>;
@@ -0,0 +1,54 @@
1
+ import{join}from"node:path";import{readFile,writeFile}from"node:fs/promises";const EVE_SHARED_SERVER_FUNCTION_PATH=`eve/__server.func`,EVE_SERVICE_ROUTE_PREFIX_WRAPPER=`index.__eve_service_route_prefix.mjs`,EVE_VERCEL_FUNCTION_PREFIXES=[`eve/`,`.well-known/workflow/`];function isRecord(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function isEveVercelFunctionPath(e){return EVE_VERCEL_FUNCTION_PREFIXES.some(t=>e.startsWith(t))}function normalizeEveVercelRoutes(e,t){return e.filter(isEveVercelRoute).map(e=>normalizeEveVercelRoute(e,t))}function isEveVercelRoute(e){if(!isRecord(e)||`handle`in e)return!0;let t=typeof e.src==`string`?e.src:``,n=typeof e.dest==`string`?e.dest:``;return isEveVercelRoutePath(t)||isEveVercelRoutePath(n)}function isEveVercelRoutePath(e){return e.includes(`/eve/v1`)||e.includes(`/.well-known/workflow/`)}function isEveProtocolRoutePath(e){return e.includes(`/eve/v1`)}function normalizeEveVercelRoute(e,t){if(!isRecord(e)||`handle`in e||typeof e.src!=`string`)return e;let n=isEveProtocolRoutePath(e.src)||typeof e.dest==`string`&&isEveProtocolRoutePath(e.dest),r={...e,src:prefixEveVercelRoutePath(e.src,t)};return n&&(r.dest=`/eve/__server`),r}function prefixEveVercelRoutePath(e,t){if(t===void 0||t===`/`||!isEveVercelRoutePath(e)||e.includes(t))return e;let n=t.endsWith(`/`)?t.slice(0,-1):t,r=n.replaceAll(`/`,`\\/`);return e.includes(r)?e:e.startsWith(`^(?:/`)?`^(?:${n}${e.slice(4)}`:e.startsWith(`^/`)?`^${n}${e.slice(1)}`:e.startsWith(`/`)?`${n}${e}`:e}async function applyEveServiceRoutePrefixWrapper(r,i){let a=join(r,`.vc-config.json`),o=join(r,EVE_SERVICE_ROUTE_PREFIX_WRAPPER),s=JSON.parse(await readFile(a,`utf8`)),c=isRecord(s)?s:{};await writeFile(o,createEveServiceRoutePrefixWrapper(i)),await writeFile(a,`${JSON.stringify({...c,handler:EVE_SERVICE_ROUTE_PREFIX_WRAPPER},null,2)}\n`)}function createEveServiceRoutePrefixWrapper(e){return`
2
+ import { Server } from "node:http";
3
+
4
+ const SERVICE_PREFIX = ${JSON.stringify(normalizeServiceRoutePrefix(e))};
5
+ const PATCH_SYMBOL = Symbol.for("eve.service.route-prefix-strip.patch");
6
+
7
+ function stripServiceRoutePrefix(requestUrl) {
8
+ if (typeof requestUrl !== "string" || requestUrl === "*") {
9
+ return requestUrl;
10
+ }
11
+
12
+ const queryIndex = requestUrl.indexOf("?");
13
+ const rawPath = queryIndex === -1 ? requestUrl : requestUrl.slice(0, queryIndex);
14
+ const query = queryIndex === -1 ? "" : requestUrl.slice(queryIndex);
15
+ const path = rawPath.startsWith("/") ? rawPath : \`/\${rawPath}\`;
16
+
17
+ if (path === SERVICE_PREFIX) {
18
+ return \`/\${query}\`;
19
+ }
20
+
21
+ if (path.startsWith(\`\${SERVICE_PREFIX}/\`)) {
22
+ return path.slice(SERVICE_PREFIX.length) + query;
23
+ }
24
+
25
+ return path + query;
26
+ }
27
+
28
+ if (!globalThis[PATCH_SYMBOL]) {
29
+ globalThis[PATCH_SYMBOL] = true;
30
+ const originalEmit = Server.prototype.emit;
31
+ Server.prototype.emit = function patchedEmit(event, request, ...args) {
32
+ if ((event === "request" || event === "upgrade") && request && typeof request.url === "string") {
33
+ request.url = stripServiceRoutePrefix(request.url);
34
+ }
35
+
36
+ return originalEmit.call(this, event, request, ...args);
37
+ };
38
+ }
39
+
40
+ const originalModule = await import("./index.mjs");
41
+ const entrypoint = originalModule?.default ?? originalModule;
42
+
43
+ export const handleUpgrade = originalModule.handleUpgrade
44
+ ? (request, socket, head) => {
45
+ if (request && typeof request.url === "string") {
46
+ request.url = stripServiceRoutePrefix(request.url);
47
+ }
48
+
49
+ return originalModule.handleUpgrade(request, socket, head);
50
+ }
51
+ : undefined;
52
+
53
+ export default entrypoint;
54
+ `.trimStart()}function normalizeServiceRoutePrefix(e){let t=(e.startsWith(`/`)?e:`/${e}`).replace(/\/+$/,``);return t.length===0?`/`:t}export{EVE_SHARED_SERVER_FUNCTION_PATH,applyEveServiceRoutePrefixWrapper,isEveVercelFunctionPath,normalizeEveVercelRoutes};
@@ -0,0 +1,17 @@
1
+ import { type WorkflowManifest } from "#internal/workflow-bundle/workflow-builders.js";
2
+ export interface NitroStepEntrypointDiscoveredEntries {
3
+ readonly discoveredSerdeFiles: readonly string[];
4
+ readonly discoveredSteps: readonly string[];
5
+ }
6
+ /**
7
+ * Writes the hosted Nitro step entrypoint source and returns the manifest
8
+ * metadata discovered from the imported step and serde files.
9
+ */
10
+ export declare function writeNitroStepEntrypoint(input: {
11
+ readonly builtinsPath?: string;
12
+ readonly discoveredEntries: NitroStepEntrypointDiscoveredEntries;
13
+ readonly outfile: string;
14
+ readonly preferAbsoluteFileImports?: boolean;
15
+ readonly projectRoot: string;
16
+ readonly workingDir: string;
17
+ }): Promise<WorkflowManifest>;
@@ -0,0 +1,2 @@
1
+ import{dirname,relative}from"node:path";import{mkdir,readFile,writeFile}from"node:fs/promises";import{normalizeEsmImportSpecifier}from"#internal/application/import-specifier.js";import{applyWorkflowTransform}from"#internal/workflow-bundle/workflow-builders.js";async function writeNitroStepEntrypoint(t){let r=[...t.discoveredEntries.discoveredSteps].sort(),a=new Set(r),o=[...t.discoveredEntries.discoveredSerdeFiles].sort().filter(e=>!a.has(e)),s=await collectNitroStepManifest({projectRoot:t.projectRoot,stepFiles:r,serdeOnlyFiles:o,workingDir:t.workingDir}),c=dirname(t.outfile),l=[`// Generated by Eve. Do not edit by hand.`,...createEntrypointImportLines({builtinsImportSpecifier:t.builtinsPath===void 0?`workflow/internal/builtins`:createFileImportSpecifier({outfileDirectory:c,preferAbsoluteFileImports:t.preferAbsoluteFileImports??!1,targetPath:t.builtinsPath}),outfileDirectory:c,preferAbsoluteFileImports:t.preferAbsoluteFileImports??!1,serdeOnlyFiles:o,stepFiles:r}),`export const __steps_registered = true;`,``].join(`
2
+ `);return await mkdir(c,{recursive:!0}),await readTextFileIfPresent(t.outfile)!==l&&await writeFile(t.outfile,l),s}function createEntrypointImportLines(e){return[e.builtinsImportSpecifier,...e.stepFiles.map(t=>createFileImportSpecifier({outfileDirectory:e.outfileDirectory,preferAbsoluteFileImports:e.preferAbsoluteFileImports,targetPath:t})),...e.serdeOnlyFiles.map(t=>createFileImportSpecifier({outfileDirectory:e.outfileDirectory,preferAbsoluteFileImports:e.preferAbsoluteFileImports,targetPath:t}))].map(e=>`import ${JSON.stringify(e)};`)}function createFileImportSpecifier(e){return e.preferAbsoluteFileImports?normalizeEsmImportSpecifier(e.targetPath):createRelativeImportSpecifier(e.outfileDirectory,e.targetPath)}async function collectNitroStepManifest(e){let t={},n=[...e.stepFiles,...e.serdeOnlyFiles];for(let i of n){let n=await readFile(i,`utf8`);mergeWorkflowManifest(t,(await applyWorkflowTransform(createManifestRelativeFilepath(e.workingDir,i),n,`step`,i,e.projectRoot)).workflowManifest)}return t}function mergeWorkflowManifest(e,t){e.steps=mergeWorkflowManifestSection(e.steps,t.steps),e.workflows=mergeWorkflowManifestSection(e.workflows,t.workflows),e.classes=mergeWorkflowManifestSection(e.classes,t.classes)}function mergeWorkflowManifestSection(e,t){if(t===void 0)return e;let n={...e};for(let[e,r]of Object.entries(t))n[e]={...n[e],...r};return n}function createManifestRelativeFilepath(e,n){let r=n.replaceAll(`\\`,`/`),i=relative(e.replaceAll(`\\`,`/`),r).replaceAll(`\\`,`/`);return i.startsWith(`../`)&&(i=i.split(`/`).filter(e=>e!==`..`).join(`/`)),i}function createRelativeImportSpecifier(e,n){let r=relative(e,n).replaceAll(`\\`,`/`);return r.startsWith(`.`)?r:`./${r}`}async function readTextFileIfPresent(e){try{return await readFile(e,`utf8`)}catch(e){if(e instanceof Error&&`code`in e&&e.code===`ENOENT`)return null;throw e}}export{writeNitroStepEntrypoint};
@@ -0,0 +1,66 @@
1
+ export declare const WORKFLOW_STEP_EXTERNAL_PACKAGES: readonly ["@mongodb-js/zstd", "node-liblzma"];
2
+ /**
3
+ * Packages that must stay external during the initial workflow builder
4
+ * pass so `node:*` transitive dependencies do not fail the workflow VM check.
5
+ * Nitro performs the final bundling/tracing pass for hosted output.
6
+ */
7
+ export declare const WORKFLOW_BUILDER_DEFERRED_PACKAGES: readonly ["@chat-adapter/slack", "chat"];
8
+ /**
9
+ * Builds the environment block every generated Vercel workflow function needs.
10
+ */
11
+ export declare function createWorkflowFunctionEnvironment(environment?: unknown): Record<string, unknown>;
12
+ /**
13
+ * Creates an empty staging directory for one emitted Vercel function.
14
+ */
15
+ export declare function prepareVercelFunctionDirectory(path: string): Promise<void>;
16
+ /**
17
+ * Copies a Nitro-bundled Vercel function directory into one standalone
18
+ * workflow function directory.
19
+ *
20
+ * Nitro may emit route functions as symlinks back to `__server.func`. This
21
+ * helper dereferences the source path first, then copies concrete files so the
22
+ * generated workflow functions do not rely on symlinks.
23
+ */
24
+ export declare function copyNitroFunctionDirectory(input: {
25
+ fallbackPath: string;
26
+ sourcePath: string;
27
+ targetPath: string;
28
+ }): Promise<void>;
29
+ /**
30
+ * Keeps only Eve-owned Vercel function output and rewrites Eve route function
31
+ * symlinks to a shared Eve-owned server function.
32
+ *
33
+ * Nitro emits generic app routes such as `index.func -> ./__server.func` for
34
+ * Eve's standalone landing page. In a multi-service Next.js deployment those
35
+ * root aliases collide with Next's own functions. The Next integration only
36
+ * proxies Eve's `/eve/v1/**` transport routes, so Vercel output should expose
37
+ * those route functions and workflow trigger functions, not Eve's root page.
38
+ *
39
+ * Nitro also dedupes every route function through `__server.func`. Preserve
40
+ * that model by copying the shared target once into the Eve-owned tree and
41
+ * repointing Eve route aliases at it before pruning the root target.
42
+ */
43
+ export declare function normalizeEveVercelFunctionOutput(outputDir: string, options?: {
44
+ readonly servicePrefix?: string;
45
+ }): Promise<void>;
46
+ /**
47
+ * Bundles one package-owned workflow handler into a standalone Vercel function
48
+ * directory without inheriting Nitro's hosted server chunks.
49
+ */
50
+ export declare function emitBundledWorkflowFunctionDirectory(input: {
51
+ bundlePath: string;
52
+ pluginPaths?: readonly string[];
53
+ targetPath: string;
54
+ }): Promise<void>;
55
+ /**
56
+ * Rewrites one copied Nitro function directory so its handler always dispatches
57
+ * to a concrete workflow route path.
58
+ *
59
+ * Queue-triggered workflow functions do not guarantee a request URL that
60
+ * matches Nitro's original route table. This helper keeps Nitro's traced
61
+ * output intact but swaps the entrypoint with a small URL-rewriting adapter.
62
+ */
63
+ export declare function retargetNitroFunctionDirectoryToWorkflowRoute(input: {
64
+ functionDirectoryPath: string;
65
+ workflowRoutePath: string;
66
+ }): Promise<void>;
@@ -0,0 +1,3 @@
1
+ import{basename,dirname,extname,join,relative}from"node:path";import{cp,mkdir,readFile,readdir,realpath,rename,rm,symlink,writeFile}from"node:fs/promises";import{buildWithNitroRolldown,getSingleRolldownChunk}from"#internal/bundler/nitro-rolldown.js";import{EVE_SHARED_SERVER_FUNCTION_PATH,applyEveServiceRoutePrefixWrapper,isEveVercelFunctionPath,normalizeEveVercelRoutes}from"#internal/workflow-bundle/eve-service-route-output.js";const WORKFLOW_STEP_EXTERNAL_PACKAGES=[`@mongodb-js/zstd`,`node-liblzma`],WORKFLOW_BUILDER_DEFERRED_PACKAGES=[`@chat-adapter/slack`,`chat`];function createWorkflowFunctionEnvironment(e){let t={};return isRecord(e)&&Object.assign(t,e),t.NODE_OPTIONS=`--experimental-require-module`,t}function isRecord(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}async function prepareVercelFunctionDirectory(e){await rm(e,{force:!0,recursive:!0}),await mkdir(e,{recursive:!0})}async function resolveNitroFunctionDirectory(e){try{return await realpath(e.sourcePath)}catch{return await realpath(e.fallbackPath)}}async function copyNitroFunctionDirectory(e){let t=await resolveNitroFunctionDirectory({fallbackPath:e.fallbackPath,sourcePath:e.sourcePath});await prepareVercelFunctionDirectory(e.targetPath),await cp(t,e.targetPath,{dereference:!0,recursive:!0})}async function normalizeEveVercelFunctionOutput(e,t={}){let n=join(e,`functions`),i=await prepareSharedEveServerFunction(n);i!==null&&(t.servicePrefix!==void 0&&await applyEveServiceRoutePrefixWrapper(i,t.servicePrefix),await repointEveFunctionSymlinksInDirectory(n,i)),await pruneNonEveFunctionEntries(n,n),await pruneNonEveVercelRoutes(e,t.servicePrefix)}async function prepareSharedEveServerFunction(e){let n=join(e,`__server.func`),i=join(e,EVE_SHARED_SERVER_FUNCTION_PATH),s;try{s=await realpath(n)}catch(e){if(e instanceof Error&&`code`in e&&e.code===`ENOENT`)return null;throw e}let c=`${i}.eve-staging`;return await mkdir(dirname(i),{recursive:!0}),await rm(c,{force:!0,recursive:!0}),await cp(s,c,{dereference:!0,recursive:!0}),await rm(i,{force:!0,recursive:!0}),await rename(c,i),i}async function repointEveFunctionSymlinksInDirectory(e,t,n=e){let a;try{a=await readdir(e,{withFileTypes:!0})}catch(e){if(e instanceof Error&&`code`in e&&e.code===`ENOENT`)return;throw e}await Promise.all(a.map(async a=>{let o=join(e,a.name),s=normalizeVercelOutputPath(relative(n,o));if(a.isSymbolicLink()){a.name.endsWith(`.func`)&&isEveVercelFunctionPath(s)&&await repointFunctionSymlink(o,t);return}a.isDirectory()&&!a.name.endsWith(`.func`)&&await repointEveFunctionSymlinksInDirectory(o,t,n)}))}async function repointFunctionSymlink(e,n){await rm(e,{force:!0,recursive:!0}),await symlink(normalizeVercelOutputPath(relative(dirname(e),n)),e,`dir`)}async function pruneNonEveFunctionEntries(e,t){let n;try{n=await readdir(t,{withFileTypes:!0})}catch(e){if(e instanceof Error&&`code`in e&&e.code===`ENOENT`)return;throw e}await Promise.all(n.map(async n=>{let a=join(t,n.name),o=normalizeVercelOutputPath(relative(e,a));if(n.name.endsWith(`.func`)){isEveVercelFunctionPath(o)||await rm(a,{force:!0,recursive:!0});return}n.isDirectory()&&await pruneNonEveFunctionEntries(e,a)}))}async function pruneNonEveVercelRoutes(e,t){let n=join(e,`config.json`),i;try{i=JSON.parse(await readFile(n,`utf8`))}catch(e){if(e instanceof Error&&`code`in e&&e.code===`ENOENT`)return;throw e}!isRecord(i)||!Array.isArray(i.routes)||(i.routes=normalizeEveVercelRoutes(i.routes,t),await writeFile(n,`${JSON.stringify(i,null,2)}\n`))}function normalizeVercelOutputPath(e){return e.replaceAll(`\\`,`/`)}async function emitBundledWorkflowFunctionDirectory(e){await prepareVercelFunctionDirectory(e.targetPath);let n=await emitBundledWorkflowPluginModules({build:buildWithNitroRolldown,pluginPaths:e.pluginPaths??[],targetPath:e.targetPath}),i=join(dirname(e.bundlePath),`__eve_workflow_function_entry.js`),a=getSingleRolldownChunk(await buildWithNitroRolldown({cwd:dirname(e.bundlePath),input:i,platform:`node`,plugins:[createVirtualModulePlugin({id:i,moduleType:`js`,source:createWorkflowFunctionEntrypointSource({bundlePath:e.bundlePath,pluginModulePaths:n})})],write:!1,output:{codeSplitting:!1,comments:!1,format:`cjs`,sourcemap:!1}}),`Vercel workflow function for "${e.bundlePath}"`);await Promise.all([writeFile(join(e.targetPath,`index.js`),a.code),writeFile(join(e.targetPath,`package.json`),`${JSON.stringify({type:`commonjs`},null,2)}\n`),writeFile(join(e.targetPath,`.vc-config.json`),`${JSON.stringify({environment:createWorkflowFunctionEnvironment(),handler:`index.js`,launcherType:`Nodejs`,supportsResponseStreaming:!0},null,2)}\n`)])}async function emitBundledWorkflowPluginModules(e){return await Promise.all(e.pluginPaths.map(async(t,n)=>{let i=getSingleRolldownChunk(await e.build({input:t,platform:`node`,write:!1,output:{codeSplitting:!1,comments:!1,format:`esm`,sourcemap:!1}}),`workflow plugin for "${t}"`),a=`__eve_workflow_plugin_${n}.mjs`;return await writeFile(join(e.targetPath,a),i.code),`./${a}`}))}function createVirtualModulePlugin(e){return{name:`eve-virtual-module`,resolveId(t){return t===e.id?e.id:void 0},load(t){return t===e.id?{code:e.source,moduleType:e.moduleType}:void 0}}}function toRelativeImportPath(e){let t=relative(e.fromDirectoryPath,e.toFilePath).replaceAll(`\\`,`/`);return t.startsWith(`.`)?t:`./${t}`}function normalizeImportSpecifierPath(e){return e.replaceAll(`\\`,`/`)}function createWorkflowFunctionEntrypointSource(t){let n=t.pluginModulePaths.map(e=>normalizeImportSpecifierPath(e)),r=n.length>0;return[`const { POST } = require(${JSON.stringify(`./${basename(t.bundlePath)}`)});`,...r?[`const workflowPluginModulePaths = ${JSON.stringify(n)};`,``,`let workflowPluginPromise;`,``,`async function loadWorkflowPlugins() {`,` if (workflowPluginPromise == null) {`,` workflowPluginPromise = (async () => {`,` for (const pluginPath of workflowPluginModulePaths) {`,` await import(pluginPath);`,` }`,` })();`,` }`,` return await workflowPluginPromise;`,`}`]:[],``,`const DEFAULT_WORKFLOW_REQUEST_ORIGIN = "https://workflow.invalid";`,``,`function getHeader(headers, name) {`,` if (headers === null || headers === undefined) {`,` return undefined;`,` }`,` if (typeof headers.get === "function") {`,` const value = headers.get(name);`,` return typeof value === "string" && value.length > 0 ? value : undefined;`,` }`,` if (typeof headers !== "object") {`,` return undefined;`,` }`,` const record = headers;`,` const lowerName = name.toLowerCase();`,` for (const [key, value] of Object.entries(record)) {`,` if (key.toLowerCase() !== lowerName || value === undefined) {`,` continue;`,` }`,` if (Array.isArray(value)) {`,` return value.find((item) => typeof item === "string" && item.length > 0);`,` }`,` return typeof value === "string" && value.length > 0 ? value : undefined;`,` }`,` return undefined;`,`}`,``,`function createHeaders(headers) {`,` const normalized = new Headers();`,` if (headers === null || headers === undefined) {`,` return normalized;`,` }`,` if (headers instanceof Headers) {`,` return headers;`,` }`,` if (typeof headers.forEach === "function" && typeof headers.entries === "function") {`,` for (const [key, value] of headers.entries()) {`,` normalized.append(key, value);`,` }`,` return normalized;`,` }`,` for (const [key, value] of Object.entries(headers)) {`,` if (value === undefined) {`,` continue;`,` }`,` if (Array.isArray(value)) {`,` for (const item of value) {`,` normalized.append(key, String(item));`,` }`,` continue;`,` }`,` normalized.set(key, String(value));`,` }`,` return normalized;`,`}`,``,`function toAbsoluteWorkflowUrl(request) {`,` const url = typeof request?.url === "string" ? request.url : "/";`,` if (/^https?:\\/\\//.test(url)) {`,` return url;`,` }`,` const host = getHeader(request?.headers, "x-forwarded-host") ?? getHeader(request?.headers, "host");`,` const protocolHeader = getHeader(request?.headers, "x-forwarded-proto");`,` const protocol = protocolHeader === "http" || protocolHeader === "https" ? protocolHeader : "https";`,` const origin = typeof host === "string" && host.length > 0 ? protocol + "://" + host : DEFAULT_WORKFLOW_REQUEST_ORIGIN;`,` return new URL(url, origin).toString();`,`}`,``,`function normalizeWorkflowRequest(request) {`,` if (request instanceof Request) {`,` if (/^https?:\\/\\//.test(request.url)) {`,` return request;`,` }`,` return new Request(toAbsoluteWorkflowUrl(request), request);`,` }`,` const method = typeof request?.method === "string" ? request.method : "GET";`,` const headers = createHeaders(request?.headers);`,` const init = {`,` headers,`,` method,`,` };`,` if (method !== "GET" && method !== "HEAD") {`,` const body = request?.body ?? (request !== null && typeof request === "object" && typeof request.pipe === "function" ? request : undefined);`,` if (body !== undefined) {`,` init.body = body;`,` init.duplex = "half";`,` }`,` }`,` return new Request(toAbsoluteWorkflowUrl(request), init);`,`}`,``,`module.exports = async function handleWorkflowFunctionRequest(requestContext) {`,` const request =`,` requestContext !== null && typeof requestContext === "object" && "req" in requestContext`,` ? requestContext.req`,` : requestContext;`,...r?[` await loadWorkflowPlugins();`]:[],` return await POST(normalizeWorkflowRequest(request));`,`};`,``].join(`
2
+ `)}function createRoutedNitroEntrypoint(e){return[`import nitroHandler from ${JSON.stringify(e.delegateImportPath)};`,``,`function invokeNitroHandler(request, context) {`,` if (typeof nitroHandler === "function") {`,` return nitroHandler(request, context);`,` }`,``,` if (nitroHandler !== null && typeof nitroHandler === "object" && "fetch" in nitroHandler) {`,` const fetch = nitroHandler.fetch;`,` if (typeof fetch === "function") {`,` return fetch.call(nitroHandler, request, context);`,` }`,` }`,``,` throw new TypeError("Expected Nitro handler to export a function or an object with fetch(request, context).");`,`}`,``,`const workflowRoutePath = ${JSON.stringify(e.workflowRoutePath)};`,``,`function rewriteRequestToWorkflowRoute(request) {`,` const sourceUrl = new URL(request.url);`,` const routedUrl = new URL(workflowRoutePath, sourceUrl);`,` routedUrl.search = sourceUrl.search;`,` return new Request(routedUrl, request);`,`}`,``,`export default {`,` fetch(request, context) {`,` return invokeNitroHandler(rewriteRequestToWorkflowRoute(request), context);`,` },`,`};`,``].join(`
3
+ `)}async function readVercelHandlerPath(e){try{let t=JSON.parse(await readFile(join(e,`.vc-config.json`),`utf8`));if(typeof t.handler==`string`&&t.handler.length>0)return t.handler}catch{}return`index.mjs`}async function retargetNitroFunctionDirectoryToWorkflowRoute(e){let i=await readVercelHandlerPath(e.functionDirectoryPath),a=join(e.functionDirectoryPath,i),o=dirname(a),s=extname(i),c=join(o,`__eve_nitro_handler__${s.length>0?s:`.mjs`}`),l=toRelativeImportPath({fromDirectoryPath:o,toFilePath:c});await rename(a,c),await writeFile(a,createRoutedNitroEntrypoint({delegateImportPath:l,workflowRoutePath:e.workflowRoutePath}))}export{WORKFLOW_BUILDER_DEFERRED_PACKAGES,WORKFLOW_STEP_EXTERNAL_PACKAGES,copyNitroFunctionDirectory,createWorkflowFunctionEnvironment,emitBundledWorkflowFunctionDirectory,normalizeEveVercelFunctionOutput,prepareVercelFunctionDirectory,retargetNitroFunctionDirectoryToWorkflowRoute};
@@ -0,0 +1,44 @@
1
+ export type WorkflowManifest = {
2
+ steps?: {
3
+ [relativeFileName: string]: {
4
+ [functionName: string]: {
5
+ stepId: string;
6
+ };
7
+ };
8
+ };
9
+ workflows?: {
10
+ [relativeFileName: string]: {
11
+ [functionName: string]: {
12
+ workflowId: string;
13
+ };
14
+ };
15
+ };
16
+ classes?: {
17
+ [relativeFileName: string]: {
18
+ [className: string]: {
19
+ classId: string;
20
+ };
21
+ };
22
+ };
23
+ };
24
+ export declare const WORKFLOW_QUEUE_TRIGGER: {
25
+ readonly type: "queue/v2beta";
26
+ readonly topic: "__wkf_workflow_*";
27
+ readonly consumer: "default";
28
+ readonly retryAfterSeconds: 5;
29
+ readonly initialDelaySeconds: 0;
30
+ };
31
+ export declare function applyWorkflowTransform(filename: string, source: string, mode: "workflow" | "step" | "client" | false, absolutePath?: string, projectRoot?: string, stableWorkflowNames?: ReadonlySet<string>): Promise<{
32
+ code: string;
33
+ workflowManifest: WorkflowManifest;
34
+ }>;
35
+ export declare function detectWorkflowPatterns(source: string): {
36
+ hasSerde: boolean;
37
+ hasUseStep: boolean;
38
+ hasUseWorkflow: boolean;
39
+ };
40
+ export declare function getImportPath(filePath: string, projectRoot: string): {
41
+ importPath: string;
42
+ isPackage: boolean;
43
+ };
44
+ export declare function readSourceFile(path: string): Promise<string>;
@@ -0,0 +1 @@
1
+ import{transformWorkflowDirectives}from"./workflow-transformer.js";import{dirname,isAbsolute,join,relative,resolve,sep}from"node:path";import{readFile}from"node:fs/promises";import{existsSync,readFileSync}from"node:fs";import{STABLE_WORKFLOW_NAMES}from"#execution/workflow-runtime.js";const WORKFLOW_QUEUE_TRIGGER={type:`queue/v2beta`,topic:`__wkf_workflow_*`,consumer:`default`,retryAfterSeconds:5,initialDelaySeconds:0},packageJsonCache=new Map,projectDepsCache=new Map;async function applyWorkflowTransform(t,i,a,o,s,c=STABLE_WORKFLOW_NAMES){let l=s??process.cwd(),{moduleSpecifier:u,stableModuleSpecifier:d}=resolveModuleSpecifier(o===void 0?isAbsolute(t)?t:join(l,t):o,l);return transformWorkflowDirectives({filename:t,mode:a,moduleSpecifier:u,source:i,stableModuleSpecifier:d,stableWorkflowNames:c})}function detectWorkflowPatterns(e){return{hasSerde:e.includes(`workflow.serde`)||e.includes(`@serde`)||e.includes(`workflowSerde`)||e.includes(`__workflow_serde`),hasUseStep:/["']use step["']/.test(e),hasUseWorkflow:/["']use workflow["']/.test(e)}}function getImportPath(e,t){let n=isInNodeModules(e),r=!n&&isWorkspacePackage(e,t);if(n||r){let n=findPackageJson(e);if(n!==null){let i=getProjectDependencies(t).has(n.name);if(!(r||i))return{importPath:toRelativeImportPath(e,t),isPackage:!1};let a=resolveExportSubpath(e,n);return a?{importPath:`${n.name}${a}`,isPackage:!0}:isRootEntrypointFile(e,n)?{importPath:n.name,isPackage:!0}:{importPath:toRelativeImportPath(e,t),isPackage:!1}}}return{importPath:toRelativeImportPath(e,t),isPackage:!1}}function resolveModuleSpecifier(e,t){let n=isInNodeModules(e),r=!n&&isWorkspacePackage(e,t);if(!n&&!r)return{moduleSpecifier:void 0,stableModuleSpecifier:void 0};let i=findPackageJson(e);if(i===null)return{moduleSpecifier:void 0,stableModuleSpecifier:void 0};let a=resolveExportSubpath(e,i),o=a?`${i.name}${a}`:i.name;return{moduleSpecifier:`${o}@${i.version}`,stableModuleSpecifier:o}}function findPackageJson(e){let n=dirname(e),i=[];for(;n!==dirname(n);){let e=packageJsonCache.get(n);if(e!==void 0){for(let t of i)packageJsonCache.set(t,e);return e}i.push(n);let a=join(n,`package.json`);if(existsSync(a))try{let e=JSON.parse(readFileSync(a,`utf8`));if(typeof e.name==`string`&&typeof e.version==`string`){let t={dir:n,exports:e.exports,main:e.main,module:e.module,name:e.name,version:e.version};packageJsonCache.set(n,t);for(let e of i)packageJsonCache.set(e,t);return t}}catch{}n=dirname(n)}for(let e of i)packageJsonCache.set(e,null);return null}function resolveExportSubpath(e,t){if(t.exports===null||typeof t.exports!=`object`||Array.isArray(t.exports))return``;let n=e.replace(/\\/g,`/`),r=t.dir.replace(/\\/g,`/`),i=n.startsWith(`${r}/`)?`./${n.substring(r.length+1)}`:null;if(i===null)return``;for(let[e,n]of Object.entries(t.exports)){let t=resolveExportTarget(n);if(t!==null&&normalizeExportPath(t)===i)return e===`.`?``:e.substring(1)}return``}function resolveExportTarget(e){if(typeof e==`string`)return e;if(Array.isArray(e)){for(let t of e){let e=resolveExportTarget(t);if(e!==null)return e}return null}if(typeof e==`object`&&e)for(let t of[`workflow`,`default`,`require`,`import`,`node`]){let n=e[t],r=resolveExportTarget(n);if(r!==null)return r}return null}function normalizeExportPath(e){return e.startsWith(`./`)?e:`./${e}`}function isInNodeModules(e){return e.split(sep).join(`/`).includes(`/node_modules/`)}function getProjectDependencies(e){let t=projectDepsCache.get(e);if(t!==void 0)return t;let n=new Set,i=join(e,`package.json`);if(existsSync(i))try{let e=JSON.parse(readFileSync(i,`utf8`));for(let t of[`dependencies`,`devDependencies`,`peerDependencies`,`optionalDependencies`]){let r=e[t];if(typeof r==`object`&&r&&!Array.isArray(r))for(let e of Object.keys(r))n.add(e)}}catch{}return projectDepsCache.set(e,n),n}function isWorkspacePackage(e,t){if(isInNodeModules(e))return!1;let n=findPackageJson(e);return n===null||resolve(n.dir)===resolve(t)?!1:getProjectDependencies(t).has(n.name)}function toRelativeImportPath(e,t){let n=t.replace(/\\/g,`/`),r=e.replace(/\\/g,`/`),a=r.startsWith(`${n}/`)?r.substring(n.length+1):relative(t,e).replace(/\\/g,`/`);return a.startsWith(`.`)||(a=`./${a}`),a}function hasRootExport(e){if(typeof e==`string`||Array.isArray(e))return!0;if(typeof e!=`object`||!e)return!1;let t=Object.keys(e);return t.length>0&&t.every(e=>!e.startsWith(`.`))?!0:`.`in e}function normalizePackageTargetPath(e){let t=e.replace(/\\/g,`/`);return t.startsWith(`./`)?t.substring(2):t.startsWith(`/`)?t.substring(1):t}function isRootEntrypointFile(e,t){let n=e.replace(/\\/g,`/`),r=t.dir.replace(/\\/g,`/`);if(!n.startsWith(`${r}/`))return!1;let i=n.substring(r.length+1);if(t.exports!==void 0){let e;if(t.exports!==null&&typeof t.exports==`object`&&`.`in t.exports)e=t.exports[`.`];else if(hasRootExport(t.exports))e=t.exports;else return!1;let n=resolveExportTarget(e);return n!==null&&normalizePackageTargetPath(n)===i}return[t.module,t.main,`index.js`,`index.mjs`,`index.cjs`,`index.ts`,`index.mts`,`index.cts`].flatMap(e=>typeof e==`string`?[normalizePackageTargetPath(e)]:[]).includes(i)}async function readSourceFile(e){return await readFile(e,`utf8`)}export{WORKFLOW_QUEUE_TRIGGER,applyWorkflowTransform,detectWorkflowPatterns,getImportPath,readSourceFile};
@@ -0,0 +1,82 @@
1
+ export declare class RetryableError extends Error {
2
+ }
3
+ export declare class FatalError extends Error {
4
+ }
5
+ /**
6
+ * Creates a Workflow hook from inside a durable workflow body.
7
+ */
8
+ export declare function createHook<T = unknown>(options?: unknown): AsyncIterable<T> & {
9
+ readonly token: string;
10
+ };
11
+ /**
12
+ * Returns metadata for the current durable workflow body.
13
+ */
14
+ export declare function getWorkflowMetadata(): Record<string, unknown>;
15
+ /**
16
+ * Creates a Workflow writable stream handle from inside a durable workflow body.
17
+ */
18
+ export declare function getWritable<T = unknown>(options?: {
19
+ namespace?: string;
20
+ }): WritableStream<T>;
21
+ /**
22
+ * Creates a Workflow webhook from inside a durable workflow body.
23
+ */
24
+ export declare function createWebhook<T = unknown>(options?: unknown): AsyncIterable<T> & {
25
+ readonly token: string;
26
+ url?: string;
27
+ };
28
+ /**
29
+ * Defines a Workflow hook factory for workflow-body code.
30
+ */
31
+ export declare function defineHook<T = unknown>(): {
32
+ readonly create: (options?: unknown) => AsyncIterable<T> & {
33
+ readonly token: string;
34
+ };
35
+ readonly resume: () => never;
36
+ };
37
+ /**
38
+ * Sleeps from inside workflow-body code.
39
+ */
40
+ export declare function sleep(): never;
41
+ /**
42
+ * `resumeHook()` is an external/runtime API and must not run in workflow bodies.
43
+ */
44
+ export declare function resumeHook(): never;
45
+ /**
46
+ * Step metadata is only available in step functions.
47
+ */
48
+ export declare function getStepMetadata(): never;
49
+ /**
50
+ * Options accepted by {@link experimental_setAttributes}.
51
+ *
52
+ * Mirrors `ExperimentalSetAttributesOptions` from `@workflow/core` so the
53
+ * Eve workflow-body bundle does not have to pull the real type in.
54
+ */
55
+ export interface ExperimentalSetAttributesOptions {
56
+ /**
57
+ * Permit attribute keys that start with the reserved `$` prefix. Eve
58
+ * framework code passes `true` so it can write the `$eve.*` namespace;
59
+ * authored agent code never calls this shim directly.
60
+ */
61
+ allowReservedAttributes?: boolean;
62
+ }
63
+ /**
64
+ * Workflow-body implementation of `experimental_setAttributes` for the Eve
65
+ * bundle. Mirrors the dispatch path of `@workflow/core`'s workflow-body
66
+ * export (`dist/workflow/set-attributes.js`):
67
+ *
68
+ * 1. Convert the attribute map into the `AttributeChange[]` shape the
69
+ * runtime expects (`undefined` -> `null` to clear a key).
70
+ * 2. Resolve the workflow runtime's step dispatcher from
71
+ * `globalThis[Symbol.for("WORKFLOW_USE_STEP")]` (the same global symbol
72
+ * Eve already relies on to materialize `"use step"` proxies).
73
+ * 3. Invoke the builtin `__builtin_set_attributes` step with the changes,
74
+ * which the runtime records on the active workflow run.
75
+ *
76
+ * Validation is intentionally skipped here. The only caller, `setEveAttributes`,
77
+ * already normalizes keys/values and is the sole entry point for the
78
+ * `$eve.*` reserved namespace; bouncing through the runtime's full
79
+ * validator would require pulling `@workflow/world` into the workflow body
80
+ * bundle.
81
+ */
82
+ export declare function experimental_setAttributes(attrs: Record<string, string | undefined>, options?: ExperimentalSetAttributesOptions): Promise<void>;
@@ -0,0 +1 @@
1
+ const WORKFLOW_CONTEXT_SYMBOL=Symbol.for(`WORKFLOW_CONTEXT`),WORKFLOW_CREATE_HOOK=Symbol.for(`WORKFLOW_CREATE_HOOK`),WORKFLOW_GET_STREAM_ID=Symbol.for(`WORKFLOW_GET_STREAM_ID`),WORKFLOW_USE_STEP=Symbol.for(`WORKFLOW_USE_STEP`),STREAM_NAME_SYMBOL=Symbol.for(`WORKFLOW_STREAM_NAME`),workflowGlobal=globalThis;var RetryableError=class extends Error{},FatalError=class extends Error{};function createHook(e){let n=workflowGlobal[WORKFLOW_CREATE_HOOK];if(n===void 0)throw Error("`createHook()` can only be called inside a workflow function");return n(e)}function getWorkflowMetadata(){let t=workflowGlobal[WORKFLOW_CONTEXT_SYMBOL];if(t===void 0)throw Error("`getWorkflowMetadata()` can only be called inside a workflow or step function");return t}function getWritable(e={}){let t=workflowGlobal[WORKFLOW_GET_STREAM_ID];if(t===void 0)throw Error("`getWritable()` can only be called inside a workflow function");let r=t(e.namespace);return Object.create(globalThis.WritableStream.prototype,{[STREAM_NAME_SYMBOL]:{value:r,writable:!1}})}function createWebhook(e){let t=createHook(e),n=getWorkflowMetadata();return t.url=`${typeof n.url==`string`?n.url:``}/.well-known/workflow/v1/webhook/${encodeURIComponent(t.token)}`,t}function defineHook(){return{create:createHook,resume(){throw Error("`defineHook().resume()` can only be called from external contexts.")}}}function sleep(){throw Error("`sleep()` is not available in Eve workflow body bundles")}function resumeHook(){throw Error("`resumeHook()` can only be called from outside a workflow function")}function getStepMetadata(){throw Error("`getStepMetadata()` can only be called inside a step function")}async function experimental_setAttributes(e,t={}){let n=Object.entries(e);if(n.length===0)return;let i=workflowGlobal[WORKFLOW_USE_STEP];if(i===void 0)throw Error("`experimental_setAttributes()` can only be called inside a workflow runtime context");let a=n.map(([e,t])=>({key:e,value:t===void 0?null:t})),o=t.allowReservedAttributes===!0?{allowReservedAttributes:!0}:{};await i(`__builtin_set_attributes`)(a,o)}export{FatalError,RetryableError,createHook,createWebhook,defineHook,experimental_setAttributes,getStepMetadata,getWorkflowMetadata,getWritable,resumeHook,sleep};