CookbookWorkflows
Workflows
Orchestration recipes — plan-with-approval gates, long-running flows, task worker pools.
Recipes for orchestrating multi-step work that may need human review, suspend across action boundaries, or fan out to a pool of workers.
Plan with approval
Generate a plan, pause for human review, execute on approval. Built on plan() + flow + signalFlow.
Long-running flow
Suspend and resume across action boundaries — hours or days. Bounded by timeout, signaled to resume.
Task worker pool
A task list as a queue, taskWorker as the consumer, parallel execution with progress UI.