What problem does it solve? Building production-grade Fastify applications requires correct use of plugins, hooks, schemas, authentication, and deployment patterns, and mistakes in any of these lead to security holes, poor performance, or broken encapsulation. ## Core Features & Use Cases - Structured rule references: Nineteen topic files covering plugins, routes, JSON Schema validation, error handling, hooks, authentication, testing, performance, logging, TypeScript, decorators, content types, serialization, CORS/security, WebSockets, databases, configuration, deployment, and HTTP proxying. - Scenario-based reading paths: Recommended reading orders for common goals such as adding authentication, improving performance, setting up testing, and going to production. - Use Case: When implementing JWT authentication in a Fastify API, consult the authentication rules to set up @fastify/jwt, refresh token rotation, role-based access control, and Redis-backed rate limiting on auth endpoints. ## Quick Start Ask the assistant to help you build a Fastify route with schema validation and JWT authentication following best practices.