Feature Flags + Rollout
Goal
Ship complex features safely via flags, kill-switches, and staged rollout strategy.
When to use
- •PRODUCTION+.
- •Risky feature changes.
- •Staged client rollout.
Minimal inputs (ask only if missing)
- •Flag scope (global/tenant/user).
- •Default behavior.
Procedure (MUST)
- •Define minimal flag interface and storage.
- •Implement flag provider.
- •Guard UI + API behaviors.
- •Add kill-switch.
- •Document rollout and rollback triggers.
Outputs (MUST produce)
- •
docs/feature_flags.md. - •Flag provider implementation.
- •Example guarded feature pattern.