What problem does it solve? Writing new API endpoints by hand is repetitive and error-prone: you must match existing routing conventions, middleware chains, auth checks, validation, and response formats. This Skill automates that scaffolding so new endpoints stay consistent with the codebase. ## Core Features & Use Cases - Framework-aware generation: Detects and follows conventions for Express/Fastify, FastAPI/Flask, Gin/Echo, Spring Boot, NestJS, and GraphQL. - Complete endpoint scaffolding: Creates route definitions, handler/controller functions with input validation, error handling, auth checks, and type definitions (DTOs, schemas). - Safe conflict handling: Appends to existing route files, creates alongside conflicts, and asks for confirmation before overwriting. - Use Case: You need CRUD endpoints for a new orders resource in a FastAPI project. The Skill analyzes existing routers and Pydantic models, then generates matching routes, handlers, and schemas under the current /api/v1 version. ## Quick Start Generate REST CRUD endpoints for a new orders resource following the existing patterns in this project.