firebase-remote-config
Use when implementing feature flags, running A/B tests, setting parameter defaults, fetching/activating config, or enabling real-time config updates.
npx skills add evanca/flutter-ai-rules --skill firebase-remote-config --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Firebase Remote Config Skill This skill defines how to correctly use Firebase Remote Config in Flutter applications. ## When to Use Use this skill when: * Implementing feature flags or remote configuration without deploying app updates. * Managing parameter defaults and fetching remote values. * Implementing real-time config updates for instant changes. * Setting up A/B testing or conditional targeting for user segments. --- ## 1. Setup and Configuration ``` flutter pub add firebase_remote_config flutter pub add firebase_analytics # required for conditional targeting of app instances ``` ```dart import 'package:firebase_remote_config/firebase_remote_config.dart'; final remoteConfig = FirebaseRemoteConfig.instance; ``` - Enable **Google Analytics** in the Firebase project for user property and audience targeting. - Ensure the **Remote Config REST API** is not disabled — the SDK depends on it. - For **macOS**, enable Keychain Sharing in Xcode. **Configure settings:** ```dart await remoteConfig.setConfigSettings(RemoteConfigSettings( fetchTimeout: const Duration(minutes: 1), minimumFetchInterval: const Duration(hours: 1), )); ``` --- ## 2. Parameter Management **Set in-app defaults*
- When to Use
- 1. Setup and Configuration
- 2. Parameter Management
- 3. Fetching and Activating
- 4. Real-time Updates
- 5. Throttling and Performance
- 6. Testing and Debugging
- References
What does the firebase-remote-config skill do?
Use when implementing feature flags, running A/B tests, setting parameter defaults, fetching/activating config, or enabling real-time config updates.
How do I install it?
Run `npx skills add evanca/flutter-ai-rules --skill firebase-remote-config --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From evanca/flutter-ai-rules, a repository with 604 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
