Skip to main content

3 posts tagged with "feature flags"

View All Tags

Best Open-Source Feature Flagging Tools in 2026

· 13 min read
Thomas Poignant
Creator of GO Feature Flag

The real risk in 2026 isn't picking the wrong feature-flag tool — it's locking your codebase to one. Here's how the leading open-source options compare, judged through the OpenFeature standard for capability and true openness, not marketing.

The 2026 lens: lock-in, not features

Open-source feature flagging has matured. Targeting rules, percentage rollouts, and self-hosting are now table stakes — most tools on this list do them well. So the interesting question is no longer "which one has the most features?" It's "which decision will I still be happy with in three years?"

The thing that outlives your tool choice is the flag-evaluation code scattered across your services. If those calls are written against a vendor's proprietary SDK, switching backends later means touching every call site. That is the lock-in that actually costs teams.

OpenFeature — the CNCF vendor-neutral specification and SDK set — is the answer the category is standardizing on. It decouples the flag API in your application code from the backend that serves the flags. You write against the OpenFeature SDK once, then plug in a provider for whatever backend you run. Swap the backend later and your application code doesn't change. That makes OpenFeature support a first-class selection criterion in 2026, not a nice-to-have — and it's the axis most listicles skip.

Your application code
OpenFeature SDKwrite against this once
Swap the backend — no app code changes
GO Feature FlagflagdUnleashFlagsmithGrowthBookFlipt

🏗️ Introducing Flag Sets: Organize Your Feature Flags Like Never Before

· 6 min read
Thomas Poignant
Creator of GO Feature Flag

Flag Sets Banner

We're excited to announce that we have released one of the most requested feature for GO Feature Flag.
It will revolutionize how you organize and manage your feature flags: Flag Sets! 🎉

As your applications grow and teams expand, managing feature flags can become increasingly complex. Different teams need their own flags, environments require separate configurations, and multi-tenant applications demand isolated flag management. That's exactly what Flag Sets are designed to solve.

Watch Thomas's PlatformCon 2025 Talk on Feature Flag Decoupling

· 2 min read
Thomas Poignant
Creator of GO Feature Flag

We're excited to share that Thomas Poignant, creator of GO Feature Flag, presented an insightful talk at PlatformCon 2025 about decoupling deployments from feature releases using OpenFeature.

Talk: "Decouple Deployments and Releases with OpenFeature"

In this presentation, Thomas explores how traditional deployment strategies often directly couple feature releases with code deployments, increasing risks and slowing time-to-market. He demonstrates how OpenFeature, a vendor-agnostic API for feature flagging, enables developers to separate feature releases from code deployments, providing precise control over feature visibility and experimentation.