ASD

Firebase Ai Logic Basics

Skill oficial para integrar Firebase AI Logic (Gemini API) en apps. Cubre configuración, inferencia multimodal, salida estructurada y seguridad.

Oficial

Reemplaza a: Gestionar un backend dedicado para llamar a modelos Gemini

Estrellas
406

en todo el repo

Actividad
65

0–100, la ruta de este skill

Actualizado
hace 7 días

último commit aquí

Commits
6

últimos 90 días

Contexto
2.3k tok

38 tok en reposo

Paquete
5 archivos

27 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add firebase/agent-skills --skill firebase-ai-logic-basics --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Configura e integra Firebase AI Logic (Gemini API) en apps web, Android, iOS y Flutter mediante los SDKs cliente
  • Ejecuta `firebase-tools init ailogic` para provisionar el backend y habilitar la Gemini Developer API
  • Implementa generación de texto, multimodal, chat multi-turno, streaming, salida estructurada JSON e imágenes con Nano Banana
  • Configura App Check y tokens de depuración para proteger la cuota de la API en desarrollo, CI/CD y producción
  • Usa Remote Config para actualizar nombres de modelos sin desplegar código nuevo

Úsalo cuando

  • Quieres añadir generación de IA (Gemini) directamente desde el cliente sin backend dedicado
  • Necesitas procesar imágenes, audio, video o PDF junto con texto en tu app
  • Vas a construir chat multi-turno, respuestas en streaming o salida JSON estructurada
  • Necesitas asegurar tu app con App Check antes de usar AI Logic en producción

No lo uses cuando

  • La plataforma del usuario no es Android, iOS, Flutter o Web (debes remitirlo a la documentación de Firebase Docs)

Qué lo activa

Di cualquiera de estas frases y el agente debería cargar este skill.

  • Ayúdame a integrar Gemini en mi app web con Firebase AI Logic
  • Cómo configuro App Check para proteger mi cuota de la API de Gemini
  • Quiero generar imágenes con Nano Banana usando Firebase AI Logic
  • Necesito que mi app analice PDFs con Gemini a través de Firebase

SKILL.md

En inglés

Firebase AI Logic Basics

Overview

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:

  • Gemini Developer API: It has a free tier ideal for prototyping, and pay-as-you-go for production
  • Agent Platform Gemini API (formerly branded Vertex AI): Ideal for scale 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.

Setup & Initialization

Prerequisites

  • Before starting, ensure you have Node.js 16+ and npm installed. Install them if they aren’t already available.
  • Identify the platform the user is interested in building on prior to starting: Android, iOS, Flutter or Web.
  • If their platform is unsupported, Direct the user to Firebase Docs to learn how to set up AI Logic for their application (share this link with the user https://firebase.google.com/docs/ai-logic/get-started)

Installation

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

Core Capabilities

[!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.

Text-Only Generation

Multimodal (Text + Images/Audio/Video/PDF input)

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.

Chat Session (Multi-turn)

Maintain history automatically using startChat.

Streaming Responses

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.

Generate Images with Nano Banana

[!WARNING] Use current Image model names: Always check the Firebase AI Logic Models documentation for the currently supported image generation (Nano Banana) model names.

  • Requires an upgraded Blaze pay-as-you-go billing plan.

Search Grounding with the built in googleSearch tool

Supported Platforms and Frameworks

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.

Advanced Features

Structured Output (JSON)

Enforce a specific JSON schema for the response.

On-Device AI (Hybrid)

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.

Security & Production

App Check

[!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.

App Check Debug Tokens for Local Development & CI/CD

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.

Local Development (Auto-Generated)
  1. Configure your code's App Check provider to use the debug factory:
    • Web: Set self.FIREBASE_APPCHECK_DEBUG_TOKEN = true; before initializing App Check.
    • Android: Install DebugAppCheckProviderFactory.getInstance().
    • iOS: Set provider factory to AppCheckDebugProviderFactory().
  2. Run your app in the emulator/localhost.
  3. Look at your runtime debugger console / Logcat logs for the generated UUID:
    • Example: AppCheck debug token: "123a4567-b89c-12d3-e456-789012345678"
  4. Register this token in the Firebase Console under Security > App Check > Apps > Manage debug tokens.
CI/CD Pipelines (Pre-Provisioned)
  1. Generate and register a new debug token in the Firebase Console under Security > App Check > Apps > Manage debug tokens.
  2. Add this token string as an encrypted secret in your CI system (e.g. APP_CHECK_DEBUG_TOKEN).
  3. Configure your build to pass this secret as an environment variable to the SDK during test execution (e.g. self.FIREBASE_APPCHECK_DEBUG_TOKEN = process.env.APP_CHECK_DEBUG_TOKEN).

Remote Config

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 Changing model names remotely

[!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.

Initialization Code References

| 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.

References

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

Reproducido de firebase/agent-skills bajo licencia Apache-2.0. Leer esta página en markdown.

Archivos

5 archivos en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

Antes de instalar

Requiere Node.js 16+ y npm, un proyecto Firebase con al menos una app registrada, y ejecutar `npx firebase-tools@latest init ailogic` para provisionar el servicio.

Detalles

Creador
firebase
Licencia
Apache-2.0
Recursos incluidos
referencias
Código fuente
Ver SKILL.md

Etiquetas

Más de firebase/agent-skills

Este repo incluye 12 skills. Si instalas uno, normalmente ya tienes los demás.

Configura la base de Firebase: instala/verifica la CLI, gestiona login (incl. --no-localhost), crea o selecciona proyectos y descarga los archivos de configuración de la app.

Costo de contexto al activarse
1.8k tok
Tamaño del paquete
20 archivos
Última actualización
hace 7 días
Oficialdevops infraestructura

Configura, gestiona, consulta y ajusta bases de datos Cloud Firestore (edición Standard/Enterprise): modelado de datos, reglas de seguridad, índices e integraciones SDK (Web, Python, iOS, Android, Flutter).

Costo de contexto al activarse
991 tok
Tamaño del paquete
17 archivos
Última actualización
hace 7 días
Oficialbases de datos

Guía para configurar y usar Firebase Authentication. Úsala cuando la app necesite inicio de sesión de usuarios, gestión de usuarios o acceso seguro a datos mediante reglas de auth.

Costo de contexto al activarse
1k tok
Tamaño del paquete
6 archivos
Última actualización
hace 7 días
Oficialseguridad

Despliega y gestiona apps full-stack (Next.js, Angular) con SSR usando Firebase App Hosting: apphosting.yaml, bloques apphosting en firebase.json, secretos y CI/CD con GitHub.

Costo de contexto al activarse
670 tok
Tamaño del paquete
4 archivos
Última actualización
hace 7 días
Oficialdevops infraestructura

Convierte una Firebase Extension instalada (o su código fuente) en un codebase de Cloud Functions independiente o en un paquete npm publicable, con upgrade de triggers V1 a V2, lifecycle hooks y seguridad declarativa.

Costo de contexto al activarse
1.1k tok
Tamaño del paquete
4 archivos
Última actualización
hace 7 días
Oficialdevops infraestructura

Construye y despliega backends de Firebase SQL Connect (antes Data Connect) con PostgreSQL de forma segura, incluyendo esquemas, queries/mutations autorizadas, tiempo real y SDKs type-safe.

Costo de contexto al activarse
2.4k tok
Tamaño del paquete
17 archivos
Última actualización
hace 7 días
Oficialbases de datos

Skills relacionados

Úsalo cuando el usuario o el agente necesite leer, buscar o consultar la documentación o la referencia de la API de Stripe, en vez de usar curl o WebFetch para docs.stripe.com.

Costo de contexto al activarse
225 tok
Tamaño del paquete
1 archivo
Última actualización
hace 24 días
Oficialdesarrollo apis

Úsalo al construir, modificar o revisar un Stripe App: cubre scaffold, preview, upload, versionado, arquitectura de UI extensions, autenticación, manifest stripe-app.yaml, webhooks, Secret Store y publicación en el marketplace.

Costo de contexto al activarse
3.2k tok
Tamaño del paquete
11 archivos
Última actualización
hace 6 días
Oficialdesarrollo apis

Configura Azure API Management como AI Gateway para modelos, herramientas MCP y agentes: caché semántica, límites de tokens, seguridad de contenido, balanceo de carga y control de costes.

Costo de contexto al activarse
1.3k tok
Tamaño del paquete
9 archivos
Última actualización
hace 16 días
Oficialdesarrollo apis