Official skill for integrating Firebase AI Logic (Gemini API) into web applications. Covers setup, multimodal inference, structured output, and security.
npx skills add https://github.com/firebase/agent-skills --skill firebase-ai-logic-basics
Firebase AI Logic is a product of Firebase that allows developers to add gen AI
to their mobile and web apps using client-side SDKs. You can call Gemini models
directly from your app without managing a dedicated backend. Firebase AI Logic,
which was previously known as "Vertex AI for Firebase", represents the evolution
of Google's AI integration platform for mobile and web developers.
It supports the two Gemini API providers:
pay-as-you-go for production
with enterprise-grade production readiness, requires Blaze plan
Use the Gemini Developer API as a default, and only Agent Platform Gemini API
(formerly branded Vertex AI) if the application requires it.
them if they aren’t already available.
starting: Android, iOS, Flutter or Web.
how to set up AI Logic for their application (share this link with the user
https://firebase.google.com/docs/ai-logic/get-started)
The library is part of the standard Firebase Web SDK.
npm install -g firebase@latest
If you're in a firebase directory (with a firebase.json) the currently selected
project will be marked with "current" using this command:
npx -y firebase-tools@latest projects:list
Ensure there's at least one app associated with the current project
npx -y firebase-tools@latest apps:list
Initialize AI logic SDK with the init command
npx -y firebase-tools@latest init ailogic
This will automatically enable the Gemini Developer API in the Firebase console.
More info in
Firebase AI Logic Getting Started
> [!WARNING] CRITICAL: Use current model names: Always check the
> Firebase AI Logic Models documentation
> for the currently supported model names. Do NOT use gemini-2.0-pro or
> gemini-2.0-flash or other older models that are shutdown.
Firebase AI Logic allows Gemini models to analyze image files directly from your
app. This enables features like creating captions, answering questions about
images, detecting objects, and categorizing images. Beyond images, Gemini can
analyze other media types like audio, video, and PDFs by passing them as inline
data with their MIME type. For files larger than 20 megabytes (which can cause
HTTP 413 errors as inline data), store them in Cloud Storage for Firebase and
pass their URLs to the Gemini Developer API.
Maintain history automatically using startChat.
To improve the user experience by showing partial results as they arrive (like a
typing effect), use generateContentStream instead of generateContent for
faster display of results.
> [!WARNING] Use current Image model names: Always check the
> Firebase AI Logic Models documentation
> for the currently supported image generation (Nano Banana) model names.
Supported Platforms and Frameworks include Kotlin and Java for Android, Swift
for iOS, JavaScript for web apps, Dart for Flutter, and C Sharp for Unity.
Enforce a specific JSON schema for the response.
Hybrid on-device inference for web apps, where the Firebase Javascript SDK
automatically checks for Gemini Nano's availability (after installation) and
switches between on-device or cloud-hosted prompt execution. This requires
specific steps to enable model usage in the Chrome browser, more info in the
hybrid-on-device-inference documentation.
> [!WARNING] Critical Safety Requirement: In order to use AI Logic safely,
> you MUST set up App Check on your app. This prevents unauthorized clients from
> using your API quota and accessing your backend resources.
See
App Check with reCAPTCHA Enterprise
for setup instructions.
Because App Check attestation providers (like Play Integrity or DeviceCheck)
reject emulators, simulators, or CI environments, you must use **App Check Debug
Tokens** during development and testing to bypass standard attestation.
self.FIREBASE_APPCHECK_DEBUG_TOKEN = true; beforeinitializing App Check.
DebugAppCheckProviderFactory.getInstance().AppCheckDebugProviderFactory()."123a4567-b89c-12d3-e456-789012345678"`
Apps > Manage debug tokens**.
Security > App Check > Apps > Manage debug tokens.
APP_CHECK_DEBUG_TOKEN).
SDK during test execution (e.g. `self.FIREBASE_APPCHECK_DEBUG_TOKEN =
process.env.APP_CHECK_DEBUG_TOKEN`).
Consider that you do not need to hardcode model names (e.g., a specific model
version string). Use Firebase Remote Config to update model versions dynamically
without deploying new client code. See
> [!WARNING] CRITICAL: Backend Provisioning Required For all platforms
> (Flutter, Android, iOS, Web), you MUST run npx firebase-tools init ailogic
> to provision the service. flutterfire configure ONLY handles client
> configuration and does NOT enable the AI service, leading to
> PERMISSION_DENIED errors.
| Language, | Gemini API | Context URL |
: Framework, : provider : :
: Platform : : :
| :---------- | :--------- | :---------------------------------------------- |
| Web Modular | Gemini | firebase://docs/ai-logic/get-started |
: API : Developer : :
: : API : :
: : (Developer : :
: : API) : :
| iOS (Swift) | Gemini | ios_setup.md |
: : Developer : :
: : API : :
| Flutter | Gemini | flutter_setup.md |
: (Dart) : Developer : :
: : API : :
> [!WARNING] CRITICAL: Use current model names: Always check the
> Firebase AI Logic Models documentation
> for the currently supported model names. Do NOT use gemini-2.0-pro or
> gemini-2.0-flash or other older models that are shutdown.
Web SDK code examples and usage patterns
iOS SDK code examples and usage patterns
Flutter SDK code examples and usage patterns
Android (Kotlin) SDK usage patterns
Convert PyTorch AT_DISPATCH macros to AT_DISPATCH_V2 format in ATen C++ code. Use when porting AT_DISPATCH_ALL_TYPES_AND*, AT_DISPATCH_FLOATING_TYPES*, or other dispatch macros to the new v2 API. For ATen kernel files, CUDA kernels, and native operator implementations.
Write docstrings for PyTorch functions and methods following PyTorch conventions. Use when writing or updating docstrings in PyTorch code.
Statistical models library for Python. Use when you need specific model classes (OLS, GLM, mixed models, ARIMA) with detailed diagnostics, residuals, and inference. Best for econometrics, time series, rigorous inference with coefficient tables. For guided statistical test selection with APA reporting use statistical-analysis.
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, Google, etc.), streaming, tool calling, structured output, or embeddings, (4) Use React hooks like useChat or useCompletion. Triggers on: "AI SDK", "Vercel AI SDK", "generateText", "streamText", "add AI to my app", "build an agent", "tool calling", "structured output", "useChat".
Create an llms.txt file from scratch based on repository structure following the llms.txt specification at https://llmstxt.org/
Use when working directly with the `esm` Python SDK, ESM3 or ESMC model IDs, Forge/Biohub inference clients, or ESMFold2 folding workflows.
Modal is a serverless cloud platform for running Python on demand, including on-demand GPUs. Use when deploying or serving AI/ML models, running GPU-accelerated workloads (training, fine-tuning, inference), serving web endpoints, scheduling batch jobs, or scaling Python code to cloud containers with the Modal SDK.
Use Therapeutics Data Commons through the PyTDC Python package for registry discovery, approved dataset access, task-aware splits, evaluator metrics, benchmark groups, and bounded molecular-oracle workflows.
Take firebase/firebase-ai-logic-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 npm, npx.
Without those the skill loads but fails at the first command.