What problem does it solve? Backend development involves repetitive scaffolding of API routes, manual database schema analysis, and ad-hoc performance testing. This Skill automates route generation from OpenAPI specs, detects missing indexes and N+1 query risks in PostgreSQL, and measures API latency under load, while providing security hardening patterns based on OWASP Top 10. ## Core Features & Use Cases - API Scaffolding: Generate Express/Fastify/Koa route handlers, Zod validation middleware, and TypeScript types directly from an OpenAPI specification. - Database Migration & Optimization: Analyze PostgreSQL schemas to find missing indexes and N+1 query risks, then generate migration files with rollback support and dry-run capability. - API Load Testing: Run concurrent HTTP load tests measuring latency percentiles (P50/P95/P99), throughput, and error rates, with endpoint comparison mode. - Use Case: When building a new user service, define the API in an OpenAPI YAML file, scaffold all routes and validators, analyze the database for missing indexes, then load test the endpoints to verify P95 latency stays under 200ms before deployment. ## Quick Start Ask the assistant to scaffold Express routes from your openapi.yaml spec, then analyze your PostgreSQL database for missing indexes and load test the resulting endpoints.