feature-flags

SkillDev tools

Feature flag implementation: release flags, ops kill switches, experiment flags, and permission gating. PRD-gated — only load when PRD or technical architecture explicitly requires gradual rollout, A/B testing, or kill switches. Includes lifecycle rules (90-day max for release flags), flag evaluation patterns, and CI/CD checklist.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the feature-flags skill

What this skill tells your AI

The instructions your AI receives, as published by irahardianto/awesome-agv in .agents/skills/feature-flags/SKILL.md and read by ahel’s review.

Feature Flags Principles

[!CAUTION] Do NOT implement feature flags unless explicitly required.

Feature flags add real operational complexity: flag evaluation infrastructure, lifecycle management, and a multiplicative increase in test permutations. The cost is non-trivial for solo developers or simple projects.

Only introduce feature flags when the PRD or technical architecture document explicitly specifies one of:

  • Gradual / percentage rollout of a risky feature
  • A/B testing or experimentation
  • Emergency kill switches for production code paths
  • Feature entitlement gating by user tier or permission

If none of these are specified, deploy code directly. Do not introduce flags speculatively.


When to Use Feature Flags

Feature flags decouple deployment from release. Code ships to production but stays dormant until the flag enables it. This is valuable for:

Use caseFlag typeExample
Gradual rolloutRelease flagnew-checkout-flow: 0→5→25→100%
Emergency kill switchOps flaguse-legacy-payment-provider
A/B test / experimentExperiment flagbutton-color-blue-vs-green
Tier / permission gatingPermission flagpro-tier-analytics

Infrastructure Requirements

[!IMPORTANT] The flag evaluation backend must be specified in the technical architecture document before implementation begins. Do NOT choose a provider independently — ask the user which infrastructure to use.

ApproachWhen to useNotes
Managed SaaSTeams > 5, multi-environment, complex targetingLaunchDarkly, Flagsmith, Unleash Cloud
Self-hostedFull control, no SaaS dependencyUnleash (OSS), Flagsmith (OSS)
Firebase Remote ConfigMobile apps in the Firebase ecosystemFirebase SDK required
Static config (YAML / env)Solo dev, simple on/off, single environmentLoaded at startup; no runtime targeting

Flag configuration is infrastructure — it must be provisioned before code references it.


Flag Evaluation Rules

  • Evaluate server-side for security-sensitive features (never trust the client)
  • Evaluate at request boundary — never inside pure business logic functions
  • Default to disabled — if the flag service is unreachable, the flag is off (fail closed)
  • Wrap flag checks once — in a service method or middleware, not scattered across business logic

Pattern:

// ✅ Flag evaluation at the boundary (handler or service entry point)
func (s *Service) CreateOrder(ctx context.Context, req Request) (Response, error) {
    useNewPricing := s.flags.IsEnabled(ctx, "new-pricing-engine", req.UserID)
    if useNewPricing {
        return s.handleWithNewPricing(ctx, req)
    }
    return s.handleWithLegacyPricing(ctx, req)
}

// ❌ Flag evaluation buried inside business logic
func calculateDiscount(items []Item) float64 {
    if flags.IsEnabled("new-discount-rules") { ... }   // NO
}

Flag Lifecycle Rules

Flags are temporary by design. Flag debt accumulates fast and becomes a maintenance burden.

  • Every flag must have an owner (the team or developer responsible for its lifecycle)
  • Every release flag has a maximum lifespan of 90 days
  • When a release flag reaches 100% rollout, create a ticket immediately to remove it
  • Ops (kill switch) flags can be permanent but must be documented as such
  • Experiment flags must be removed when the experiment concludes
  • Review all flags in sprint planning — any flag past its expiry date is tech debt

Testing with Feature Flags

Feature flags multiply test permutations. Keep tests tractable:

  • Unit tests test each branch independently (flag on + flag off)
  • Integration tests default the flag to its production-expected state (usually fully on or off)
  • Do not write tests that enumerate every possible flag combination
  • Use a test-only flag override mechanism (e.g., flags.Override(ctx, "flag", true)) — never branch test logic on environment variables

CI/CD Checklist (Feature Flags)

  • Flag infrastructure specified in technical architecture document?
  • Flag backend provisioned and accessible by the application?
  • Every flag has an owner and expiry date set?
  • Flag evaluation is server-side for security-sensitive paths?
  • Default state is disabled (fail closed)?
  • Unit tests cover both flag-on and flag-off code paths?
  • Removal ticket created once flag reaches 100% rollout?

Related Principles

  • CI/CD Principles @.agents/skills/ci-cd/SKILL.md (deployment vs release concept)
  • Architectural Patterns — Testability-First Design @architectural-pattern.md
  • Core Design Principles @core-design-principles.md (YAGNI)
  • Security Mandate @security-mandate.md (server-side evaluation)
  • Rule Priority @.agents/rules/rule-priority.md
  • Configuration Management Principles @.agents/rules/configuration-management-principles.md

Signals

GitHub stars
156
Forks
53
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
feature-flags-irahardianto
Source
github.com/irahardianto/awesome-agv