GE

genkit-production-expert

Expert guidance for building, testing, and deploying Genkit AI flows and RAG systems.

Install

mkdir -p .claude/skills/genkit-production-expert && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/8929" && unzip -o skill.zip -d .claude/skills/genkit-production-expert && rm skill.zip

Installs to .claude/skills/genkit-production-expert

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Build production Firebase Genkit applications including RAG systems,
68 charsno explicit “when” trigger
Advanced

Key capabilities

  • Initialize Genkit project structures
  • Define input and output schemas for flows
  • Implement RAG retrievers with vector database integration
  • Configure OpenTelemetry tracing for AI monitoring
  • Deploy flows to Firebase Functions or Cloud Run

How it works

The skill defines flows using typed schemas and model bindings, then integrates tools and retrievers for RAG capabilities. It manages the lifecycle from local development in the Genkit Developer UI to production deployment.

Inputs & outputs

You give it
Project requirements and model selection
You get back
Deployed Genkit flow with monitoring and tracing

When to use genkit-production-expert

  • Initialize a new Genkit flow
  • Implement RAG for document retrieval
  • Configure AI monitoring and tracing
  • Deploy Genkit flows to Cloud Run

About this skill

Genkit Production Expert

Overview

Build production-grade Firebase Genkit applications including RAG systems, multi-step flows, and tool-calling agents for Node.js, Python, and Go. This skill covers the full lifecycle from project scaffolding and schema validation through flow implementation, local testing with the Genkit Developer UI, and deployment to Firebase Functions or Cloud Run with AI monitoring and OpenTelemetry tracing.

Prerequisites

  • Node.js 18+ (TypeScript), Python 3.10+ (Python), or Go 1.21+ (Go) runtime
  • Genkit CLI and core packages (npm install genkit @genkit-ai/googleai for TypeScript)
  • Google Cloud project with Vertex AI API enabled for Gemini model access
  • Firebase CLI for Firebase Functions deployments (npm install -g firebase-tools)
  • Zod (TypeScript), Pydantic (Python), or Go structs for input/output schema validation
  • Environment variables configured for API keys (never hardcoded; use Secret Manager)

Instructions

  1. Analyze the requirements to determine target language, flow complexity (simple, multi-step, or RAG), model selection (Gemini 2.5 Flash vs Pro), and deployment target
  2. Initialize the project structure with appropriate config files (tsconfig.json, genkit.config.ts, or equivalent)
  3. Install Genkit core, provider plugins, and schema validation dependencies
  4. Define input/output schemas using Zod, Pydantic, or Go structs to enforce type safety at runtime
  5. Implement the Genkit flow using ai.defineFlow() with model configuration, temperature tuning, and token limits
  6. Add tool definitions using ai.defineTool() with scoped schemas for each external capability the flow requires
  7. For RAG flows: implement a retriever using ai.defineRetriever() with embedding generation (text-embedding-gecko) and vector database integration
  8. Configure error handling for safety blocks (SAFETY_BLOCK), quota exceeded (QUOTA_EXCEEDED), and provider timeouts
  9. Enable OpenTelemetry tracing with custom span attributes for cost and latency tracking
  10. Test locally using the Genkit Developer UI, then deploy to Firebase Functions or Cloud Run with auto-scaling configuration

See ${CLAUDE_SKILL_DIR}/references/how-it-works.md for the phased workflow and ${CLAUDE_SKILL_DIR}/references/production-best-practices-applied.md for the production checklist.

Output

  • Complete Genkit flow implementation with typed schemas and model bindings
  • Tool definitions with Zod/Pydantic-validated inputs and outputs
  • Retriever configuration for RAG flows (embeddings, vector search, context injection)
  • Deployment configuration: Firebase Functions (firebase.json) or Cloud Run service YAML
  • Monitoring setup: OpenTelemetry tracing, Firebase Console integration, alert policies
  • Cost optimization report: model selection rationale, token usage estimates, caching strategy

Error Handling

ErrorCauseSolution
SAFETY_BLOCK responseModel safety filters triggered on input or outputReview prompt content; adjust safety settings; add input sanitization before generation
QUOTA_EXCEEDEDAPI rate limit or daily token quota reachedImplement exponential backoff with jitter; request quota increase; cache repeated prompts
Schema validation failureRuntime input does not match Zod/Pydantic schemaAdd descriptive error messages to schema; validate inputs before calling ai.generate()
Retriever returns empty resultsVector database query found no matches above similarity thresholdLower similarity threshold; verify embeddings are indexed; check embedding model version match
Deployment timeoutCold start exceeds Firebase Functions 60s limitIncrease memory allocation; use Cloud Run for long-running flows; enable min instances > 0

See ${CLAUDE_SKILL_DIR}/references/errors.md for additional error scenarios.

Examples

Scenario 1: Question-Answering Flow -- Create a Genkit flow using Gemini 2.5 Flash with Zod input/output schemas. Set temperature to 0.3 for factual responses. Deploy to Firebase Functions with token usage monitoring. Expected latency: under 2 seconds per query.

Scenario 2: RAG Document Search -- Implement a retriever with text-embedding-gecko embeddings connected to Firestore vector search. Build a RAG flow that retrieves top-5 relevant documents, injects them as context, and generates grounded answers with source citations. Include context caching for repeated queries.

Scenario 3: Multi-Tool Agent -- Define weather and calendar tools with typed schemas. Create an agent flow that routes user queries to appropriate tools, handles multi-turn conversations, and traces each tool execution for debugging. Deploy to Cloud Run with auto-scaling (2-10 instances).

See ${CLAUDE_SKILL_DIR}/references/workflow-examples.md for complete code examples.

Resources

Prerequisites

Node.js, Python, or Go runtimeGenkit CLI and core packagesGoogle Cloud project with Vertex AI API enabledFirebase CLI

Limitations

  • Safety filters triggered on input or output
  • API rate limits or token quota exhaustion
  • Deployment timeouts on Firebase Functions

How it compares

This approach enforces runtime type safety through schema validation and provides built-in observability compared to manual API integration.

Compared to similar skills

genkit-production-expert side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
genkit-production-expert (this skill)026dReviewAdvanced
llm-application-dev34moReviewIntermediate
mcp-builder1363moReviewAdvanced
copilot-sdk74moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

You might also like

llm-application-dev

skillcreatorai

Building applications with Large Language Models - prompt engineering, RAG patterns, and LLM integration. Use for AI-powered features, chatbots, or LLM-based automation.

323

mcp-builder

anthropics

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

136215

copilot-sdk

github

Build agentic applications with GitHub Copilot SDK. Use when embedding AI agents in apps, creating custom tools, implementing streaming responses, managing sessions, connecting to MCP servers, or creating custom agents. Triggers on Copilot SDK, GitHub SDK, agentic app, embed Copilot, programmable agent, MCP server, custom agent.

763

langfuse

davila7

Expert in Langfuse - the open-source LLM observability platform. Covers tracing, prompt management, evaluation, datasets, and integration with LangChain, LlamaIndex, and OpenAI. Essential for debugging, monitoring, and improving LLM applications in production. Use when: langfuse, llm observability, llm tracing, prompt management, llm evaluation.

743

honcho-integration

plastic-labs

Integrate Honcho memory and social cognition into existing Python or TypeScript codebases. Use when adding Honcho SDK, setting up peers, configuring sessions, or implementing the dialectic chat endpoint for AI agents.

11

copilot-sdk

vivi3172

This skill provides guidance for creating agents and applications with the GitHub Copilot SDK. IMPORTANT - When using the SDK with TypeScript/Node.js, the project MUST use ESM (ECMAScript Modules). CommonJS (require/module.exports) is NOT supported. It should be used when the user wants to create, m

00

Search skills

Search the agent skills registry