---
title: All Wrangler commands for Workflows now support local development
description: Use wrangler workflows commands with the --local flag to manage Workflows running in a local wrangler dev session.
image: https://developers.cloudflare.com/changelog-preview.png
---

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## All Wrangler commands for Workflows now support local development

Apr 01, 2026 

[ Workflows ](https://developers.cloudflare.com/workflows/)[ Workers ](https://developers.cloudflare.com/workers/) 

All `wrangler workflows` commands now accept a `--local` flag to target a Workflow running in a local `wrangler dev` session instead of the production API.

You can now manage the full Workflow lifecycle locally, including triggering Workflows, listing instances, pausing, resuming, restarting, terminating, and sending events:

Terminal window

```

npx wrangler workflows list --local

npx wrangler workflows trigger my-workflow --local

npx wrangler workflows instances list my-workflow --local

npx wrangler workflows instances pause my-workflow <INSTANCE_ID> --local

npx wrangler workflows instances send-event my-workflow <INSTANCE_ID> --type my-event --local


```

All commands also accept `--port` to target a specific `wrangler dev` session (defaults to `8787`).

For more information, refer to [Workflows local development](https://developers.cloudflare.com/workflows/build/local-development/).