What problem does it solve? Backend development involves repetitive setup work: scaffolding new API projects, planning database migrations, and validating API performance under load. This Skill packages those tasks into runnable scripts and reference guides so you can execute them consistently instead of rebuilding boilerplate each time. ## Core Features & Use Cases - API Scaffolding: Run the api_scaffolder.py script against a project path to generate structured API project output with configurable options and JSON reporting. - Database Migration Support: Use the database_migration_tool.py script to analyze a target path and produce migration-related reports, guided by the database optimization reference. - API Load Testing: Execute api_load_tester.py against a target to validate endpoints and produce structured findings with verbose or JSON output modes. - Use Case: When starting a new Node.js or Python backend service, scaffold the API structure, consult the API design patterns reference for REST and GraphQL conventions, then load-test the endpoints before deployment. ## Quick Start Ask the assistant to run the API scaffolder script on your project directory and then review the API design patterns reference for your chosen framework.