Can you show the code, and what does “doesn’t work” mean - what is the error message? What version o
Can you show the code, and what does “doesn’t work” mean - what is the error message? What version of wrangler?
npm create cloudflare@latest workflows-starter -- --template "cloudflare/workflows-starter"instance.not_found error.✘ [ERROR] Worker "workflows:s3-update-status"'s binding "USER_WORKFLOW" refers to a service "core:user:integrations", but no such service is defined.params?wrangler dev invocations?wrangler config and code.wrangler dev invocation. wrangler dev run:

HTTP 500/10001 workflows.api.error.internal_serverenv inside a workflow context? we would like to use our KV bindingsthis.env Env type as a parameter to your Workflow class: https://developers.cloudflare.com/workflows/build/workers-api/#workflowentrypoint

vitest.config file as I have the workflow in a separate folder? The durable object class gets resolved without issue, but not the workflow.

wrangler are you using? Make sure it’s the latest (4.8.0 or later).✘ [ERROR] Worker "workflows:s3-update-status"'s binding "USER_WORKFLOW" refers to a service "core:user:integrations", but no such service is defined.HTTP 500/10001 workflows.api.error.internal_servervitest.config{
// Other info
// ...
"compatibility_date": "2025-03-17",
"compatibility_flags": ["nodejs_compat"],
"observability": {
"enabled": true
},
"durable_objects": {
"bindings": [
{
"name": "TASKS",
"class_name": "Task"
}
]
},
"migrations": [
{
"new_sqlite_classes": ["Task"],
"tag": "v1"
}
],
"workflows": [
{
"binding": "TASK_WORKFLOW",
"class_name": "TaskWorkflow",
"name": "task-workflow"
}
],
// Some other bindings with Queues, Services and Rules
// ...
}