workflow 4.1.0-beta.55 → 4.1.0-beta.57

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 (75) hide show
  1. package/docs/ai/chat-session-modeling.mdx +11 -0
  2. package/docs/ai/defining-tools.mdx +9 -0
  3. package/docs/ai/human-in-the-loop.mdx +10 -0
  4. package/docs/ai/index.mdx +10 -0
  5. package/docs/ai/message-queueing.mdx +8 -0
  6. package/docs/ai/resumable-streams.mdx +9 -0
  7. package/docs/ai/sleep-and-delays.mdx +9 -0
  8. package/docs/ai/streaming-updates-from-tools.mdx +9 -0
  9. package/docs/api-reference/index.mdx +2 -0
  10. package/docs/api-reference/workflow/create-hook.mdx +7 -0
  11. package/docs/api-reference/workflow/create-webhook.mdx +6 -0
  12. package/docs/api-reference/workflow/define-hook.mdx +6 -0
  13. package/docs/api-reference/workflow/fatal-error.mdx +6 -0
  14. package/docs/api-reference/workflow/fetch.mdx +6 -0
  15. package/docs/api-reference/workflow/get-step-metadata.mdx +4 -0
  16. package/docs/api-reference/workflow/get-workflow-metadata.mdx +4 -0
  17. package/docs/api-reference/workflow/get-writable.mdx +4 -0
  18. package/docs/api-reference/workflow/index.mdx +7 -0
  19. package/docs/api-reference/workflow/retryable-error.mdx +6 -0
  20. package/docs/api-reference/workflow/sleep.mdx +6 -0
  21. package/docs/api-reference/workflow-ai/durable-agent.mdx +6 -0
  22. package/docs/api-reference/workflow-ai/index.mdx +4 -0
  23. package/docs/api-reference/workflow-ai/workflow-chat-transport.mdx +6 -0
  24. package/docs/api-reference/workflow-api/get-hook-by-token.mdx +4 -0
  25. package/docs/api-reference/workflow-api/get-run.mdx +4 -0
  26. package/docs/api-reference/workflow-api/get-world.mdx +4 -0
  27. package/docs/api-reference/workflow-api/index.mdx +2 -0
  28. package/docs/api-reference/workflow-api/resume-hook.mdx +6 -0
  29. package/docs/api-reference/workflow-api/resume-webhook.mdx +6 -0
  30. package/docs/api-reference/workflow-api/start.mdx +4 -0
  31. package/docs/api-reference/workflow-next/index.mdx +4 -0
  32. package/docs/api-reference/workflow-next/with-workflow.mdx +4 -0
  33. package/docs/deploying/building-a-world.mdx +9 -0
  34. package/docs/deploying/index.mdx +7 -0
  35. package/docs/deploying/world/local-world.mdx +7 -0
  36. package/docs/deploying/world/postgres-world.mdx +7 -0
  37. package/docs/deploying/world/vercel-world.mdx +7 -0
  38. package/docs/errors/fetch-in-workflow.mdx +6 -0
  39. package/docs/errors/hook-conflict.mdx +7 -0
  40. package/docs/errors/index.mdx +4 -0
  41. package/docs/errors/node-js-module-in-workflow.mdx +6 -0
  42. package/docs/errors/serialization-failed.mdx +6 -0
  43. package/docs/errors/start-invalid-workflow-function.mdx +6 -0
  44. package/docs/errors/timeout-in-workflow.mdx +6 -0
  45. package/docs/errors/webhook-invalid-respond-with-value.mdx +6 -0
  46. package/docs/errors/webhook-response-not-sent.mdx +6 -0
  47. package/docs/foundations/common-patterns.mdx +7 -0
  48. package/docs/foundations/errors-and-retries.mdx +7 -0
  49. package/docs/foundations/hooks.mdx +8 -0
  50. package/docs/foundations/idempotency.mdx +6 -0
  51. package/docs/foundations/index.mdx +5 -0
  52. package/docs/foundations/serialization.mdx +6 -0
  53. package/docs/foundations/starting-workflows.mdx +6 -0
  54. package/docs/foundations/streaming.mdx +7 -0
  55. package/docs/foundations/workflows-and-steps.mdx +7 -0
  56. package/docs/getting-started/astro.mdx +6 -0
  57. package/docs/getting-started/express.mdx +6 -0
  58. package/docs/getting-started/fastify.mdx +6 -0
  59. package/docs/getting-started/hono.mdx +6 -0
  60. package/docs/getting-started/index.mdx +5 -0
  61. package/docs/getting-started/nestjs.mdx +6 -0
  62. package/docs/getting-started/next.mdx +7 -0
  63. package/docs/getting-started/nitro.mdx +6 -0
  64. package/docs/getting-started/nuxt.mdx +6 -0
  65. package/docs/getting-started/sveltekit.mdx +6 -0
  66. package/docs/getting-started/vite.mdx +6 -0
  67. package/docs/how-it-works/code-transform.mdx +6 -0
  68. package/docs/how-it-works/event-sourcing.mdx +6 -0
  69. package/docs/how-it-works/framework-integrations.mdx +6 -0
  70. package/docs/how-it-works/understanding-directives.mdx +6 -0
  71. package/docs/observability/index.mdx +6 -0
  72. package/package.json +10 -10
  73. package/dist/internal/observability.d.ts +0 -6
  74. package/dist/internal/observability.d.ts.map +0 -1
  75. package/dist/internal/observability.js +0 -6
@@ -1,6 +1,17 @@
1
1
  ---
2
2
  title: Chat Session Modeling
3
3
  description: Model chat sessions at different architectural layers to control state ownership and handle interruptions.
4
+ type: guide
5
+ summary: Choose between single-turn and multi-turn workflow patterns for managing chat session state.
6
+ prerequisites:
7
+ - /docs/ai
8
+ - /docs/foundations/workflows-and-steps
9
+ related:
10
+ - /docs/ai/message-queueing
11
+ - /docs/ai/resumable-streams
12
+ - /docs/foundations/hooks
13
+ - /docs/api-reference/workflow-ai/durable-agent
14
+ - /docs/api-reference/workflow/define-hook
4
15
  ---
5
16
 
6
17
  Chat sessions in AI agents can be modeled at different layers of your architecture. The choice affects state ownership and how you handle interruptions and reconnections.
@@ -1,6 +1,15 @@
1
1
  ---
2
2
  title: Patterns for Defining Tools
3
3
  description: Common patterns for defining tools in durable AI agents using Workflow DevKit.
4
+ type: guide
5
+ summary: Define step-level and workflow-level tools for durable AI agents with stream writing and context access.
6
+ prerequisites:
7
+ - /docs/ai
8
+ related:
9
+ - /docs/ai/streaming-updates-from-tools
10
+ - /docs/ai/sleep-and-delays
11
+ - /docs/foundations/workflows-and-steps
12
+ - /docs/api-reference/workflow/get-writable
4
13
  ---
5
14
 
6
15
  This page covers the details for some common patterns when defining tools for AI agents using Workflow DevKit.
@@ -1,6 +1,16 @@
1
1
  ---
2
2
  title: Human-in-the-Loop
3
3
  description: Wait for human input or external events before proceeding in your AI agent workflows.
4
+ type: guide
5
+ summary: Pause agent workflows for human approval using hooks and webhooks, then resume on input.
6
+ prerequisites:
7
+ - /docs/ai
8
+ - /docs/foundations/hooks
9
+ related:
10
+ - /docs/ai/chat-session-modeling
11
+ - /docs/api-reference/workflow/create-webhook
12
+ - /docs/api-reference/workflow/define-hook
13
+ - /docs/foundations/workflows-and-steps
4
14
  ---
5
15
 
6
16
  A common pre-requisite for running AI agents in production is the ability to wait for human input or external events before proceeding.
package/docs/ai/index.mdx CHANGED
@@ -1,6 +1,16 @@
1
1
  ---
2
2
  title: Building Durable AI Agents
3
3
  description: Build AI agents that survive crashes, scale across requests, and maintain state with durable LLM tool-call loops.
4
+ type: overview
5
+ summary: Convert a basic AI chat app into a durable, resumable agent using Workflow DevKit.
6
+ related:
7
+ - /docs/foundations/workflows-and-steps
8
+ - /docs/foundations/streaming
9
+ - /docs/foundations/errors-and-retries
10
+ - /docs/ai/defining-tools
11
+ - /docs/ai/resumable-streams
12
+ - /docs/ai/human-in-the-loop
13
+ - /docs/getting-started/next
4
14
  ---
5
15
 
6
16
  AI agents are built on the primitive of LLM and tool-call loops, often with additional processes for data fetching, resource provisioning, or reacting to external events.
@@ -1,6 +1,14 @@
1
1
  ---
2
2
  title: Queueing User Messages
3
3
  description: Inject messages during an agent's turn, before tool calls complete or while the model is reasoning.
4
+ type: guide
5
+ summary: Inject user messages mid-turn using the `prepareStep` callback to influence the agent's next step.
6
+ prerequisites:
7
+ - /docs/ai
8
+ related:
9
+ - /docs/ai/chat-session-modeling
10
+ - /docs/api-reference/workflow-ai/durable-agent
11
+ - /docs/api-reference/workflow/define-hook
4
12
  ---
5
13
 
6
14
  When using [multi-turn workflows](/docs/ai/chat-session-modeling#multi-turn-workflows), messages typically arrive between agent turns. The workflow waits at a hook, receives a message, then starts a new turn. But sometimes you need to inject messages *during* an agent's turn, before tool calls complete or while the model is reasoning.
@@ -1,6 +1,15 @@
1
1
  ---
2
2
  title: Resumable Streams
3
3
  description: Handle network interruptions, page refreshes, and timeouts without losing agent progress.
4
+ type: guide
5
+ summary: Reconnect to interrupted agent streams using `WorkflowChatTransport` without losing progress.
6
+ prerequisites:
7
+ - /docs/ai
8
+ - /docs/foundations/streaming
9
+ related:
10
+ - /docs/ai/chat-session-modeling
11
+ - /docs/api-reference/workflow-ai/workflow-chat-transport
12
+ - /docs/api-reference/workflow-api/get-run
4
13
  ---
5
14
 
6
15
  When building chat interfaces, it's common to run into network interruptions, page refreshes, or serverless function timeouts, which can break the connection to an in-progress agent.
@@ -1,6 +1,15 @@
1
1
  ---
2
2
  title: Sleep, Suspense, and Scheduling
3
3
  description: Schedule recurring actions, handle rate limiting, and wait for external state in AI agents.
4
+ type: guide
5
+ summary: Pause agent execution with `sleep()` for scheduling, rate limiting, and waiting on external state.
6
+ prerequisites:
7
+ - /docs/ai
8
+ related:
9
+ - /docs/ai/defining-tools
10
+ - /docs/ai/streaming-updates-from-tools
11
+ - /docs/foundations/errors-and-retries
12
+ - /docs/api-reference/workflow/sleep
4
13
  ---
5
14
 
6
15
  AI agents sometimes need to pause execution in order to schedule recurring or future actions, wait before retrying an operation (e.g. for rate limiting), or wait for external state to be available.
@@ -1,6 +1,15 @@
1
1
  ---
2
2
  title: Streaming Updates from Tools
3
3
  description: Show progress updates and stream step output to users during long-running tool executions.
4
+ type: guide
5
+ summary: Write custom data parts from step functions to show progress updates during long-running tool calls.
6
+ prerequisites:
7
+ - /docs/ai
8
+ - /docs/foundations/streaming
9
+ related:
10
+ - /docs/ai/defining-tools
11
+ - /docs/ai/resumable-streams
12
+ - /docs/api-reference/workflow/get-writable
4
13
  ---
5
14
 
6
15
  After [building a durable AI agent](/docs/ai), we already get UI message chunks for displaying tool invocations and return values. However, for long-running steps, we may want to show progress updates, or stream step output to the user while it's being generated.
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  title: API Reference
3
3
  description: Complete reference for all Workflow DevKit functions and primitives by package.
4
+ type: overview
5
+ summary: Browse all available functions and primitives organized by package.
4
6
  ---
5
7
 
6
8
  All the functions and primitives that come with Workflow DevKit by package.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: createHook
3
3
  description: Create a low-level hook to resume workflows with arbitrary payloads.
4
+ type: reference
5
+ summary: Use createHook to pause a workflow and resume it with an arbitrary payload from an external system.
6
+ prerequisites:
7
+ - /docs/foundations/hooks
8
+ related:
9
+ - /docs/api-reference/workflow/define-hook
10
+ - /docs/api-reference/workflow/create-webhook
4
11
  ---
5
12
 
6
13
  Creates a low-level hook primitive that can be used to resume a workflow run with arbitrary payloads.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: createWebhook
3
3
  description: Create webhooks to suspend and resume workflows via HTTP requests.
4
+ type: reference
5
+ summary: Use createWebhook to suspend a workflow until an HTTP request is received at a generated URL.
6
+ prerequisites:
7
+ - /docs/foundations/hooks
8
+ related:
9
+ - /docs/api-reference/workflow/create-hook
4
10
  ---
5
11
 
6
12
  Creates a webhook that can be used to suspend and resume a workflow run upon receiving an HTTP request.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: defineHook
3
3
  description: Create type-safe hooks with consistent payload types and optional validation.
4
+ type: reference
5
+ summary: Use defineHook to create a reusable, type-safe hook definition with optional schema validation.
6
+ prerequisites:
7
+ - /docs/foundations/hooks
8
+ related:
9
+ - /docs/api-reference/workflow/create-hook
4
10
  ---
5
11
 
6
12
  Creates a type-safe hook helper that ensures the payload type is consistent between hook creation and resumption.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: FatalError
3
3
  description: Throw to mark a step as permanently failed without retrying.
4
+ type: reference
5
+ summary: Throw FatalError in a step to mark it as permanently failed and prevent retries.
6
+ prerequisites:
7
+ - /docs/foundations/errors-and-retries
8
+ related:
9
+ - /docs/api-reference/workflow/retryable-error
4
10
  ---
5
11
 
6
12
  When a `FatalError` is thrown in a step, it indicates that the workflow should not retry a step, marking it as failure.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: fetch
3
3
  description: Make HTTP requests from workflows with automatic serialization and retry semantics.
4
+ type: reference
5
+ summary: Use the workflow-aware fetch to make HTTP requests with automatic serialization and retry semantics.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/errors/fetch-in-workflow
4
10
  ---
5
11
 
6
12
  Makes HTTP requests from within a workflow. This is a special step function that wraps the standard `fetch` API, automatically handling serialization and providing retry semantics.
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: getStepMetadata
3
3
  description: Access retry attempts and timing information within step functions.
4
+ type: reference
5
+ summary: Call getStepMetadata inside a step to access retry counts, timing, and idempotency keys.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
4
8
  ---
5
9
 
6
10
  Returns metadata available in the current step function.
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: getWorkflowMetadata
3
3
  description: Access run IDs and timing information within workflow functions.
4
+ type: reference
5
+ summary: Call getWorkflowMetadata inside a workflow to access the run ID and timing information.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
4
8
  ---
5
9
 
6
10
  Returns additional metadata available in the current workflow function.
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: getWritable
3
3
  description: Retrieves the current workflow run's default writable stream.
4
+ type: reference
5
+ summary: Use getWritable to access the workflow run's output stream for real-time data streaming.
6
+ prerequisites:
7
+ - /docs/foundations/streaming
4
8
  ---
5
9
 
6
10
  The writable stream can be obtained in workflow functions and passed to steps, or called directly within step functions to write data that can be read outside the workflow by using the `readable` property of the [`Run` object](/docs/api-reference/workflow-api/get-run).
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: "workflow"
3
3
  description: Core workflow primitives for steps, streaming, webhooks, and error handling.
4
+ type: overview
5
+ summary: Explore the core workflow package for steps, streaming, hooks, and error handling.
6
+ related:
7
+ - /docs/foundations/workflows-and-steps
8
+ - /docs/foundations/hooks
9
+ - /docs/foundations/streaming
10
+ - /docs/foundations/errors-and-retries
4
11
  ---
5
12
 
6
13
  Core workflow primitives including steps, context management, streaming, webhooks, and error handling.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: RetryableError
3
3
  description: Throw to retry a step, optionally after a specified duration.
4
+ type: reference
5
+ summary: Throw RetryableError in a step to trigger a retry with an optional delay.
6
+ prerequisites:
7
+ - /docs/foundations/errors-and-retries
8
+ related:
9
+ - /docs/api-reference/workflow/fatal-error
4
10
  ---
5
11
 
6
12
  When a `RetryableError` is thrown in a step, it indicates that the workflow should retry a step. Additionally, it contains a parameter `retryAfter` indicating when the step should be retried after.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: sleep
3
3
  description: Suspend a workflow for a duration or until a date without consuming resources.
4
+ type: reference
5
+ summary: Use sleep to suspend a workflow for a duration or until a specific date without consuming resources.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/ai/sleep-and-delays
4
10
  ---
5
11
 
6
12
  Suspends a workflow for a specified duration or until an end date without consuming any resources. Once the duration or end date passes, the workflow will resume execution.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: DurableAgent
3
3
  description: Create AI agents that maintain state, call tools, and handle interruptions gracefully.
4
+ type: reference
5
+ summary: Use DurableAgent to build AI agents that maintain state across steps and survive interruptions.
6
+ prerequisites:
7
+ - /docs/ai
8
+ related:
9
+ - /docs/ai/defining-tools
4
10
  ---
5
11
 
6
12
  <Callout type="warn">
@@ -2,6 +2,10 @@
2
2
  title: "@workflow/ai"
3
3
  icon: FlaskConical
4
4
  description: Helpers for building AI-powered workflows with the AI SDK.
5
+ type: overview
6
+ summary: Explore helpers for integrating AI SDK to build durable AI-powered workflows.
7
+ related:
8
+ - /docs/ai
5
9
  ---
6
10
 
7
11
  <Callout type="warn">
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: WorkflowChatTransport
3
3
  description: Chat transport with automatic reconnection and recovery from interrupted streams.
4
+ type: reference
5
+ summary: Use WorkflowChatTransport as a drop-in AI SDK transport for automatic stream reconnection.
6
+ prerequisites:
7
+ - /docs/ai
8
+ related:
9
+ - /docs/ai/resumable-streams
4
10
  ---
5
11
 
6
12
  <Callout type="warn">
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: getHookByToken
3
3
  description: Retrieve hook details and workflow run information by token.
4
+ type: reference
5
+ summary: Use getHookByToken to look up a hook's metadata and associated workflow run before resuming it.
6
+ prerequisites:
7
+ - /docs/foundations/hooks
4
8
  ---
5
9
 
6
10
  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.
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: getRun
3
3
  description: Retrieve workflow run metadata and status without waiting for completion.
4
+ type: reference
5
+ summary: Use getRun to check a workflow run's status and metadata without blocking on completion.
6
+ prerequisites:
7
+ - /docs/foundations/starting-workflows
4
8
  ---
5
9
 
6
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.
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: getWorld
3
3
  description: Access the World instance for low-level storage, queuing, and streaming operations.
4
+ type: reference
5
+ summary: Use getWorld to access low-level workflow storage, queuing, and streaming backends directly.
6
+ prerequisites:
7
+ - /docs/deploying
4
8
  ---
5
9
 
6
10
  Retrieves the World instance for direct access to workflow storage, queuing, and streaming backends. This function returns a `World` which provides low-level access to manage workflow runs, steps, events, and hooks.
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  title: "workflow/api"
3
3
  description: Runtime functions to inspect runs, start workflows, and access world data.
4
+ type: overview
5
+ summary: Explore runtime functions for starting workflows, inspecting runs, and managing hooks.
4
6
  ---
5
7
 
6
8
  API reference for runtime functions from the `workflow/api` package.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: resumeHook
3
3
  description: Resume a paused workflow by sending a payload to a hook token.
4
+ type: reference
5
+ summary: Use resumeHook to send a payload to a hook token and resume a paused workflow.
6
+ prerequisites:
7
+ - /docs/foundations/hooks
8
+ related:
9
+ - /docs/api-reference/workflow-api/resume-webhook
4
10
  ---
5
11
 
6
12
  Resumes a workflow run by sending a payload to a hook identified by its token.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: resumeWebhook
3
3
  description: Resume a paused workflow by sending an HTTP request to a webhook token.
4
+ type: reference
5
+ summary: Use resumeWebhook to forward an HTTP request to a webhook token and resume a paused workflow.
6
+ prerequisites:
7
+ - /docs/foundations/hooks
8
+ related:
9
+ - /docs/api-reference/workflow-api/resume-hook
4
10
  ---
5
11
 
6
12
  Resumes a workflow run by sending an HTTP `Request` to a webhook identified by its token.
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: start
3
3
  description: Start and enqueue a new workflow run.
4
+ type: reference
5
+ summary: Use start to programmatically enqueue a new workflow run from outside a workflow function.
6
+ prerequisites:
7
+ - /docs/foundations/starting-workflows
4
8
  ---
5
9
 
6
10
  Start/enqueue a new workflow run.
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: "workflow/next"
3
3
  description: Next.js integration for automatic bundling and runtime configuration.
4
+ type: overview
5
+ summary: Explore the Next.js integration for automatic workflow bundling and runtime support.
6
+ related:
7
+ - /docs/getting-started/next
4
8
  ---
5
9
 
6
10
  Next.js integration for Workflow DevKit that automatically configures bundling and runtime support.
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: withWorkflow
3
3
  description: Configure webpack/turbopack to transform workflow directives in Next.js.
4
+ type: reference
5
+ summary: Wrap your Next.js config with withWorkflow to enable workflow directive transformation.
6
+ prerequisites:
7
+ - /docs/getting-started/next
4
8
  ---
5
9
 
6
10
  Configures webpack/turbopack loaders to transform workflow code (`"use step"`/`"use workflow"` directives)
@@ -1,6 +1,15 @@
1
1
  ---
2
2
  title: Building a World
3
3
  description: Implement the World interface to run workflows on any custom infrastructure.
4
+ type: guide
5
+ summary: Build a custom World adapter to run workflows on your own infrastructure.
6
+ prerequisites:
7
+ - /docs/deploying
8
+ - /docs/foundations/workflows-and-steps
9
+ related:
10
+ - /docs/deploying/world/local-world
11
+ - /docs/deploying/world/postgres-world
12
+ - /docs/deploying/world/vercel-world
4
13
  ---
5
14
 
6
15
  A **World** is the abstraction that allows workflows to run on any infrastructure. It handles workflow storage, step execution queuing, and data streaming. This guide explains the World interface and how to implement your own.
@@ -2,6 +2,13 @@
2
2
  title: Deploying
3
3
  icon: Rocket
4
4
  description: Deploy workflows locally, on Vercel, or anywhere using pluggable World adapters.
5
+ type: overview
6
+ summary: Learn how to deploy workflows to different environments using World adapters.
7
+ related:
8
+ - /docs/deploying/world/local-world
9
+ - /docs/deploying/world/postgres-world
10
+ - /docs/deploying/world/vercel-world
11
+ - /docs/deploying/building-a-world
5
12
  ---
6
13
 
7
14
  Workflows are designed to be highly portable. The same workflow code can run locally during development, on Vercel with zero configuration, or on any infrastructure using **Worlds** — pluggable adapters that handle storage, queuing, and communication.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: Local World
3
3
  description: Zero-config world bundled with Workflow for local development. No external services required.
4
+ type: integration
5
+ summary: Set up the Local World for zero-config workflow development on your machine.
6
+ prerequisites:
7
+ - /docs/deploying
8
+ related:
9
+ - /docs/deploying/world/postgres-world
10
+ - /docs/deploying/world/vercel-world
4
11
  ---
5
12
 
6
13
  The Local World is bundled with `workflow` and used automatically during local development. No installation or configuration required.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: Postgres World
3
3
  description: Production-ready, self-hosted world using PostgreSQL for storage and pg-boss for job processing.
4
+ type: integration
5
+ summary: Deploy workflows to your own infrastructure using PostgreSQL and pg-boss.
6
+ prerequisites:
7
+ - /docs/deploying
8
+ related:
9
+ - /docs/deploying/world/local-world
10
+ - /docs/deploying/world/vercel-world
4
11
  ---
5
12
 
6
13
  The Postgres World is a production-ready backend for self-hosted deployments. It uses PostgreSQL for durable storage and [pg-boss](https://github.com/timgit/pg-boss) for reliable job processing.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: Vercel World
3
3
  description: Fully-managed world for Vercel deployments with automatic storage, queuing, and authentication.
4
+ type: integration
5
+ summary: Deploy workflows to Vercel with fully-managed storage, queuing, and authentication.
6
+ prerequisites:
7
+ - /docs/deploying
8
+ related:
9
+ - /docs/deploying/world/local-world
10
+ - /docs/deploying/world/postgres-world
4
11
  ---
5
12
 
6
13
  The Vercel World is a fully-managed workflow backend for applications deployed on Vercel. It provides scalable storage, distributed queuing, and automatic authentication with zero configuration.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: fetch-in-workflow
3
3
  description: Use the workflow fetch step function instead of global fetch in workflows.
4
+ type: troubleshooting
5
+ summary: Resolve the fetch-in-workflow error by using the workflow fetch function.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/api-reference/workflow/fetch
4
10
  ---
5
11
 
6
12
  This error occurs when you try to use `fetch()` directly in a workflow function, or when a library (like the AI SDK) tries to call `fetch()` under the hood.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: hook-conflict
3
3
  description: Hook tokens must be unique across all running workflows in your project.
4
+ type: troubleshooting
5
+ summary: Resolve hook token conflicts by using unique or auto-generated tokens.
6
+ prerequisites:
7
+ - /docs/foundations/hooks
8
+ related:
9
+ - /docs/api-reference/workflow/create-hook
10
+ - /docs/api-reference/workflow/define-hook
4
11
  ---
5
12
 
6
13
  This error occurs when you try to create a hook with a token that is already in use by another active workflow run. Hook tokens must be unique across all running workflows in your project.
@@ -1,6 +1,10 @@
1
1
  ---
2
2
  title: Errors
3
3
  description: Fix common mistakes when creating and executing workflows.
4
+ type: overview
5
+ summary: Browse and resolve common workflow errors.
6
+ related:
7
+ - /docs/foundations/errors-and-retries
4
8
  ---
5
9
 
6
10
  Fix common mistakes when creating and executing workflows in the **Workflow DevKit**.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: node-js-module-in-workflow
3
3
  description: Move Node.js core module usage to step functions instead of workflows.
4
+ type: troubleshooting
5
+ summary: Resolve the node-js-module-in-workflow error by moving Node.js modules to step functions.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/how-it-works/understanding-directives
4
10
  ---
5
11
 
6
12
  This error occurs when you try to import or use Node.js core modules (like `fs`, `http`, `crypto`, `path`, etc.) directly inside a workflow function.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: serialization-failed
3
3
  description: Ensure all data passed between workflow and step functions is serializable.
4
+ type: troubleshooting
5
+ summary: Resolve serialization errors by passing only serializable types across execution boundaries.
6
+ prerequisites:
7
+ - /docs/foundations/serialization
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  This error occurs when you try to pass non-serializable data between execution boundaries in your workflow. All data passed between workflow functions, step functions, and the workflow runtime must be serializable to persist in the event log.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: start-invalid-workflow-function
3
3
  description: Ensure you pass a valid workflow function to start() with proper configuration.
4
+ type: troubleshooting
5
+ summary: Resolve the start-invalid-workflow-function error by passing a properly configured workflow function.
6
+ prerequisites:
7
+ - /docs/foundations/starting-workflows
8
+ related:
9
+ - /docs/api-reference/workflow-api/start
4
10
  ---
5
11
 
6
12
  This error occurs when you try to call `start()` with a function that is not a valid workflow function or when the Workflow DevKit is not configured correctly.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: timeout-in-workflow
3
3
  description: Use the sleep function instead of setTimeout or setInterval in workflows.
4
+ type: troubleshooting
5
+ summary: Resolve the timeout-in-workflow error by replacing setTimeout with the sleep function.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/api-reference/workflow/sleep
4
10
  ---
5
11
 
6
12
  This error occurs when you try to use `setTimeout()`, `setInterval()`, or related timing functions directly inside a workflow function.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: webhook-invalid-respond-with-value
3
3
  description: The respondWith option must be "manual" or a Response object.
4
+ type: troubleshooting
5
+ summary: Resolve the webhook-invalid-respond-with-value error by using a valid respondWith option.
6
+ prerequisites:
7
+ - /docs/foundations/hooks
8
+ related:
9
+ - /docs/api-reference/workflow/create-webhook
4
10
  ---
5
11
 
6
12
  This error occurs when you provide an invalid value for the `respondWith` option when creating a webhook. The `respondWith` option must be either `"manual"` or a `Response` object.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: webhook-response-not-sent
3
3
  description: Manual webhooks must send a response before execution completes.
4
+ type: troubleshooting
5
+ summary: Resolve the webhook-response-not-sent error by ensuring all code paths call respondWith.
6
+ prerequisites:
7
+ - /docs/foundations/hooks
8
+ related:
9
+ - /docs/api-reference/workflow/create-webhook
4
10
  ---
5
11
 
6
12
  This error occurs when a webhook is configured with `respondWith: "manual"` but the workflow does not send a response using `request.respondWith()` before the webhook execution completes.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: Common Patterns
3
3
  description: Implement distributed patterns using familiar async/await syntax with no new APIs to learn.
4
+ type: guide
5
+ summary: Apply sequential, parallel, timeout, and composition patterns in workflows.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/foundations/errors-and-retries
10
+ - /docs/foundations/hooks
4
11
  ---
5
12
 
6
13
  Common distributed patterns are simple to implement in workflows and require learning no new syntax. You can just use familiar async/await patterns.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: Errors & Retrying
3
3
  description: Customize retry behavior with FatalError and RetryableError for robust error handling.
4
+ type: conceptual
5
+ summary: Control how steps handle failures and customize retry behavior.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/api-reference/workflow/fatal-error
10
+ - /docs/api-reference/workflow/retryable-error
4
11
  ---
5
12
 
6
13
  By default, errors thrown inside steps are retried. Additionally, Workflow DevKit provides two new types of errors you can use to customize retries.
@@ -1,6 +1,14 @@
1
1
  ---
2
2
  title: Hooks & Webhooks
3
3
  description: Pause workflows and resume them later with external data, user interactions, or HTTP requests.
4
+ type: conceptual
5
+ summary: Pause workflows and resume them with external data or HTTP requests.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/api-reference/workflow/create-hook
10
+ - /docs/api-reference/workflow/create-webhook
11
+ - /docs/ai/human-in-the-loop
4
12
  ---
5
13
 
6
14
  Hooks provide a powerful mechanism for pausing workflow execution and resuming it later with external data. They enable workflows to wait for external events, user interactions (also known as "human in the loop"), or HTTP requests. This guide will teach you the core concepts, starting with the low-level Hook primitive and building up to the higher-level Webhook abstraction.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Idempotency
3
3
  description: Ensure operations can be safely retried without producing duplicate side effects.
4
+ type: conceptual
5
+ summary: Prevent duplicate side effects when retrying operations in steps.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/foundations/errors-and-retries
4
10
  ---
5
11
 
6
12
  Idempotency is a property of an operation that ensures it can be safely retried without producing duplicate side effects.
@@ -1,6 +1,11 @@
1
1
  ---
2
2
  title: Foundations
3
3
  description: Learn the core concepts of workflow programming to build durable, long-running applications.
4
+ type: overview
5
+ summary: Explore the core concepts you need to use workflows effectively.
6
+ related:
7
+ - /docs/foundations/workflows-and-steps
8
+ - /docs/getting-started
4
9
  ---
5
10
 
6
11
  Workflow programming can be a slight shift from how you traditionally write real-world applications. Learning the foundations now will go a long way toward helping you use workflows effectively.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Serialization
3
3
  description: Understand how workflow data is serialized and persisted across suspensions and resumptions.
4
+ type: conceptual
5
+ summary: Learn which types can be passed between workflow and step functions.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/errors/serialization-failed
4
10
  ---
5
11
 
6
12
  All function arguments and return values passed between workflow and step functions must be serializable. Workflow DevKit uses a custom serialization system built on top of [devalue](https://github.com/sveltejs/devalue). This system supports standard JSON types, as well as a few additional popular Web API types.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Starting Workflows
3
3
  description: Trigger workflow execution with the start() function and track progress with Run objects.
4
+ type: guide
5
+ summary: Trigger workflows and track their execution using the start() function.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/api-reference/workflow-api/start
4
10
  ---
5
11
 
6
12
  Once you've defined your workflow functions, you need to trigger them to begin execution. This is done using the `start()` function from `workflow/api`, which enqueues a new workflow run and returns a `Run` object that you can use to track its progress.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: Streaming
3
3
  description: Stream data in real-time to clients for progress updates and incremental content delivery.
4
+ type: conceptual
5
+ summary: Stream real-time data to clients without waiting for workflow completion.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/api-reference/workflow/get-writable
10
+ - /docs/ai/resumable-streams
4
11
  ---
5
12
 
6
13
  Workflows can stream data in real-time to clients without waiting for the entire workflow to complete. This enables progress updates, AI-generated content, log messages, and other incremental data to be delivered as workflows execute.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: Workflows and Steps
3
3
  description: Build long-running, stateful application logic that persists progress and resumes after failures.
4
+ type: conceptual
5
+ summary: Understand the two function types that make up a workflow.
6
+ prerequisites:
7
+ - /docs/foundations
8
+ related:
9
+ - /docs/how-it-works/understanding-directives
10
+ - /docs/foundations/serialization
4
11
  ---
5
12
 
6
13
  import { File, Folder, Files } from "fumadocs-ui/components/files";
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Astro
3
3
  description: Set up your first durable workflow in an Astro application.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in an Astro app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  This guide will walk through setting up your first workflow in an Astro app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Express
3
3
  description: Set up your first durable workflow in an Express application.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in an Express app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  This guide will walk through setting up your first workflow in a Express app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Fastify
3
3
  description: Set up your first durable workflow in a Fastify application.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in a Fastify app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  This guide will walk through setting up your first workflow in a Fastify app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Hono
3
3
  description: This guide will walk through setting up your first workflow in a Hono app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in a Hono app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  <Steps>
@@ -1,6 +1,11 @@
1
1
  ---
2
2
  title: Getting Started
3
3
  description: Start by choosing your framework. Each guide will walk you through the steps to install the dependencies and start running your first workflow.
4
+ type: overview
5
+ summary: Choose a framework and start building your first workflow.
6
+ related:
7
+ - /docs/foundations
8
+ - /docs/foundations/workflows-and-steps
4
9
  ---
5
10
 
6
11
  import { Next, Nitro, SvelteKit, Nuxt, Hono, Bun, AstroDark, AstroLight, TanStack, Vite, Express, Nest, Fastify } from "@/app/[lang]/(home)/components/frameworks";
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: NestJS
3
3
  description: Set up your first durable workflow in a NestJS application.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in a NestJS app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  This guide will walk through setting up your first workflow in a NestJS app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  title: Next.js
3
3
  description: This guide will walk through setting up your first workflow in a Next.js app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in a Next.js app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/api-reference/workflow-next
10
+ - /docs/deploying/world/vercel-world
4
11
  ---
5
12
 
6
13
  <Steps>
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Nitro
3
3
  description: This guide will walk through setting up your first workflow in a Nitro v3 project. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in a Nitro app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  <Steps>
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Nuxt
3
3
  description: This guide will walk through setting up your first workflow in a Nuxt app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in a Nuxt app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  <Steps>
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: SvelteKit
3
3
  description: This guide will walk through setting up your first workflow in a SvelteKit app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in a SvelteKit app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  <Steps>
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Vite
3
3
  description: Set up your first durable workflow in a Vite application.
4
+ type: guide
5
+ summary: Set up Workflow DevKit in a Vite app.
6
+ prerequisites:
7
+ - /docs/getting-started
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  This guide will walk through setting up your first workflow in a Vite app. Along the way, you'll learn more about the concepts that are fundamental to using the development kit in your own projects.
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: How the Directives Work
3
3
  description: Deep dive into the internals of how Workflow DevKit directives transform your code.
4
+ type: conceptual
5
+ summary: Learn how the compiler transforms directive-annotated code into three execution modes.
6
+ prerequisites:
7
+ - /docs/how-it-works/understanding-directives
8
+ related:
9
+ - /docs/foundations/workflows-and-steps
4
10
  ---
5
11
 
6
12
  <Callout>
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Event Sourcing
3
3
  description: Learn how Workflow DevKit uses event sourcing internally for debugging and observability.
4
+ type: conceptual
5
+ summary: Understand the event log that powers workflow replay and debugging.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/observability
4
10
  ---
5
11
 
6
12
  <Callout>
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Framework Integrations
3
3
  description: Guide for framework authors to integrate Workflow DevKit with custom frameworks or runtimes.
4
+ type: guide
5
+ summary: Build a custom framework integration using the Workflow DevKit compiler and runtime.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/deploying/building-a-world
4
10
  ---
5
11
 
6
12
  <Callout>
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Understanding Directives
3
3
  description: Explore how JavaScript directives enable the Workflow DevKit's durable execution model.
4
+ type: conceptual
5
+ summary: Explore the design decisions behind "use workflow" and "use step" directives.
6
+ prerequisites:
7
+ - /docs/foundations/workflows-and-steps
8
+ related:
9
+ - /docs/how-it-works/code-transform
4
10
  ---
5
11
 
6
12
  import { File, Folder, Files } from "fumadocs-ui/components/files";
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  title: Observability
3
3
  description: Inspect, monitor, and debug workflows through the CLI and Web UI with powerful observability tools.
4
+ type: guide
5
+ summary: Inspect and debug workflow runs using the CLI and Web UI.
6
+ prerequisites:
7
+ - /docs/foundations
8
+ related:
9
+ - /docs/how-it-works/event-sourcing
4
10
  ---
5
11
 
6
12
  Workflow DevKit provides powerful tools to inspect, monitor, and debug your workflows through the CLI and Web UI. These tools allow you to inspect workflow runs, steps, webhooks, [events](/docs/how-it-works/event-sourcing), and stream output.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "workflow",
3
- "version": "4.1.0-beta.55",
3
+ "version": "4.1.0-beta.57",
4
4
  "description": "Workflow DevKit - Build durable, resilient, and observable workflows",
5
5
  "main": "dist/typescript-plugin.cjs",
6
6
  "type": "module",
@@ -53,17 +53,17 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "ms": "2.1.3",
56
- "@workflow/astro": "4.0.0-beta.29",
57
- "@workflow/cli": "4.1.0-beta.55",
58
- "@workflow/core": "4.1.0-beta.55",
56
+ "@workflow/astro": "4.0.0-beta.31",
57
+ "@workflow/cli": "4.1.0-beta.57",
58
+ "@workflow/core": "4.1.0-beta.57",
59
59
  "@workflow/errors": "4.1.0-beta.15",
60
60
  "@workflow/typescript-plugin": "4.0.1-beta.4",
61
- "@workflow/next": "4.0.1-beta.51",
62
- "@workflow/nest": "0.0.0-beta.4",
63
- "@workflow/nitro": "4.0.1-beta.50",
64
- "@workflow/nuxt": "4.0.1-beta.39",
65
- "@workflow/sveltekit": "4.0.0-beta.44",
66
- "@workflow/rollup": "4.0.0-beta.12"
61
+ "@workflow/next": "4.0.1-beta.53",
62
+ "@workflow/nest": "0.0.0-beta.6",
63
+ "@workflow/nitro": "4.0.1-beta.52",
64
+ "@workflow/nuxt": "4.0.1-beta.41",
65
+ "@workflow/sveltekit": "4.0.0-beta.46",
66
+ "@workflow/rollup": "4.0.0-beta.14"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@types/ms": "2.1.0",
@@ -1,6 +0,0 @@
1
- /**
2
- * These are shared observability utilities that are used by the CLI and Web UIs.
3
- * They might later be moved to be part of the core API.
4
- */
5
- export * from '@workflow/core/observability';
6
- //# sourceMappingURL=observability.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"observability.d.ts","sourceRoot":"","sources":["../../src/internal/observability.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,8BAA8B,CAAC"}
@@ -1,6 +0,0 @@
1
- /**
2
- * These are shared observability utilities that are used by the CLI and Web UIs.
3
- * They might later be moved to be part of the core API.
4
- */
5
- export * from '@workflow/core/observability';
6
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib2JzZXJ2YWJpbGl0eS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9pbnRlcm5hbC9vYnNlcnZhYmlsaXR5LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7R0FHRztBQUVILGNBQWMsOEJBQThCLENBQUMifQ==