docs: add Atmos feature flags PRD and roadmap#1956
Open
Conversation
Create comprehensive PRD for declarative feature flags system. Features are mixins with CLI control, ideal for managing versioned components (EKS versions), compliance requirements, and deployment strategies. Features provide context via .features accessible in templates, supporting deep merge when multiple features are enabled. Includes profile integration for environment-specific feature defaults and parameterized features for reusable configurations. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Contributor
✨ Finishing touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Dependency Review✅ No vulnerabilities or license issues found.Scanned FilesNone |
Blue-green deployments select a target (blue OR green), not enable a mode. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
- Replace --feature/--features-override with single --features flag - Replace ATMOS_FEATURE/ATMOS_FEATURES_OVERRIDE with single ATMOS_FEATURES - Both use replacement semantics (explicit control over features) - Simplify precedence: CLI > env var > stack > profile (4 levels, not 6) - Update all examples to use nested paths (versions/eks/1.30, compliance/hipaa) - Remove Open Question #4 about CLI parameter syntax - Update roadmap milestones to reflect simplified design Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1956 +/- ##
==========================================
+ Coverage 74.13% 74.15% +0.01%
==========================================
Files 772 772
Lines 69744 69847 +103
==========================================
+ Hits 51708 51795 +87
- Misses 14611 14629 +18
+ Partials 3425 3423 -2
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
what
.featurescontext system with deep merge behaviorwhy
Features provide a clean abstraction for cross-cutting concerns like versioned components (EKS versions), compliance requirements, and deployment strategies. This PRD enables tracking and implementation planning.
references