10 prompts found
Generate a complete CRUD application for [ENTITY] using [FRAMEWORK]. Include: model/schema definition, migration files, controller with all CRUD operations, route…
Write git hooks for [PROJECT TYPE]: pre-commit (linting, formatting check), commit-msg (conventional commit format validation), pre-push (run tests, build check),…
Create a regular expression for [PATTERN DESCRIPTION]. Provide: the regex, a breakdown explanation of each component, 5 matching examples, 5…
Create a docker-compose.yml for [PROJECT TYPE] with: [SERVICES NEEDED]. Include: version specification, service definitions with build context, environment variables, volumes,…
Generate CSS for [LAYOUT DESCRIPTION]. Requirements: mobile-first approach, CSS custom properties for theming, Grid or Flexbox (justify choice), responsive breakpoints…
Write a bash script that [AUTOMATION TASK]. Requirements: shebang line, set strict mode (set -euo pipefail), variable definitions with defaults,…
Generate a REST API endpoint for [RESOURCE] with [OPERATION]. Include: route definition, HTTP method, request validation (parameters/body), authentication/authorization middleware, controller…
Write a SQL query to [DESCRIPTION]. Database schema: [TABLES AND COLUMNS]. Requirements: use CTEs for readability, proper JOIN types, aggregate…
Create a React component with TypeScript for [COMPONENT DESCRIPTION]. Include: interface for props, functional component with hooks, styled with [CSS…
Write a Python function that [DESCRIPTION]. Requirements: type hints for all parameters and return value, docstring with Args/Returns/Raises/Examples sections, input…