Flagship - Flagship now in public beta
Key Points
- Public beta for Flagship
- Evaluate flags in Workers without outbound calls
- OpenFeature-compatible SDKs
Summary
Flagship is now in public beta. Engineers can evaluate feature flags directly inside Cloudflare Workers with no outbound HTTP calls, using globally distributed flag configuration backed by Workers KV and Durable Objects. Flagship supports typed flag values, targeting rules, percentage rollouts, audit history, and OpenFeature-compatible SDKs.
Example inline evaluation in a Worker: const showNewCheckout = await env.FLAGS.getBooleanValue("new-checkout", false);
Start creating flags from the Cloudflare dashboard and follow the Flagship documentation to integrate with your Workers.
Key Points
- Evaluate flags locally in Workers with zero outbound HTTP requests using
env.FLAGS. - Configuration is globally distributed and persisted via Workers KV and Durable Objects for low latency and consistency.
- Supports typed values, targeting rules, percentage rollouts, and audit history for safe rollouts.
- OpenFeature-compatible SDKs make it easier to adopt existing flag abstractions.
- Quick onboarding: create flags in the dashboard and call
getBooleanValue/ typed getters from your Worker.