flags
Installation
Summary
Inspect and compare feature flag states across React release channels.
- View all flags across channels (www, www-modern, canary, next, experimental, rn variants) or compare specific channels with
--diff - Output formats include default table view, CSV export, and cleanup status grouping
- Flag states indicated by symbols: enabled (✅), disabled (❌), variant testing (🧪), profiling-only (📊)
- Common pitfall:
__VARIANT__flags are tested in both states on www; use--diffto spot meaningful differences between channels
SKILL.md
Feature Flags
Arguments:
- $ARGUMENTS: Optional flags
Options
| Option | Purpose |
|---|---|
| (none) | Show all flags across all channels |
--diff <ch1> <ch2> |
Compare flags between channels |
--cleanup |
Show flags grouped by cleanup status |
--csv |
Output in CSV format |
Channels
www,www-modern- Meta internalcanary,next,experimental- OSS channelsrn,rn-fb,rn-next- React Native
Related skills
More from facebook/react
fix
Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.
1.7Kextract-errors
Use when adding new error messages to React, or seeing "unknown error code" warnings.
958verify
Use when you want to validate changes before committing, or when you need to check all React contribution requirements.
886test
Use when you need to run tests for React core. Supports source, www, stable, and experimental channels.
883feature-flags
Use when feature flag tests fail, flags need updating, understanding @gate pragmas, debugging channel-specific test failures, or adding new flags to React.
846flow
Use when you need to run Flow type checking, or when seeing Flow type errors in React code.
826