Prompts for code generation, debugging, code review, technical documentation, and API design.
50 prompts found
Analyze this codebase description for technical debt: [CODEBASE DESCRIPTION/KEY FILES] Assess: code duplication, outdated dependencies, missing tests, documentation gaps, architectural…
Write a pull request description for: [CHANGE SUMMARY]. Include: Summary (what and why), Changes (bulleted list), Testing (how to test…
Generate a comprehensive code review checklist for [LANGUAGE/FRAMEWORK] projects. Organize by category: Architecture, Code Style, Security, Performance, Testing, Documentation, Error…
Review this [HTML/COMPONENT] code for WCAG 2.1 AA compliance: ``` [CODE] ``` Check: semantic HTML, ARIA usage, keyboard navigation, focus…
Review this API design: ``` [OPENAPI/SWAGGER SPEC] ``` Evaluate: REST compliance (resource naming, HTTP methods, status codes), versioning strategy, pagination,…
Review this database schema for [PURPOSE]: ``` [DDL/SCHEMA] ``` Evaluate: normalization level (1NF-3NF/BCNF), index strategy, foreign key constraints, data types…
Review this React component for: ```tsx [CODE] ``` Check: component design (single responsibility), hooks usage correctness (dependency arrays, custom hooks),…
Analyze this [LANGUAGE] code for performance issues: ``` [CODE] ``` Evaluate: time complexity (Big-O), space complexity, database query efficiency, N+1…
Perform a security review of this [LANGUAGE] code: ``` [CODE] ``` Check for: OWASP Top 10 vulnerabilities (injection, broken auth,…
Review the following [LANGUAGE] code for best practices: ```[LANGUAGE] [CODE] ``` Analyze: 1) Code style and formatting, 2) Naming conventions,…