What problem does it solve? It removes guesswork when building Node.js REST APIs by providing concrete conventions for URL design, HTTP status codes, Fastify route plugin structure, and request validation, so teams avoid inconsistent endpoints and misplaced business logic. ## Core Features & Use Cases - REST URL and status code conventions: Plural-noun resource paths, nested routes, and a complete mapping of actions to correct HTTP status codes. - Thin-route Fastify architecture: A three-file module pattern (module/controller/route) that keeps handlers free of business logic and wires dependencies in a composition root. - Zod validation preHandlers: Reusable validateBody, validateQuery, and validateParams hooks that parse and coerce input at the API boundary. - Use Case: When adding a new orders endpoint to a Fastify app, follow the skill to register the module with the correct prefix, apply auth and validation hooks in the right order, and return consistent { data } or { error } responses. ## Quick Start Ask the AI to design a new Fastify REST endpoint for a resource, including the route plugin structure, Zod validation schemas, and correct HTTP status codes.