561 prompts found
Analyze this [LANGUAGE] code for memory leaks: ``` [CODE] ``` Check: unreleased resources (file handles, connections, memory), circular references, event…
Analyze this concurrent code for race conditions: ``` [CODE] ``` Identify: shared mutable state, missing synchronization, deadlock potential, livelock, starvation,…
Decode this error message and provide a solution: Error: [ERROR MESSAGE] Stack trace: [STACK TRACE] Code context: [CODE SNIPPET] Language:…
Analyze this [LANGUAGE] code for bugs: ``` [CODE] ``` Identify: logic errors, off-by-one errors, null/undefined references, type mismatches, race conditions,…
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…