What problem does it solve? Genkit v1.x introduced breaking API changes that make older code patterns and internal knowledge unreliable, causing validation errors, type errors, and deprecated API failures when building AI-powered Node.js/TypeScript applications. ## Core Features & Use Cases - Guided Genkit Development: Set up Genkit projects, define flows with Zod schemas, and configure provider plugins such as Google AI, OpenAI, or Anthropic. - Error Troubleshooting Protocol: Diagnose ValidationErrors, type errors, and migration issues using a documented catalog of deprecated APIs and their v1.x replacements. - CLI-Driven Documentation: Search and read authoritative Genkit docs via genkit docs:search and genkit docs:read instead of relying on outdated knowledge. - Use Case: When a response.text() call throws a type error after upgrading Genkit, consult the common errors reference to find the v1.x property-access pattern and apply the documented fix. ## Quick Start Ask the assistant to create a Genkit flow in TypeScript that generates a joke using the Gemini model, and have it verify the result with a type check.