feature-flags

Installation
SKILL.md

Feature Flags

Flag Types

Type Purpose Lifetime Example
Release Gate incomplete features Days-weeks new-checkout-flow
Experiment A/B test variations Weeks-months pricing-page-variant
Ops / Kill switch Runtime control, emergency disable Permanent-ish disable-search-indexing
Permission Entitlement gating Permanent premium-analytics

Implementation Patterns

Boolean Flag

if (featureFlags.isEnabled("new-dashboard")) {
  return <NewDashboard />;
}
Related skills

More from 1mangesh1/dev-skills-collection

Installs
1
GitHub Stars
3
First Seen
Apr 14, 2026