Skip to main content
Workflows can be run in a variety of ways: Every run, no matter the surface, validates the input against the workflow’s schema and is recorded in run history.

Run workflows from triggers

In production, most workflows run from a trigger. You attach a source (a webhook, schedule, poll, or app event) to a workflow, and each matching event starts a run.
src/triggers/signup.ts
The optional transform maps the source payload to the workflow’s input. See triggers for webhooks, schedules, and polling.

Run workflows from a form

Publish a workflow form to get a public URL. Anyone with the link can fill in the workflow’s inputs and start a run — no CLI or API key required.
You can also publish from the workflow’s Share menu in the web app. See workflow forms for field presentation, unpublish, and link rotation.

Run workflows from the CLI

The CLI is the most practical way to run a workflow while you build. Deploy your project, then invoke the workflow against the deployed project:
The signup-pipeline value is the workflow slug from defineWorkflow(), and --input is JSON validated against the workflow’s input schema. List the workflows in the active project:
keystroke workflows runs against your deployed cloud project:

Run workflows as an agent tool

Import a workflow into an agent’s tools array and it becomes a tool automatically. The agent calls it like any other tool, and the workflow runs with its normal step recording.
The workflow runs as its own queued child run, linked to the calling agent session. The agent waits for its result, and the child can use ctx.sleep() or ctx.hook() normally. Child runs count toward your organization’s concurrency, but do not incur an additional workflow-run dispatch fee; model, web, and sandbox usage is still metered normally. See workflows as tools.

Run workflows via API

You can also invoke a deployed workflow over HTTP. The route validates the input, enqueues the run, and returns a runId to inspect later:
This is mainly useful for wiring workflows into your own services. For most internal automation, triggers and the CLI cover what you need.

Resume a suspended run

A workflow that calls ctx.hook() suspends until something resumes it. The hook handle exposes a token and a resumeUrl. Resume the run with POST for structured payloads, or GET for simple link/button flows (Slack, email). No API key or session is required — the hook token in the URL is the credential:
With POST, the JSON body becomes the value ctx.hook() returns and the route returns 202 with the runId. With GET, query params become the payload (shallow) and the route returns a minimal HTML confirmation page. Query values arrive as strings, but if the hook declared a schema they are coerced to the schema’s primitive types first — so ?approved=true resolves to the boolean true. Values that can’t be coerced (e.g. ?approved=banana) are rejected with 400 and the run stays suspended. If the hook declared a schema, the resume endpoint validates the payload against it first. An invalid payload is rejected with 400 and the run stays suspended — you can fix the payload and resume again, instead of failing the run. (Validation is structural; the in-workflow schema.parse remains the authoritative parse for coercion and refinements.) Runs waiting on a hook show Waiting on hook in run history. Runs paused by ctx.sleep() show Sleeping and resume on their own when the timer is due, so you don’t resume those manually. A parent waiting for queued agent or sub-workflow children shows Waiting on child runs and resumes automatically when they reach a terminal outcome.

Find the resume token for a suspended run

If you didn’t capture the resumeUrl when the hook was created, list the pending hooks for a run to get its token and resume URL:
This returns each hook’s token, status, and a ready-to-use resumeUrl.

Review workflow runs

Every surface that runs a workflow creates a workflow run you can review later. Open History in the web app and filter Type to Workflow. The detail panel shows the input, output or error, steps, usage, trigger context, timing, and trace data. From the CLI, use run commands while debugging:
Cancel a queued or running run by ID:
See workflow runs for the full run history view.

Next steps

Triggers

Attach webhooks, schedules, and polls to start workflows.

Workflow forms

Publish a public form that starts a run from a shareable link.

Workflow runs

Inspect input, output, steps, errors, and traces.

Test workflows

Run workflows in tests before deploying changes.

Deploy a project

Ship workflow changes to the platform.