Skip to content

Changelog

New updates and improvements at Cloudflare.

hero image

Agents SDK v0.3.7: Workflows integration, synchronous state, and scheduleEvery()

The latest release of the Agents SDK brings first-class support for Cloudflare Workflows, synchronous state management, and new scheduling capabilities.

Cloudflare Workflows integration

Agents excel at real-time communication and state management. Workflows excel at durable execution. Together, they enable powerful patterns where Agents handle WebSocket connections while Workflows handle long-running tasks, retries, and human-in-the-loop flows.

Use the new AgentWorkflow class to define workflows with typed access to your Agent:

JavaScript
import { AgentWorkflow } from "agents/workflows";
export class ProcessingWorkflow extends AgentWorkflow {
async run(event, step) {
// Call Agent methods via RPC
await this.agent.updateStatus(event.payload.taskId, "processing");
// Non-durable: progress reporting to clients
await this.reportProgress({ step: "process", percent: 0.5 });
this.broadcastToClients({ type: "update", taskId: event.payload.taskId });
// Durable via step: idempotent, won't repeat on retry
await step.mergeAgentState({ taskProgress: 0.5 });
const result = await step.do("process", async () => {
return processData(event.payload.data);
});
await step.reportComplete(result);
return result;
}
}

Start workflows from your Agent with runWorkflow() and handle lifecycle events:

JavaScript
export class MyAgent extends Agent {
async startTask(taskId, data) {
const instanceId = await this.runWorkflow("PROCESSING_WORKFLOW", {
taskId,
data,
});
return { instanceId };
}
async onWorkflowProgress(workflowName, instanceId, progress) {
this.broadcast(JSON.stringify({ type: "progress", progress }));
}
async onWorkflowComplete(workflowName, instanceId, result) {
console.log(`Workflow ${instanceId} completed`);
}
async onWorkflowError(workflowName, instanceId, error) {
console.error(`Workflow ${instanceId} failed:`, error);
}
}