.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/agent-skills/firebase-remote-config-basics
home/skills/firebase/agent-skills/firebase-remote-config-basics
firebase avatar

firebase-remote-config-basics

byfirebase· 35 skills

Installs

65k

Stars

389

Forks

76

Category

DevOps & CI/CD

View on GitHub

TL;DR

Comprehensive guide for Firebase Remote Config, including template management and SDK usage. Use this skill when the user needs help setting up Remote Config, managing feature flags, or updating app behavior dynamically.

How to install firebase-remote-config-basics?

firebase/agent-skills/firebase-remote-config-basics
$npx -y skills add firebase/agent-skills --skill firebase-remote-config-basics

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/firebase/agent-skills" --skill "firebase/agent-skills/firebase-remote-config-basics"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/firebase/agent-skills" that are relevant to the current task. Run `npx skills add "https://github.com/firebase/agent-skills"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# Remote Config
2 
3This skill provides a complete guide for getting started with Remote Config on
4Android or iOS. Remote Config allows you to change the behavior and appearance
5of your app without publishing an app update by maintaining a cloud-based
6configuration template.
7 
8## Prerequisites
9 
10Provisioning Remote Config requires both a Firebase project and a Firebase app,
11either Android or iOS. To manage the Remote Config template and conditions via
12the command line, use the Firebase CLI. See the `firebase-basics` skill for
13references on project initialization.
14 
15## Troubleshooting Execution
16 
17### Handling npx 403 Forbidden Errors
18 
19If `npx -y firebase-tools@latest` fails due to registry permissions (403 error):
20 
211. **Inform the user**: "I am unable to fetch the latest Firebase tools via npx
22 due to a registry error."
231. **Fallback**: Attempt to use the local `firebase` command directly if the
24 user confirms it is installed globally (`npm install -g firebase-tools`).
25 
26### Handling Project Context Issues
27 
28If a command fails because "no active project is selected":
29 
301. **Check login**: Run `npx -y firebase-tools@latest login:list`.
311. **Prompt for ID**: If logged in but no project is active, ask the user:
32 "Please provide your Firebase Project ID to proceed."
331. **Use Flag**: Append `--project <PROJECT_ID>` to every subsequent command.
34 
35## SDK Setup
36 
37To learn how to set up Remote Config in your application code, choose your
38platform:
39 
40- **Android**: [android_setup.md](references/android_setup.md)
41- **iOS**: [ios_setup.md](references/ios_setup.md)
42 
43## Best Practices and Template Management
44 
45Follow these guidelines and use the associated CLI tools to ensure efficient and
46safe use of Remote Config.
47 
48### Fetching Strategies
49 
50To optimize app performance and user experience, follow these recommended
51patterns (see
52[Loading Strategies](https://firebase.google.com/docs/remote-config/loading)):
53 
54- **Load new values for next startup**: The most effective pattern is to
55 activate previously fetched values immediately on startup and fetch new values
56 in the background to be used next time. This minimizes user wait time.
57- **Real-time Updates**: Use the SDK's real-time listener to update the app
58 instantly without a refresh when server-side configuration changes.
59 
60### Template Management via CLI
61 
62Use the following commands to manage your Remote Config template and version
63history through the terminal:
64 
65### Template Management via CLI
66 
67Use the following commands to manage your Remote Config template and version
68history through the terminal:
69 
70- **Get current template**: Save the remote template to a local JSON file for
71 auditing or modification.
72 
73 ```bash
74 npx -y firebase-tools@latest remoteconfig:get -o remote_config.json
75 ```
76 
77- **Autonomous Editing & Discovery** : Modify the local `remote_config.json`
78 directly. Determine the correct signal (e.g., device.country or percent) and
79 update the "conditions" array and "parameters" map accordingly.
80 
81- **MANDATORY: User Review and Verification** : STOP and ask the user to verify
82 your changes before proceeding to deployment.
83 
84 - Action: Inform the user: "I have prepared the changes in remote_config.json.
85 Please review the file for accuracy. Once you are satisfied, tell me to
86 'deploy' to make the changes live."
87 
88- **Deployment Orchestration** : To push changes, you must ensure the
89 environment is configured for deployment.
90 
91 - Config Mapping: If a firebase.json file is missing, create one to map the
92 local JSON to the Remote Config service:
93 
94 ```json
95 { "remoteconfig": { "template": "remote_config.json" } }
96 ```
97 
98 - Deploy: Execute the partial deployment command
99 ```bash
100 npx -y firebase-tools@latest deploy --only remoteconfig
101 ```
102 
103- **Verification**: After deployment, verify the update by listing the version
104 history.
105 
106 ```bash
107 npx -y firebase-tools@latest remoteconfig:versions:list
108 ```
109 
110The SDK provides a number of features to make your application dynamic and
111responsive to user segments.
112 
113- **Set In-App Defaults**: Define baseline values to ensure the app functions
114 offline or before the first fetch.
115- **Fetch and Activate**: Retrieve values from the Firebase backend and apply
116 them to the local UI/Logic.
117- **Template Management**: Use the Firebase CLI to version-control, get, and
118 deploy your config JSON files.

Security

Review

  • Gen Agent Trust Hubpass
  • Socketpass
  • Snykwarn

Preview

firebase/agent-skillsfirebase/agent-skills

$ npx -y skills add firebase/agent-skills --skill firebase-remote-config-basics

▸ installing to .claude/skills…

✓ firebase-remote-config-basics ready

Repofirebase/agent-skills
TypeSkills
CategoryDevOps & CI/CD
ForProduct ManagerDeveloper
UpdatedJul 2026
License—
First seenJul 26, 2026

Tags

Skill

Related

6 picks
Type
  1. mattpocock avatarsetup-matt-pocock-skillsConfigure this repo for the engineering skills — set up its issue tracker, triage label vocabulary, and domain doc layout.SkillsJul 2026495k189k
  2. microsoft avatarmicrosoft-foundryDeploy, evaluate, fine-tune, and manage Foundry agents end-to-end with azd: hosted agent scaffold/run/deploy, prompt agent create, batch eval, continuous eval,…SkillsJul 2026490k1.3k
  3. microsoft avatarazure-deployExecute Azure deployments for ALREADY-PREPARED applications that have existing .azure/deployment-plan.md and infrastructure files.SkillsJul 2026485k1.3k
  4. microsoft avatarazure-preparePrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Terraform), and Dockerfiles for the Azure Developer CLI (azd)…SkillsJul 2026485k1.3k
  5. microsoft avatarazure-validatePre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure (Bicep or Terraform), RBAC role assignments, managed identity…SkillsJul 2026484k1.3k
  6. microsoft avatarazure-aigatewayConfigure Azure API Management as an AI Gateway for AI models, MCP tools, and agents.SkillsJul 2026484k1.3k