workflow 5.0.0-beta.5 → 5.0.0-beta.50

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 (256) hide show
  1. package/README.md +68 -23
  2. package/dist/api-workflow.d.ts +1 -1
  3. package/dist/api-workflow.d.ts.map +1 -1
  4. package/dist/api-workflow.js +1 -1
  5. package/dist/api.d.ts +3 -3
  6. package/dist/api.d.ts.map +1 -1
  7. package/dist/api.js +5 -7
  8. package/dist/index.d.ts +1 -0
  9. package/dist/index.d.ts.map +1 -1
  10. package/dist/index.js +6 -1
  11. package/dist/internal/builtins.d.ts +20 -3
  12. package/dist/internal/builtins.d.ts.map +1 -1
  13. package/dist/internal/builtins.js +68 -4
  14. package/dist/internal/errors.d.ts +1 -1
  15. package/dist/internal/errors.d.ts.map +1 -1
  16. package/dist/internal/errors.js +2 -2
  17. package/dist/nest-builder.d.ts +2 -0
  18. package/dist/nest-builder.d.ts.map +1 -0
  19. package/dist/nest-builder.js +2 -0
  20. package/dist/nest-vercel-builder.d.ts +2 -0
  21. package/dist/nest-vercel-builder.d.ts.map +1 -0
  22. package/dist/nest-vercel-builder.js +2 -0
  23. package/dist/observability.d.ts +1 -1
  24. package/dist/observability.js +2 -2
  25. package/dist/runtime.d.ts +2 -1
  26. package/dist/runtime.d.ts.map +1 -1
  27. package/dist/runtime.js +4 -1
  28. package/docs/ai/chat-session-modeling.mdx +29 -26
  29. package/docs/ai/defining-tools.mdx +6 -7
  30. package/docs/ai/human-in-the-loop.mdx +11 -11
  31. package/docs/ai/index.mdx +50 -45
  32. package/docs/ai/message-queueing.mdx +16 -16
  33. package/docs/ai/meta.json +1 -0
  34. package/docs/ai/resumable-streams.mdx +40 -28
  35. package/docs/ai/sleep-and-delays.mdx +10 -10
  36. package/docs/ai/streaming-updates-from-tools.mdx +6 -6
  37. package/docs/api-reference/index.mdx +24 -0
  38. package/docs/api-reference/meta.json +8 -0
  39. package/docs/api-reference/vitest/index.mdx +9 -15
  40. package/docs/api-reference/workflow/create-hook.mdx +89 -10
  41. package/docs/api-reference/workflow/create-webhook.mdx +16 -15
  42. package/docs/api-reference/workflow/define-hook.mdx +35 -33
  43. package/docs/api-reference/workflow/fatal-error.mdx +30 -8
  44. package/docs/api-reference/workflow/fetch.mdx +14 -10
  45. package/docs/api-reference/workflow/get-step-metadata.mdx +2 -2
  46. package/docs/api-reference/workflow/get-workflow-metadata.mdx +3 -3
  47. package/docs/api-reference/workflow/get-writable.mdx +7 -7
  48. package/docs/api-reference/workflow/index.mdx +4 -1
  49. package/docs/api-reference/workflow/retryable-error.mdx +1 -1
  50. package/docs/api-reference/workflow/set-attributes.mdx +61 -0
  51. package/docs/api-reference/workflow/sleep.mdx +4 -4
  52. package/docs/api-reference/workflow-ai/durable-agent.mdx +48 -86
  53. package/docs/api-reference/workflow-ai/index.mdx +3 -3
  54. package/docs/api-reference/workflow-ai/workflow-chat-transport.mdx +67 -24
  55. package/docs/api-reference/workflow-api/get-hook-by-token.mdx +26 -12
  56. package/docs/api-reference/workflow-api/get-run.mdx +43 -8
  57. package/docs/api-reference/workflow-api/index.mdx +6 -10
  58. package/docs/api-reference/workflow-api/resume-hook.mdx +73 -12
  59. package/docs/api-reference/workflow-api/resume-webhook.mdx +11 -9
  60. package/docs/api-reference/workflow-api/start.mdx +60 -13
  61. package/docs/api-reference/workflow-astro/index.mdx +18 -0
  62. package/docs/api-reference/workflow-astro/meta.json +4 -0
  63. package/docs/api-reference/workflow-astro/workflow.mdx +45 -0
  64. package/docs/api-reference/workflow-errors/entity-conflict-error.mdx +4 -4
  65. package/docs/api-reference/workflow-errors/hook-conflict-error.mdx +60 -0
  66. package/docs/api-reference/workflow-errors/hook-not-found-error.mdx +8 -8
  67. package/docs/api-reference/workflow-errors/index.mdx +88 -0
  68. package/docs/api-reference/workflow-errors/meta.json +6 -0
  69. package/docs/api-reference/workflow-errors/precondition-failed-error.mdx +68 -0
  70. package/docs/api-reference/workflow-errors/run-expired-error.mdx +2 -2
  71. package/docs/api-reference/workflow-errors/run-not-supported-error.mdx +58 -0
  72. package/docs/api-reference/workflow-errors/step-not-registered-error.mdx +5 -5
  73. package/docs/api-reference/workflow-errors/throttle-error.mdx +2 -2
  74. package/docs/api-reference/workflow-errors/too-early-error.mdx +2 -2
  75. package/docs/api-reference/workflow-errors/workflow-error.mdx +52 -0
  76. package/docs/api-reference/workflow-errors/workflow-not-registered-error.mdx +5 -6
  77. package/docs/api-reference/workflow-errors/workflow-run-cancelled-error.mdx +6 -6
  78. package/docs/api-reference/workflow-errors/workflow-run-failed-error.mdx +5 -5
  79. package/docs/api-reference/workflow-errors/workflow-run-not-completed-error.mdx +58 -0
  80. package/docs/api-reference/workflow-errors/workflow-run-not-found-error.mdx +4 -4
  81. package/docs/api-reference/workflow-errors/workflow-runtime-error.mdx +58 -0
  82. package/docs/api-reference/workflow-errors/workflow-world-error.mdx +8 -8
  83. package/docs/api-reference/workflow-globals.mdx +14 -10
  84. package/docs/api-reference/workflow-nest/configure-workflow-controller.mdx +33 -0
  85. package/docs/api-reference/workflow-nest/index.mdx +31 -0
  86. package/docs/api-reference/workflow-nest/meta.json +9 -0
  87. package/docs/api-reference/workflow-nest/nest-local-builder.mdx +64 -0
  88. package/docs/api-reference/workflow-nest/workflow-controller.mdx +40 -0
  89. package/docs/api-reference/workflow-nest/workflow-module.mdx +74 -0
  90. package/docs/api-reference/workflow-next/with-workflow.mdx +39 -17
  91. package/docs/api-reference/workflow-nitro/index.mdx +60 -0
  92. package/docs/api-reference/workflow-nuxt/index.mdx +48 -0
  93. package/docs/api-reference/workflow-observability/hydrate-data.mdx +35 -0
  94. package/docs/api-reference/workflow-observability/hydrate-resource-io.mdx +62 -0
  95. package/docs/api-reference/workflow-observability/index.mdx +62 -0
  96. package/docs/api-reference/workflow-observability/meta.json +11 -0
  97. package/docs/api-reference/workflow-observability/observability-revivers.mdx +50 -0
  98. package/docs/api-reference/workflow-observability/parse-class-name.mdx +41 -0
  99. package/docs/api-reference/workflow-observability/parse-step-name.mdx +40 -0
  100. package/docs/api-reference/workflow-observability/parse-workflow-name.mdx +55 -0
  101. package/docs/api-reference/workflow-runtime/create-world.mdx +39 -0
  102. package/docs/api-reference/workflow-runtime/get-world-handlers.mdx +44 -0
  103. package/docs/api-reference/{workflow-api → workflow-runtime}/get-world.mdx +11 -14
  104. package/docs/api-reference/workflow-runtime/health-check.mdx +50 -0
  105. package/docs/api-reference/workflow-runtime/index.mdx +41 -0
  106. package/docs/api-reference/workflow-runtime/meta.json +12 -0
  107. package/docs/api-reference/workflow-runtime/set-world.mdx +51 -0
  108. package/docs/api-reference/workflow-runtime/workflow-entrypoint.mdx +43 -0
  109. package/docs/api-reference/workflow-runtime/world/analytics.mdx +315 -0
  110. package/docs/api-reference/workflow-runtime/world/index.mdx +60 -0
  111. package/docs/api-reference/workflow-runtime/world/meta.json +4 -0
  112. package/docs/api-reference/workflow-runtime/world/queue.mdx +88 -0
  113. package/docs/api-reference/{workflow-api → workflow-runtime}/world/storage.mdx +98 -34
  114. package/docs/api-reference/{workflow-api → workflow-runtime}/world/streams.mdx +8 -8
  115. package/docs/api-reference/workflow-serde/index.mdx +1 -2
  116. package/docs/api-reference/workflow-serde/workflow-deserialize.mdx +3 -4
  117. package/docs/api-reference/workflow-serde/workflow-serialize.mdx +8 -8
  118. package/docs/api-reference/workflow-sveltekit/index.mdx +18 -0
  119. package/docs/api-reference/workflow-sveltekit/meta.json +4 -0
  120. package/docs/api-reference/workflow-sveltekit/workflow-plugin.mdx +42 -0
  121. package/docs/api-reference/workflow-vite/index.mdx +18 -0
  122. package/docs/api-reference/workflow-vite/meta.json +4 -0
  123. package/docs/api-reference/workflow-vite/workflow.mdx +48 -0
  124. package/docs/changelog/attributes-mvp.mdx +380 -0
  125. package/docs/changelog/batched-event-writes.mdx +79 -0
  126. package/docs/changelog/eager-processing.mdx +110 -436
  127. package/docs/changelog/index.mdx +4 -2
  128. package/docs/changelog/lazy-event-creation.md +127 -0
  129. package/docs/changelog/lazy-hook-resume.mdx +78 -0
  130. package/docs/changelog/meta.json +11 -1
  131. package/docs/changelog/resilient-resume.mdx +32 -0
  132. package/docs/changelog/resilient-start.mdx +33 -285
  133. package/docs/changelog/step-message-ownership.mdx +360 -0
  134. package/docs/changelog/turbo-mode.md +87 -0
  135. package/docs/comparisons/index.mdx +66 -0
  136. package/docs/comparisons/meta.json +11 -0
  137. package/docs/comparisons/workflow-sdk-vs-aws-agentcore.mdx +55 -0
  138. package/docs/comparisons/workflow-sdk-vs-aws-step-functions.mdx +111 -0
  139. package/docs/comparisons/workflow-sdk-vs-cloudflare-workflows.mdx +71 -0
  140. package/docs/comparisons/workflow-sdk-vs-inngest.mdx +102 -0
  141. package/docs/comparisons/workflow-sdk-vs-temporal.mdx +123 -0
  142. package/docs/comparisons/workflow-sdk-vs-trigger-dev.mdx +104 -0
  143. package/docs/configuration/build-and-diagnostics.mdx +70 -0
  144. package/docs/configuration/cli-and-web-ui.mdx +241 -0
  145. package/docs/configuration/framework-options.mdx +165 -0
  146. package/docs/configuration/index.mdx +32 -0
  147. package/docs/configuration/meta.json +12 -0
  148. package/docs/configuration/runtime-tuning.mdx +376 -0
  149. package/docs/configuration/worlds.mdx +313 -0
  150. package/docs/cookbook/advanced/child-workflows.mdx +211 -264
  151. package/docs/cookbook/advanced/meta.json +6 -1
  152. package/docs/cookbook/advanced/publishing-libraries.mdx +65 -56
  153. package/docs/cookbook/advanced/serializable-steps.mdx +28 -20
  154. package/docs/cookbook/advanced/upgrading-workflows.mdx +199 -0
  155. package/docs/cookbook/agent-patterns/agent-cancellation.mdx +27 -19
  156. package/docs/cookbook/agent-patterns/durable-agent.mdx +14 -142
  157. package/docs/cookbook/agent-patterns/human-in-the-loop.mdx +30 -22
  158. package/docs/cookbook/common-patterns/batching.mdx +18 -14
  159. package/docs/cookbook/common-patterns/idempotency.mdx +41 -53
  160. package/docs/cookbook/common-patterns/rate-limiting.mdx +8 -4
  161. package/docs/cookbook/common-patterns/saga.mdx +23 -19
  162. package/docs/cookbook/common-patterns/scheduling.mdx +34 -22
  163. package/docs/cookbook/common-patterns/sequential-and-parallel.mdx +29 -25
  164. package/docs/cookbook/common-patterns/timeouts.mdx +26 -21
  165. package/docs/cookbook/common-patterns/webhooks.mdx +10 -6
  166. package/docs/cookbook/common-patterns/workflow-composition.mdx +30 -27
  167. package/docs/cookbook/index.mdx +22 -21
  168. package/docs/cookbook/integrations/ai-sdk.mdx +85 -47
  169. package/docs/cookbook/integrations/chat-sdk.mdx +50 -33
  170. package/docs/cookbook/integrations/sandbox.mdx +62 -45
  171. package/docs/deploying.mdx +95 -0
  172. package/docs/errors/abort-signal-timeout-in-workflow.mdx +16 -12
  173. package/docs/errors/corrupted-event-log.mdx +29 -18
  174. package/docs/errors/deployment-mismatch.mdx +71 -0
  175. package/docs/errors/fetch-in-workflow.mdx +11 -7
  176. package/docs/errors/hook-conflict.mdx +69 -13
  177. package/docs/errors/index.mdx +2 -36
  178. package/docs/errors/node-js-module-in-workflow.mdx +9 -5
  179. package/docs/errors/replay-divergence.mdx +27 -0
  180. package/docs/errors/run-expired.mdx +85 -0
  181. package/docs/errors/runtime-decryption-failed.mdx +77 -0
  182. package/docs/errors/serialization-failed.mdx +44 -12
  183. package/docs/errors/start-invalid-workflow-function.mdx +9 -5
  184. package/docs/errors/step-executed-multiple-times.mdx +23 -0
  185. package/docs/errors/step-not-registered.mdx +6 -6
  186. package/docs/errors/timeout-in-workflow.mdx +12 -8
  187. package/docs/errors/webhook-invalid-respond-with-value.mdx +18 -18
  188. package/docs/errors/webhook-response-not-sent.mdx +20 -16
  189. package/docs/errors/workflow-not-registered.mdx +5 -5
  190. package/docs/foundations/cancellation.mdx +31 -32
  191. package/docs/foundations/errors-and-retries.mdx +42 -11
  192. package/docs/foundations/hooks.mdx +64 -35
  193. package/docs/foundations/idempotency.mdx +244 -12
  194. package/docs/foundations/index.mdx +1 -23
  195. package/docs/foundations/meta.json +2 -1
  196. package/docs/foundations/serialization.mdx +21 -22
  197. package/docs/foundations/starting-workflows.mdx +106 -30
  198. package/docs/foundations/streaming.mdx +107 -59
  199. package/docs/foundations/versioning.mdx +263 -0
  200. package/docs/foundations/workflows-and-steps.mdx +9 -9
  201. package/docs/getting-started/astro.mdx +22 -18
  202. package/docs/getting-started/express.mdx +15 -11
  203. package/docs/getting-started/fastify.mdx +15 -11
  204. package/docs/getting-started/hono.mdx +15 -11
  205. package/docs/getting-started/index.mdx +10 -3
  206. package/docs/getting-started/meta.json +3 -1
  207. package/docs/getting-started/nestjs.mdx +87 -20
  208. package/docs/getting-started/next.mdx +22 -16
  209. package/docs/getting-started/nitro.mdx +22 -18
  210. package/docs/getting-started/nuxt.mdx +15 -11
  211. package/docs/getting-started/python.mdx +135 -40
  212. package/docs/getting-started/react-router/index.mdx +33 -0
  213. package/docs/getting-started/react-router/meta.json +5 -0
  214. package/docs/getting-started/react-router/v7.mdx +237 -0
  215. package/docs/getting-started/react-router/v8.mdx +232 -0
  216. package/docs/getting-started/sveltekit.mdx +20 -16
  217. package/docs/getting-started/tanstack-start.mdx +17 -13
  218. package/docs/getting-started/vite.mdx +15 -11
  219. package/docs/how-it-works/cancellation.mdx +63 -63
  220. package/docs/how-it-works/code-transform.mdx +83 -67
  221. package/docs/how-it-works/encryption.mdx +30 -26
  222. package/docs/how-it-works/event-sourcing.mdx +98 -34
  223. package/docs/how-it-works/framework-integrations.mdx +96 -337
  224. package/docs/how-it-works/understanding-directives.mdx +22 -22
  225. package/docs/internal/index.mdx +6 -4
  226. package/docs/internal/meta.json +6 -1
  227. package/docs/internal/nitro-native-build.mdx +38 -0
  228. package/docs/internal/nitro-web-ui.mdx +24 -0
  229. package/docs/internal/serializable-abort-controller.mdx +7 -7
  230. package/docs/meta.json +3 -2
  231. package/docs/observability/attributes.mdx +134 -0
  232. package/docs/observability/index.mdx +32 -10
  233. package/docs/observability/meta.json +1 -1
  234. package/docs/observability/retention.mdx +93 -0
  235. package/docs/observability/tracing.mdx +124 -0
  236. package/docs/testing/index.mdx +36 -36
  237. package/docs/testing/server-based.mdx +10 -10
  238. package/docs/whats-new.mdx +186 -0
  239. package/package.json +17 -14
  240. package/docs/api-reference/workflow-api/world/index.mdx +0 -58
  241. package/docs/api-reference/workflow-api/world/meta.json +0 -4
  242. package/docs/api-reference/workflow-api/world/observability.mdx +0 -164
  243. package/docs/api-reference/workflow-api/world/queue.mdx +0 -86
  244. package/docs/deploying/building-a-world.mdx +0 -251
  245. package/docs/deploying/index.mdx +0 -95
  246. package/docs/deploying/meta.json +0 -4
  247. package/docs/deploying/world/local-world.mdx +0 -84
  248. package/docs/deploying/world/meta.json +0 -4
  249. package/docs/deploying/world/postgres-world.mdx +0 -224
  250. package/docs/deploying/world/vercel-world.mdx +0 -179
  251. package/docs/migration-guides/index.mdx +0 -34
  252. package/docs/migration-guides/meta.json +0 -9
  253. package/docs/migration-guides/migrating-from-aws-step-functions.mdx +0 -363
  254. package/docs/migration-guides/migrating-from-inngest.mdx +0 -314
  255. package/docs/migration-guides/migrating-from-temporal.mdx +0 -318
  256. package/docs/migration-guides/migrating-from-trigger-dev.mdx +0 -337
@@ -1,61 +1,23 @@
1
1
  ---
2
2
  title: DurableAgent
3
- description: Create AI agents that maintain state, call tools, and handle interruptions gracefully.
3
+ description: Deprecated DurableAgent API reference; use WorkflowAgent for new durable agents.
4
4
  type: reference
5
- summary: Use DurableAgent to build AI agents that maintain state across steps and survive interruptions.
5
+ summary: "Deprecated: use AI SDK's WorkflowAgent instead of DurableAgent."
6
6
  prerequisites:
7
7
  - /docs/ai
8
8
  related:
9
9
  - /docs/ai/defining-tools
10
10
  ---
11
11
 
12
- The `DurableAgent` class enables you to create AI-powered agents that can maintain state across workflow steps, call tools, and gracefully handle interruptions and resumptions.
13
-
14
- Tool calls can be implemented as workflow steps for automatic retries, or as regular workflow-level logic utilizing core library features such as [`sleep()`](/docs/api-reference/workflow/sleep) and [Hooks](/docs/foundations/hooks).
15
-
16
- ```typescript lineNumbers
17
- import { DurableAgent } from "@workflow/ai/agent";
18
- import { getWritable } from "workflow";
19
- import { z } from "zod";
20
- import type { UIMessageChunk } from "ai";
21
-
22
- async function getWeather({ city }: { city: string }) {
23
- "use step";
24
-
25
- return `Weather in ${city} is sunny`;
26
- }
27
-
28
- async function myAgent() {
29
- "use workflow";
30
-
31
- const agent = new DurableAgent({
32
- model: "anthropic/claude-haiku-4.5",
33
- instructions: "You are a helpful weather assistant.",
34
- temperature: 0.7,
35
- tools: {
36
- getWeather: {
37
- description: "Get weather for a city",
38
- inputSchema: z.object({ city: z.string() }),
39
- execute: getWeather,
40
- },
41
- },
42
- });
43
-
44
- // The agent will stream its output to the workflow
45
- // run's default output stream
46
- const writable = getWritable<UIMessageChunk>();
12
+ <Callout type="warn">
13
+ `DurableAgent` is deprecated. Use AI SDK's [`WorkflowAgent`](https://ai-sdk.dev/v7/docs/agents/workflow-agent#workflowagent) for new durable agents. See the [migration guide](https://ai-sdk.dev/v7/docs/agents/workflow-agent#migrating-from-durableagent).
14
+ </Callout>
47
15
 
48
- const result = await agent.stream({
49
- messages: [{ role: "user", content: "How is the weather in San Francisco?" }],
50
- writable,
51
- });
16
+ This reference is kept for existing applications that still import `DurableAgent` from `@workflow/ai/agent`. Do not use `DurableAgent` for new code.
52
17
 
53
- // result contains messages, steps, and optional structured output
54
- console.log(result.messages);
55
- }
56
- ```
18
+ For current examples and implementation guidance, see AI SDK's [`WorkflowAgent`](https://ai-sdk.dev/v7/docs/agents/workflow-agent#workflowagent) docs. For legacy code, the API surface below documents the existing `DurableAgent` exports.
57
19
 
58
- ## API Signature
20
+ ## API signature
59
21
 
60
22
  ### Class
61
23
 
@@ -163,7 +125,7 @@ import type { StreamTextOnAbortCallback } from "@workflow/ai/agent";
163
125
  export default StreamTextOnAbortCallback;`}
164
126
  />
165
127
 
166
- ### Advanced Types
128
+ ### Advanced types
167
129
 
168
130
  #### ToolCallRepairFunction
169
131
 
@@ -195,30 +157,30 @@ import type { OutputSpecification } from "@workflow/ai/agent";
195
157
  export default OutputSpecification;`}
196
158
  />
197
159
 
198
- ## Key Features
160
+ ## Key features
199
161
 
200
- - **Durable Execution**: Agents can be interrupted and resumed without losing state
201
- - **Flexible Tool Implementation**: Tools can be implemented as workflow steps for automatic retries, or as regular workflow-level logic
202
- - **Stream Processing**: Handles streaming responses and tool calls in a structured way
203
- - **Workflow Native**: Fully integrated with Workflow SDK for production-grade reliability
204
- - **AI SDK Parity**: Supports the same options as AI SDK's `streamText` including generation settings, callbacks, and structured output
162
+ - **Durable execution**: Agents can be interrupted and resumed without losing state.
163
+ - **Flexible tool implementation**: Tools can be implemented as workflow steps for automatic retries or as regular workflow-level logic.
164
+ - **Stream processing**: Handles streaming responses and tool calls in a structured way.
165
+ - **Workflow native**: Fully integrated with Workflow SDK for production reliability.
166
+ - **AI SDK parity**: Supports the same options as AI SDK's `streamText`, including generation settings, callbacks, and structured output.
205
167
 
206
- ## Good to Know
168
+ ## Good to know
207
169
 
208
- - Tools can be implemented as workflow steps (using `"use step"` for automatic retries), or as regular workflow-level logic
209
- - Tools can use core library features like `sleep()` and Hooks within their `execute` functions
210
- - The agent processes tool calls iteratively until completion or `maxSteps` is reached
211
- - **Default `maxSteps` is unlimited** - set a value to limit the number of LLM calls
212
- - The `stream()` method returns `{ messages, steps, toolCalls, toolResults, experimental_output, uiMessages }` containing the full conversation history, step details, tool call details, optional structured output, and optionally accumulated UI messages
213
- - Use `collectUIMessages: true` to accumulate `UIMessage[]` during streaming, useful for persisting conversation state without re-reading the stream
214
- - The `prepareStep` callback runs before each step and can modify model, messages, generation settings, tool choice, and context
215
- - Generation settings (temperature, maxOutputTokens, etc.) can be set on the constructor and overridden per-stream call
216
- - Use `activeTools` to limit which tools are available for a specific stream call
217
- - The `onFinish` callback is called when all steps complete; `onAbort` is called if aborted
170
+ - Tools can be implemented as workflow steps (using `"use step"` for automatic retries) or as regular workflow-level logic.
171
+ - Tools can use core library features like `sleep()` and hooks within their `execute` functions.
172
+ - The agent processes tool calls iteratively until completion or until `maxSteps` is reached.
173
+ - **Default `maxSteps` is unlimited**: Set a value to limit the number of large language model (LLM) calls.
174
+ - The `stream()` method returns `{ messages, steps, toolCalls, toolResults, experimental_output, uiMessages }` containing the full conversation history, step details, tool call details, optional structured output, and optionally accumulated user interface (UI) messages.
175
+ - Use `collectUIMessages: true` to accumulate `UIMessage[]` during streaming, which is useful for persisting conversation state without re-reading the stream.
176
+ - The `prepareStep` callback runs before each step and can modify the model, messages, generation settings, tool choice, and context.
177
+ - Generation settings (`temperature`, `maxOutputTokens`, and others) can be set on the constructor and overridden per-stream call.
178
+ - Use `activeTools` to limit which tools are available for a specific stream call.
179
+ - The `onFinish` callback is called when all steps complete; `onAbort` is called if aborted.
218
180
 
219
181
  ## Examples
220
182
 
221
- ### Basic Agent with Tools
183
+ ### Basic agent with tools
222
184
 
223
185
  ```typescript
224
186
  import { DurableAgent } from "@workflow/ai/agent";
@@ -260,7 +222,7 @@ async function weatherAgentWorkflow(userQuery: string) {
260
222
  }
261
223
  ```
262
224
 
263
- ### Multiple Tools
225
+ ### Multiple tools
264
226
 
265
227
  ```typescript
266
228
  import { DurableAgent } from "@workflow/ai/agent";
@@ -309,7 +271,7 @@ async function multiToolAgentWorkflow(userQuery: string) {
309
271
  }
310
272
  ```
311
273
 
312
- ### Multi-turn Conversation
274
+ ### Multi-turn conversation
313
275
 
314
276
  ```typescript
315
277
  import { DurableAgent } from "@workflow/ai/agent";
@@ -363,7 +325,7 @@ async function multiTurnAgentWorkflow() {
363
325
  }
364
326
  ```
365
327
 
366
- ### Tools with Workflow Library Features
328
+ ### Tools with Workflow library features
367
329
 
368
330
  ```typescript
369
331
  import { DurableAgent } from "@workflow/ai/agent";
@@ -385,7 +347,7 @@ async function requestApproval({ message }: { message: string }) {
385
347
  // Note: No "use step" for this tool call either,
386
348
  // since hooks are awaited at the workflow level
387
349
 
388
- // Utilize a Hook for Human-in-the-loop approval
350
+ // Use a Hook for Human-in-the-loop approval
389
351
  const hook = approvalHook.create({
390
352
  metadata: { message }
391
353
  });
@@ -430,7 +392,7 @@ async function agentWithLibraryFeaturesWorkflow(userRequest: string) {
430
392
  }
431
393
  ```
432
394
 
433
- ### Dynamic Context with prepareStep
395
+ ### Dynamic context with prepareStep
434
396
 
435
397
  Use `prepareStep` to modify settings before each step in the agent loop:
436
398
 
@@ -474,7 +436,7 @@ async function agentWithPrepareStep(userMessage: string) {
474
436
  }
475
437
  ```
476
438
 
477
- ### Message Injection with prepareStep
439
+ ### Message injection with prepareStep
478
440
 
479
441
  Inject messages from external sources (like hooks) before each LLM call:
480
442
 
@@ -524,7 +486,7 @@ async function agentWithMessageQueue(initialMessage: string) {
524
486
  }
525
487
  ```
526
488
 
527
- ### Generation Settings
489
+ ### Generation settings
528
490
 
529
491
  Configure model generation parameters at the constructor or stream level:
530
492
 
@@ -562,7 +524,7 @@ async function agentWithGenerationSettings() {
562
524
  }
563
525
  ```
564
526
 
565
- ### Limiting Steps with maxSteps
527
+ ### Limiting steps with maxSteps
566
528
 
567
529
  By default, the agent loops until completion. Use `maxSteps` to limit the number of LLM calls:
568
530
 
@@ -613,7 +575,7 @@ async function multiStepAgent() {
613
575
  }
614
576
  ```
615
577
 
616
- ### Callbacks for Monitoring
578
+ ### Callbacks for monitoring
617
579
 
618
580
  Use callbacks to monitor streaming progress, handle errors, and react to completion:
619
581
 
@@ -654,7 +616,7 @@ async function agentWithCallbacks() {
654
616
  }
655
617
  ```
656
618
 
657
- ### Structured Output
619
+ ### Structured output
658
620
 
659
621
  Parse structured data from the LLM response using `Output.object`:
660
622
 
@@ -689,7 +651,7 @@ async function agentWithStructuredOutput() {
689
651
  }
690
652
  ```
691
653
 
692
- ### Tool Choice Control
654
+ ### Tool choice control
693
655
 
694
656
  Control when and which tools the model can use:
695
657
 
@@ -752,7 +714,7 @@ async function agentWithToolChoice() {
752
714
  }
753
715
  ```
754
716
 
755
- ### Passing Context to Tools
717
+ ### Passing context to tools
756
718
 
757
719
  Use `experimental_context` to pass shared context to tool executions:
758
720
 
@@ -796,7 +758,7 @@ async function agentWithContext(userId: string) {
796
758
  }
797
759
  ```
798
760
 
799
- ### Collecting UI Messages
761
+ ### Collecting UI messages
800
762
 
801
763
  Use `collectUIMessages` to accumulate `UIMessage[]` during streaming. This is useful when you need to persist the conversation without re-reading the run's output stream:
802
764
 
@@ -838,7 +800,7 @@ async function saveConversation(messages: UIMessage[]) {
838
800
  The `uiMessages` property is only available when `collectUIMessages` is set to `true`. When disabled, `uiMessages` is `undefined`.
839
801
  </Callout>
840
802
 
841
- ### Machine-Readable Tool Results
803
+ ### Machine-readable tool results
842
804
 
843
805
  `stream()` returns tool call information you can inspect programmatically. Compare `toolCalls` with `toolResults` to find unresolved tool calls that need client-side handling:
844
806
 
@@ -895,7 +857,7 @@ async function agentWithToolInspection(userMessage: string) {
895
857
  `toolCalls` and `toolResults` reflect the *last step* of the agent loop. Tools without an `execute` function will appear in `toolCalls` but not in `toolResults`, which is how you detect calls that need client-side handling.
896
858
  </Callout>
897
859
 
898
- ### Aborting Long-Running Streams
860
+ ### Aborting long-running streams
899
861
 
900
862
  Use `timeout` to abort a stream automatically after a fixed duration:
901
863
 
@@ -923,10 +885,10 @@ async function agentWithTimeout(userMessage: string) {
923
885
  }
924
886
  ```
925
887
 
926
- ## See Also
888
+ ## See also
927
889
 
928
- - [Building Durable AI Agents](/docs/ai) - Complete guide to creating durable agents
929
- - [Queueing User Messages](/docs/ai/message-queueing) - Using prepareStep for message injection
930
- - [WorkflowChatTransport](/docs/api-reference/workflow-ai/workflow-chat-transport) - Transport layer for AI SDK streams
931
- - [Workflows and Steps](/docs/foundations/workflows-and-steps) - Understanding workflow fundamentals
932
- - [AI SDK Loop Control](https://ai-sdk.dev/docs/agents/loop-control) - AI SDK's agent loop control patterns
890
+ - [Building Durable AI Agents](/docs/ai): Complete guide to creating durable agents
891
+ - [Queueing User Messages](/docs/ai/message-queueing): Using `prepareStep` for message injection
892
+ - [WorkflowChatTransport](/docs/api-reference/workflow-ai/workflow-chat-transport): Transport layer for AI SDK streams
893
+ - [Workflows and Steps](/docs/foundations/workflows-and-steps): Understanding workflow fundamentals
894
+ - [AI SDK Loop Control](https://ai-sdk.dev/docs/agents/loop-control): AI SDK's agent loop control patterns
@@ -7,15 +7,15 @@ related:
7
7
  - /docs/ai
8
8
  ---
9
9
 
10
- Helpers for integrating AI SDK for building AI-powered workflows.
10
+ The `@workflow/ai` package provides helpers for integrating AI SDK into AI-powered workflows.
11
11
 
12
12
  ## Classes
13
13
 
14
14
  <Cards>
15
15
  <Card title="DurableAgent" href="/docs/api-reference/workflow-ai/durable-agent">
16
- A class for building durable AI agents that maintain state across workflow steps and handle tool execution with automatic retries.
16
+ Deprecated: use AI SDK's [`WorkflowAgent`](https://ai-sdk.dev/v7/docs/agents/workflow-agent#workflowagent). Reference kept for existing `@workflow/ai/agent` imports.
17
17
  </Card>
18
18
  <Card title="WorkflowChatTransport" href="/docs/api-reference/workflow-ai/workflow-chat-transport">
19
- A drop-in transport for the AI SDK for automatic reconnection in interrupted streams.
19
+ Deprecated: use AI SDK's [`WorkflowChatTransport`](https://ai-sdk.dev/v7/docs/agents/workflow-agent#resumable-streaming-with-workflowchattransport) from `@ai-sdk/workflow`. Reference kept for existing `@workflow/ai` imports.
20
20
  </Card>
21
21
  </Cards>
@@ -9,7 +9,11 @@ related:
9
9
  - /docs/ai/resumable-streams
10
10
  ---
11
11
 
12
- A chat transport implementation for the AI SDK that provides reliable message streaming with automatic reconnection to interrupted streams. This transport is a drop-in replacement for the default AI SDK transport, enabling seamless recovery from network issues, page refreshes, or Vercel Function timeouts.
12
+ <Callout type="warn">
13
+ `WorkflowChatTransport` from `@workflow/ai` is deprecated. AI SDK ships a 1:1 port, so use [`WorkflowChatTransport` from `@ai-sdk/workflow`](https://ai-sdk.dev/v7/docs/agents/workflow-agent#resumable-streaming-with-workflowchattransport) instead. This reference is kept for existing applications that still import it from `@workflow/ai`.
14
+ </Callout>
15
+
16
+ `WorkflowChatTransport` is an AI SDK chat transport that automatically reconnects to interrupted streams. It replaces the default AI SDK transport and recovers from network issues, page refreshes, or Vercel Functions timeouts.
13
17
 
14
18
  <Callout>
15
19
  `WorkflowChatTransport` implements the [`ChatTransport`](https://ai-sdk.dev/docs/ai-sdk-ui/transport) interface from the AI SDK and is designed to work with workflow-based chat applications. It requires endpoints that return the `x-workflow-run-id` header to enable stream resumption.
@@ -34,7 +38,7 @@ export default function Chat() {
34
38
  }
35
39
  ```
36
40
 
37
- ## API Signature
41
+ ## API signature
38
42
 
39
43
  ### Class
40
44
 
@@ -52,27 +56,27 @@ import type { WorkflowChatTransportOptions } from "@workflow/ai";
52
56
  export default WorkflowChatTransportOptions;`}
53
57
  />
54
58
 
55
- ## Key Features
59
+ ## Key features
56
60
 
57
- - **Automatic Reconnection**: Automatically recovers from interrupted streams with configurable retry limits
58
- - **Workflow Integration**: Seamlessly works with workflow-based endpoints that provide the `x-workflow-run-id` header
59
- - **Customizable Requests**: Allows intercepting and modifying requests via `prepareSendMessagesRequest` and `prepareReconnectToStreamRequest`
60
- - **Stream Callbacks**: Provides hooks for tracking chat lifecycle via `onChatSendMessage` and `onChatEnd`
61
- - **Custom Fetch**: Supports custom fetch implementations for advanced use cases
61
+ - **Automatic reconnection**: Recovers from interrupted streams with configurable retry limits.
62
+ - **Workflow integration**: Works with workflow-based endpoints that provide the `x-workflow-run-id` header.
63
+ - **Customizable requests**: Allows intercepting and modifying requests through `prepareSendMessagesRequest` and `prepareReconnectToStreamRequest`.
64
+ - **Stream callbacks**: Provides hooks for tracking the chat lifecycle through `onChatSendMessage` and `onChatEnd`.
65
+ - **Custom fetch**: Supports custom fetch implementations for advanced use cases.
62
66
 
63
- ## Good to Know
67
+ ## Good to know
64
68
 
65
- - The transport expects chat endpoints to return the `x-workflow-run-id` header in the response to enable stream resumption
66
- - By default, the transport posts to `/api/chat` and reconnects via `/api/chat/{runId}/stream`
67
- - The `onChatSendMessage` callback receives the full response object, allowing you to extract and store the workflow run ID for session resumption
68
- - Stream interruptions are automatically detected when a "finish" chunk is not received in the initial response
69
- - The `maxConsecutiveErrors` option controls how many reconnection attempts are made before giving up (default: 3)
70
- - `initialStartIndex` (constructor option) sets the default chunk position for the **first** reconnection attempt (e.g. after a page refresh). Subsequent retries within the same reconnection loop always resume from the last received chunk. Negative values (e.g. `-20`) read from the end of the stream, which is useful for showing only recent output without replaying the full conversation. `startIndex` (per-call option on `reconnectToStream`) overrides `initialStartIndex` for a single reconnection
71
- - When using a negative `initialStartIndex`, the reconnection endpoint must return the `x-workflow-stream-tail-index` response header (via `readable.getTailIndex()`). The transport reads this header to compute absolute chunk positions for retries. Without it, startIndex is assumed to be 0, replaying the entire stream
69
+ - The transport expects chat endpoints to return the `x-workflow-run-id` header in the response to enable stream resumption.
70
+ - By default, the transport posts to `/api/chat` and reconnects through `/api/chat/{runId}/stream`.
71
+ - The `onChatSendMessage` callback receives the full response object, allowing you to extract and store the workflow run ID for session resumption.
72
+ - Stream interruptions are automatically detected when a `finish` chunk is not received in the initial response.
73
+ - The `maxConsecutiveErrors` option controls how many reconnection attempts are made before giving up (default: 3).
74
+ - `initialStartIndex` (constructor option) sets the default chunk position for the **first** reconnection attempt (for example, after a page refresh). Subsequent retries within the same reconnection loop always resume from the last received chunk. Negative values (for example, `-20`) read from the end of the stream, which is useful for showing only recent output without replaying the full conversation. `startIndex` (per-call option on `reconnectToStream`) overrides `initialStartIndex` for a single reconnection.
75
+ - When using a negative `initialStartIndex`, the reconnection endpoint must return the `x-workflow-stream-tail-index` response header (through `readable.getTailIndex()`). The transport reads this header to compute absolute chunk positions for retries. Without it, `startIndex` is assumed to be `0`, replaying the entire stream.
72
76
 
73
77
  ## Examples
74
78
 
75
- ### Basic Chat Setup
79
+ ### Basic chat setup
76
80
 
77
81
  ```typescript
78
82
  "use client";
@@ -115,7 +119,7 @@ export default function BasicChat() {
115
119
  }
116
120
  ```
117
121
 
118
- ### With Session Persistence and Resumption
122
+ ### With session persistence and resumption
119
123
 
120
124
  ```typescript
121
125
  "use client";
@@ -183,7 +187,7 @@ export default function ChatWithResumption() {
183
187
  }
184
188
  ```
185
189
 
186
- ### With Custom Request Configuration
190
+ ### With custom request configuration
187
191
 
188
192
  ```typescript
189
193
  "use client";
@@ -250,9 +254,48 @@ export default function ChatWithCustomConfig() {
250
254
  }
251
255
  ```
252
256
 
253
- ## See Also
257
+ ## Mid-part resumes
258
+
259
+ A workflow stream is a flat sequence of chunks, but the AI SDK's user interface (UI) protocol groups chunks into logical parts: a `text-start` opens a text part that subsequent `text-delta`s extend and a `text-end` closes, and the same shape applies to `reasoning-*` and `tool-input-*`. The AI SDK client enforces that grammar: a `reasoning-delta` whose `reasoning-start` was never seen throws and breaks the chat.
260
+
261
+ A non-zero `startIndex` (in particular a negative `initialStartIndex`) resolves to a chunk offset with no awareness of those part boundaries, so it can land in the middle of an open part. When that happens, `WorkflowChatTransport` will **drop chunks that reference a part it didn't see a start for** and log a one-time warning. The chat keeps working, but any partial part overlapping the resume cursor is discarded. Tool calls are an exception: `tool-input-available` / `tool-input-error` chunks are self-contained (they carry the full input), so a tool call is recovered as soon as one of those chunks appears in the resumed window. Only its streamed input deltas are lost.
262
+
263
+ To preserve those partial parts, rewind to a step boundary on the server before returning the readable. `start-step` / `finish-step` chunks are the natural seams: no UI part is ever open across them. Sketch:
264
+
265
+ {/*@skip-typecheck: incomplete code sample*/}
266
+
267
+ ```typescript title="app/api/chat/[id]/stream/route.ts"
268
+ const run = getRun(id);
269
+ const tailIndex = await run.getReadable().getTailIndex();
270
+
271
+ let resolved = startIndex < 0
272
+ ? Math.max(0, tailIndex + 1 + startIndex)
273
+ : startIndex;
274
+
275
+ if (startIndex !== 0) {
276
+ // Walk back from `resolved` to the most recent start-step (or chunk 0),
277
+ // capping the lookback so a single huge step can't trigger an unbounded scan.
278
+ const LOOKBACK = 200;
279
+ const probe = run.getReadable({ startIndex: Math.max(0, resolved - LOOKBACK) });
280
+ let i = Math.max(0, resolved - LOOKBACK);
281
+ let lastBoundary = i;
282
+ for await (const chunk of probe as unknown as AsyncIterable<{ type: string }>) {
283
+ if (i >= resolved) break;
284
+ if (chunk.type === "start-step") lastBoundary = i;
285
+ i++;
286
+ }
287
+ resolved = lastBoundary;
288
+ }
289
+
290
+ return createUIMessageStreamResponse({
291
+ stream: run.getReadable({ startIndex: resolved }),
292
+ headers: { "x-workflow-stream-tail-index": String(tailIndex) },
293
+ });
294
+ ```
295
+
296
+ ## See also
254
297
 
255
- - [DurableAgent](/docs/api-reference/workflow-ai/durable-agent) - Building durable AI agents within workflows
256
- - [AI SDK `useChat` Documentation](https://ai-sdk.dev/docs/reference/ai-sdk-ui/use-chat) - Using `useChat` with custom transports
257
- - [Workflows and Steps](/docs/foundations/workflows-and-steps) - Understanding workflow fundamentals
258
- - ["flight-booking-app" Example](https://github.com/vercel/workflow-examples/tree/main/flight-booking-app) - An example application which uses `WorkflowChatTransport`
298
+ - [`WorkflowAgent`](https://ai-sdk.dev/v7/docs/agents/workflow-agent#workflowagent): Build durable, resumable AI agents (replaces `DurableAgent`)
299
+ - [AI SDK `useChat` documentation](https://ai-sdk.dev/docs/reference/ai-sdk-ui/use-chat): Use `useChat` with custom transports
300
+ - [Workflows and Steps](/docs/foundations/workflows-and-steps): Understand workflow fundamentals
301
+ - [`flight-booking-app` example](https://github.com/vercel/workflow-examples/tree/main/flight-booking-app): View an example application that uses `WorkflowChatTransport`
@@ -5,14 +5,26 @@ type: reference
5
5
  summary: Use getHookByToken to look up a hook's metadata and associated workflow run before resuming it.
6
6
  prerequisites:
7
7
  - /docs/foundations/hooks
8
+ related:
9
+ - /docs/foundations/idempotency
8
10
  ---
9
11
 
10
12
  Retrieves a hook by its unique token, returning the associated workflow run information and any metadata that was set when the hook was created. This function is useful for inspecting hook details before deciding whether to resume a workflow.
11
13
 
14
+ When `experimental_minRetention` is set, this function continues to return the Hook after its workflow ends until retention ends. That Hook cannot be resumed. Use `getRun(hook.runId)` to inspect the finished run.
15
+
12
16
  <Callout type="warn">
13
17
  `getHookByToken` is a runtime function that must be called from outside a workflow function.
14
18
  </Callout>
15
19
 
20
+ <Callout type="info">
21
+ `hook.metadata` is a getter that returns a Promise, so `await` it to read the value. Hydrating metadata can add extra network round trips, so that work is deferred to first access and the lookup itself stays a single read. Awaiting it on a hook with no metadata resolves `undefined` and performs no extra work, and repeat reads are free.
22
+ </Callout>
23
+
24
+ <Callout type="info">
25
+ Looking up a deterministic hook token is useful in hook-based idempotency flows, but it is only an advisory check. If no hook exists yet, another request can still start the same workflow before your `start()` call registers its hook. Use the lookup to avoid obvious duplicate starts, and handle the race inside the workflow by checking `await hook.getConflict()` before duplicate-sensitive work. On a conflict it resolves with the run that owns the token, so the duplicate can route the caller to the active owner. If duplicates must be rejected before a workflow body runs, keep a durable request record until native atomic start-and-hook registration exists. See [Run idempotency](/docs/foundations/idempotency#run-idempotency).
26
+ </Callout>
27
+
16
28
  ```typescript lineNumbers
17
29
  import { getHookByToken } from "workflow/api";
18
30
 
@@ -23,7 +35,7 @@ export async function POST(request: Request) {
23
35
  }
24
36
  ```
25
37
 
26
- ## API Signature
38
+ ## API signature
27
39
 
28
40
  ### Parameters
29
41
 
@@ -40,14 +52,14 @@ Returns a `Promise<Hook>` that resolves to:
40
52
 
41
53
  <TSDoc
42
54
  definition={`
43
- import type { Hook } from "@workflow/world";
55
+ import type { Hook } from "workflow/api";
44
56
  export default Hook;`}
45
57
  showSections={["returns"]}
46
58
  />
47
59
 
48
60
  ## Examples
49
61
 
50
- ### Basic Hook Lookup
62
+ ### Basic hook lookup
51
63
 
52
64
  Retrieve hook information before resuming:
53
65
 
@@ -62,7 +74,7 @@ export async function POST(request: Request) {
62
74
  const hook = await getHookByToken(token); // [!code highlight]
63
75
 
64
76
  console.log("Resuming workflow run:", hook.runId);
65
- console.log("Hook metadata:", hook.metadata);
77
+ console.log("Hook metadata:", await hook.metadata); // [!code highlight]
66
78
 
67
79
  // Then resume the hook with the payload
68
80
  await resumeHook(token, data);
@@ -77,7 +89,7 @@ export async function POST(request: Request) {
77
89
  }
78
90
  ```
79
91
 
80
- ### Validating Hook Before Resume
92
+ ### Validating hook before resume
81
93
 
82
94
  Use `getHookByToken` to validate hook ownership or metadata before resuming:
83
95
 
@@ -89,7 +101,8 @@ export async function POST(request: Request) {
89
101
 
90
102
  try {
91
103
  const hook = await getHookByToken(token); // [!code highlight]
92
- const metadata = hook.metadata as { allowedUserId?: string } | undefined;
104
+ // `metadata` is a Promise, so awaiting it hydrates the stored value.
105
+ const metadata = (await hook.metadata) as { allowedUserId?: string } | undefined; // [!code highlight]
93
106
 
94
107
  // Validate that the hook metadata matches the user
95
108
  if (metadata?.allowedUserId !== userId) {
@@ -107,7 +120,7 @@ export async function POST(request: Request) {
107
120
  }
108
121
  ```
109
122
 
110
- ### Checking Hook Environment
123
+ ### Checking hook environment
111
124
 
112
125
  Verify the hook belongs to the expected environment:
113
126
 
@@ -136,7 +149,7 @@ export async function POST(request: Request) {
136
149
  }
137
150
  ```
138
151
 
139
- ### Logging Hook Information
152
+ ### Logging hook information
140
153
 
141
154
  Log hook details for debugging or auditing:
142
155
 
@@ -173,8 +186,9 @@ export async function POST(request: Request) {
173
186
  }
174
187
  ```
175
188
 
176
- ## Related Functions
189
+ ## Related functions
177
190
 
178
- - [`resumeHook()`](/docs/api-reference/workflow-api/resume-hook) - Resume a hook with a payload.
179
- - [`createHook()`](/docs/api-reference/workflow/create-hook) - Create a hook in a workflow.
180
- - [`defineHook()`](/docs/api-reference/workflow/define-hook) - Type-safe hook helper.
191
+ - [`resumeHook()`](/docs/api-reference/workflow-api/resume-hook): Resume a hook with a payload.
192
+ - [`createHook()`](/docs/api-reference/workflow/create-hook): Create a hook in a workflow.
193
+ - [`defineHook()`](/docs/api-reference/workflow/define-hook): Type-safe hook helper.
194
+ - [Idempotency](/docs/foundations/idempotency): Deduplicate step side effects and workflow starts.
@@ -5,19 +5,25 @@ type: reference
5
5
  summary: Use getRun to check a workflow run's status and metadata without blocking on completion.
6
6
  prerequisites:
7
7
  - /docs/foundations/starting-workflows
8
+ related:
9
+ - /docs/foundations/idempotency
8
10
  ---
9
11
 
10
- Retrieves the workflow run metadata and status information for a given run ID. This function provides immediate access to workflow run details without waiting for completion, making it ideal for status checking and monitoring.
12
+ Retrieves workflow run metadata and status information for a given run ID. This function provides immediate access to workflow run details without waiting for completion.
11
13
 
12
14
  Use this function when you need to check workflow status, get timing information, or access workflow metadata without blocking on workflow completion.
13
15
 
16
+ <Callout type="info">
17
+ `getRun()` retrieves a run when you already have its `runId`. It does not look up runs by a business key. For retried requests that should route to one active workflow, use a deterministic hook token and [`getHookByToken()`](/docs/api-reference/workflow-api/get-hook-by-token). After a hook conflict, `HookConflictError.conflictingRunId` can be passed to `getRun()` to inspect, stream, or return the active owner. See [Run idempotency](/docs/foundations/idempotency#run-idempotency).
18
+ </Callout>
19
+
14
20
  ```typescript lineNumbers
15
21
  import { getRun } from "workflow/api";
16
22
 
17
23
  const run = getRun("my-run-id");
18
24
  ```
19
25
 
20
- ## API Signature
26
+ ## API signature
21
27
 
22
28
  ### Parameters
23
29
 
@@ -41,7 +47,7 @@ showSections={["returns"]}
41
47
 
42
48
  #### WorkflowReadableStream
43
49
 
44
- `run.getReadable()` returns a `WorkflowReadableStream` a standard `ReadableStream` extended with a `getTailIndex()` helper:
50
+ `run.getReadable()` returns a `WorkflowReadableStream`, a standard `ReadableStream` extended with a `getTailIndex()` helper:
45
51
 
46
52
  <TSDoc
47
53
  definition={`
@@ -59,6 +65,16 @@ import type { WorkflowReadableStreamOptions } from "workflow/api";
59
65
  export default WorkflowReadableStreamOptions;`}
60
66
  />
61
67
 
68
+ #### WorkflowRunWritableStreamOptions
69
+
70
+ <TSDoc
71
+ definition={`
72
+ import type { WorkflowRunWritableStreamOptions } from "workflow/api";
73
+ export default WorkflowRunWritableStreamOptions;`}
74
+ />
75
+
76
+ Use `run.writable` for the default stream or `run.getWritable(options)` to configure it. See [Writing to another run's stream](/docs/foundations/streaming#writing-to-another-runs-stream) for lifecycle details.
77
+
62
78
  #### StopSleepOptions
63
79
 
64
80
  <TSDoc
@@ -77,7 +93,7 @@ export default StopSleepResult;`}
77
93
 
78
94
  ## Examples
79
95
 
80
- ### Check if a Run Exists
96
+ ### Check if a run exists
81
97
 
82
98
  Use the `exists` getter to check whether a workflow run exists without throwing when the run is not found:
83
99
 
@@ -106,7 +122,7 @@ export async function GET(req: Request) {
106
122
  }
107
123
  ```
108
124
 
109
- ### Basic Status Check
125
+ ### Basic status check
110
126
 
111
127
  Check the current status of a workflow run:
112
128
 
@@ -135,7 +151,7 @@ export async function GET(req: Request) {
135
151
  }
136
152
  ```
137
153
 
138
- ### Wake Up a Sleeping Workflow
154
+ ### Wake up a sleeping workflow
139
155
 
140
156
  Interrupt pending `sleep()` calls to resume a workflow early. This is useful for testing workflows or building custom UIs that let users skip wait periods:
141
157
 
@@ -164,6 +180,25 @@ const { stoppedCount } = await run.wakeUp({
164
180
  });
165
181
  ```
166
182
 
167
- ## Related Functions
183
+ ### Cancel a run
184
+
185
+ Cancel a workflow run. You can pass an optional free-text `cancelReason` (up to 512 characters) that is recorded on the run's cancellation event and shown in the run detail view:
186
+
187
+ ```typescript lineNumbers
188
+ import { getRun } from "workflow/api";
189
+
190
+ export async function POST(req: Request) {
191
+ const { runId } = await req.json();
192
+ const run = getRun(runId);
193
+
194
+ await run.cancel({ cancelReason: "Superseded by a newer submission" }); // [!code highlight]
195
+
196
+ return Response.json({ cancelled: true });
197
+ }
198
+ ```
199
+
200
+ The options object is optional: `await run.cancel()` cancels the run without recording a reason.
201
+
202
+ ## Related functions
168
203
 
169
- - [`start()`](/docs/api-reference/workflow-api/start) - Start a new workflow and get its run ID.
204
+ - [`start()`](/docs/api-reference/workflow-api/start): Start a new workflow and get its run ID.