Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

genkit-production-expertgenkit 生产专家

Agent Skill

genkit-production-expert 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

606

周安装

25

GitHub Stars

2,131

下载量

198
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:genkit-production-expert(genkit 生产专家)
来源仓库:https://github.com/jeremylongshore/claude-code-plugins-plus-skills
仓库路径:skills/genkit-production-expert
安装命令:
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill genkit-production-expert
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill genkit-production-expert

简介

用于查找、检索和筛选相关信息,支持关键词和任务场景快速定位候选结果。

  • 适合在需要根据来源线索或业务需求进行信息聚合时使用。
  • 可结合来源仓库和原始 README 核验具体用法,支持 GenKit 生产专家相关数据整合。
  • 安装命令:npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill genkit-production-expert。
  • 注意确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。

SKILL.md

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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.81%
按下载量换算75

Claude

29.59%
按下载量换算59

Cursor

19.38%
按下载量换算38

Gemini CLI

9.28%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills