15.39Feature flags
Sometimes you want to deploy code without immediately enabling behavior.
Example:
features:
newCustomerMapping: false
Then enable in QA/prod according to controlled rollout.
Good for:
risky integration changes
new downstream system
migration
gradual rollout
But don't turn configuration into an impossible matrix of hidden behavior.