firebase/firebase-basics
>- Provides foundational Firebase CLI setup, CLI installation, version checks (`firebase-tools@latest --version`), CLI login (including --no-localhost), project creation, project selection (`firebase use`), and app config file downloads (`google-services.json`, `GoogleService-Info.plist`). Use ONLY for CLI login, project creation/switching, or downloading app config files. Don't use for Firebase Hosting deploy, Firestore, Auth, App Hosting, Data Connect, Crashlytics, or Remote Config.
npx skills add https://github.com/firebase/agent-skills --skill firebase-basics
Complete these setup steps before proceeding:
can use Firebase tools:
npx -y firebase-tools@latest --version to check if the Firebase CLIis installed.
below, you MUST read
references/local-env-setup.md.
available to you, you must follow the reference for your agent environment
to set up the full suite of Firebase skills:
references/setup/gemini_cli.md
references/setup/antigravity.md
references/setup/android_studio.md
references/setup/claude_code.md
references/setup/cursor.md
references/setup/github_copilot.md
references/setup/other_agents.md
have the correct permissions. Run npx -y firebase-tools@latest login. For
environments without a browser (e.g., remote shells), use
npx -y firebase-tools@latest login --no-localhost.
command to authenticate.
> [!IMPORTANT] For Agents: Before proceeding with project configuration,
> you MUST pause and ask the developer if they prefer to:
>
> 1. Provide an existing Firebase Project ID, or
> 1. Create a new Firebase project.
npx -y firebase-tools@latest use.Active Project: <project-id>, confirm with theuser if this is the intended project.
user:
npx -y firebase-tools@latest use <PROJECT_ID>
npx -y firebase-tools@latest projects:create <project-id> --display-name "<display-name>"
*Note: The <project-id> must be 6-30 characters, lowercase, and can
contain digits and hyphens. It must be globally unique.*
Adhere to these principles:
the Firebase CLI, always prepend commands with npx -y firebase-tools@latest
instead of just firebase. For example, use
npx -y firebase-tools@latest --version. NEVER suggest the naked firebase
command as an alternative.
consult the developerknowledge_search_documents MCP tool before falling
back to Google Search or your internal knowledge base. Including "Firebase"
in your search query significantly improves relevance.
opinionated workflows (CUJs), security rules, and best practices. Always
consult them to understand *how* to implement Firebase features correctly
instead of relying on general knowledge.
need to interact with remote Firebase APIs (such as fetching Crashlytics logs
or executing Data Connect queries), use the tools provided by the Firebase
MCP Server instead of attempting manual API calls.
quickly, regularly check for and install updates to their Firebase plugin or
Agent Skills. Similarly, if you encounter issues with outdated tools or
commands, follow the steps below based on your agent environment:
references/refresh/antigravity.md
references/refresh/gemini-cli.md
references/refresh/claude.md
references/refresh/other-agents.md
references/refresh/android_studio.md
references/refresh/other-agents.md
NOT direct users to the Firebase Console to download google-services.json
or GoogleService-Info.plist. Instead, use the Firebase CLI to fetch the
config programmatically:
npx -y firebase-tools@latest apps:sdkconfig ANDROID <APP_ID> --project <PROJECT_ID>
npx -y firebase-tools@latest apps:sdkconfig IOS <APP_ID> --project <PROJECT_ID>
Save the output to the appropriate location (e.g.,
app/google-services.json for Android, or a path to be linked by
xcode-project-setup for iOS).
references/firebase-service-init.md
when you need to initialize new Firebase services using the CLI.
references/firebase-cli-guide.md to
discover and understand CLI functionality.
npx -y firebase-tools@latest login --no-localhost instead.
npx skills add genkit-ai/skills
Take firebase/firebase-basics from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npx.
Without those the skill loads but fails at the first command.