What problem does it solve? Backend engineers repeatedly write boilerplate route handlers, hunt for missing database indexes, and guess at API performance under load. This Skill automates API scaffolding from OpenAPI specs, schema analysis with migration generation, and load testing with latency percentile reporting. ## 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 detect missing indexes and N+1 query risks, then generate migration files with rollback support. - API Load Testing: Run concurrent HTTP load tests measuring P50/P95/P99 latency, throughput, and error rates, with endpoint comparison mode. - Use Case: When designing a new user service, feed your openapi.yaml to the scaffolder to generate routes and validators, analyze the database for missing indexes, then load test the endpoints before production release. ## Quick Start Ask the assistant to generate Express routes from your OpenAPI spec file and then load test the resulting endpoints with 50 concurrent requests.