npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentsolutionsio/jeremy-genkit-pro

v2.1.2

Published

Firebase Genkit expert for production-ready AI workflows with RAG and tool calling

Downloads

213

Readme

Firebase Genkit Pro

Production-grade Firebase Genkit specialist with expert agents for AI flows, RAG systems, monitoring, and multi-language deployment across Node.js, Python, and Go.

Overview

Firebase Genkit Pro is a comprehensive Claude Code plugin providing expert guidance for building production-ready AI applications using Firebase Genkit 1.0+. This plugin includes specialized agents and auto-activating skills for the complete development lifecycle from initialization to production deployment.

What's Included

🤖 Specialized Agents

  • genkit-flow-architect: Expert in designing multi-step AI workflows, RAG systems, and tool calling patterns

📋 Slash Commands

  • /init-genkit-project: Initialize new Genkit projects with best practices for Node.js, Python, or Go

✨ Agent Skills (Auto-Activating)

  • genkit-production-expert: Automatically activates for Genkit-related tasks
    • Trigger phrases: "create genkit flow", "implement RAG", "deploy genkit", "gemini integration"
    • Allowed tools: Read, Write, Edit, Grep, Glob, Bash
    • Version: 1.0.0 (2026 schema compliant)

Latest Genkit Versions Supported

  • Node.js: 1.0 (Stable, Feb 2025)
  • Python: Alpha (April 2025)
  • Go: 1.0 (Stable, Sep 2025)

Features

✅ Multi-language support (TypeScript/JavaScript, Python, Go) ✅ RAG implementation with vector search ✅ Tool calling and function integration ✅ Gemini 2.5 Pro/Flash integration ✅ AI monitoring with Firebase Console ✅ Production deployment to Firebase Functions or Cloud Run ✅ OpenTelemetry tracing ✅ Cost optimization strategies ✅ Auto-activating skills with clear trigger phrases

Installation

/plugin install firebase-genkit-pro@claude-code-plugins-plus

Quick Start

Initialize a New Project

/init-genkit-project

Then follow the prompts to:

  1. Select your language (Node.js/Python/Go)
  2. Configure project structure
  3. Set up environment variables
  4. Install dependencies

Natural Language Usage

The skill auto-activates when you mention Genkit tasks:

"Create a Genkit flow for question answering with Gemini 2.5 Flash"
"Implement RAG with vector search for our documentation"
"Deploy this Genkit app to Firebase with AI monitoring enabled"
"Add tool calling to my Genkit agent for weather and calendar"

Architecture

Genkit Flow Pattern

const myFlow = ai.defineFlow(
  {
    name: 'myFlow',
    inputSchema: z.object({ input: z.string() }),
    outputSchema: z.object({ output: z.string() }),
  },
  async (input) => {
    const { text } = await ai.generate({
      model: gemini25Flash,
      prompt: `Process: ${input.input}`,
    });
    return { output: text };
  }
);

RAG Implementation

const ragFlow = ai.defineFlow(async (query) => {
  // 1. Retrieve relevant documents
  const docs = await retrieve({
    retriever: myRetriever,
    query,
    config: { k: 5 },
  });

  // 2. Generate answer with context
  const { text } = await ai.generate({
    model: gemini25Flash,
    prompt: `Context: ${docs}\n\nQuestion: ${query}`,
  });

  return text;
});

Use Cases

  • Customer Support: RAG-based Q&A systems
  • Content Generation: Multi-step content workflows
  • Data Processing: Extract, transform, and analyze with AI
  • Agent Systems: Tool-calling agents for complex tasks
  • Search Enhancement: Semantic search with embeddings

Integration with Other Plugins

Works with ADK Plugin

For complex multi-agent orchestration:

  • Use Genkit for specialized AI flows
  • Use ADK for orchestrating multiple flows
  • Communication via A2A protocol

Works with Vertex AI Validator

For production deployment:

  • Genkit implements the flows
  • Validator ensures production readiness
  • Validates monitoring and security

Best Practices

  1. Always use typed schemas (Zod/Pydantic/structs)
  2. Enable AI monitoring for production deployments
  3. Implement error handling for all flows
  4. Use context caching for repeated prompts
  5. Monitor token usage to control costs
  6. Test locally with Genkit Developer UI
  7. Version control flow definitions

Monitoring & Debugging

Access Genkit Developer UI during development:

npm run genkit:dev
# Opens http://localhost:4000

View production monitoring in Firebase Console:

  • Token consumption
  • Latency metrics
  • Error rates
  • Custom traces

Production Deployment

Firebase Functions

firebase deploy --only functions

Google Cloud Run

gcloud run deploy genkit-app \
  --source . \
  --region us-central1 \
  --allow-unauthenticated

Requirements

  • Node.js 18+ (for TypeScript/JavaScript)
  • Python 3.9+ (for Python)
  • Go 1.21+ (for Go)
  • Google Cloud Project
  • Firebase account (for Firebase deployment)
  • Google API Key or Vertex AI credentials

License

MIT

Support

  • Documentation: https://genkit.dev/
  • Issues: https://github.com/jeremylongshore/claude-code-plugins/issues
  • Discussions: https://github.com/jeremylongshore/claude-code-plugins/discussions

Version

2.1.0 (2026) - Accuracy audit: expanded error docs, fixed repo references, added effort metadata