561 prompts found
Write an Architecture Decision Record (ADR) for: [DECISION TOPIC]. Use the ADR template: Title, Status (Proposed/Accepted/Deprecated), Context (problem + constraints),…
Add meaningful inline comments to this [LANGUAGE] code: ``` [CODE] ``` Rules: explain WHY, not WHAT. Comment complex logic, business…
Generate complete API documentation for [API DESCRIPTION]. Include: overview, authentication guide (with examples), rate limiting, pagination, error codes table, endpoint…
Generate a comprehensive README.md for [PROJECT NAME]. Description: [DESCRIPTION]. Include: project title + badges, brief description, features list, tech stack,…
Debug this failing test: Test name: [TEST NAME] Assertion: [ASSERTION] Expected: [EXPECTED] Actual: [ACTUAL] Test code: ``` [TEST CODE] ```…
Debug this production incident: Symptom: [DESCRIPTION] Timeline: [EVENTS] Metrics: [CPU/MEMORY/LATENCY] Recent changes: [DEPLOYMENTS] Error logs: [LOGS] Perform: 1) Impact assessment,…
Debug this CSS layout issue: Problem: [DESCRIPTION] HTML: ``` [HTML] ``` CSS: ``` [CSS] ``` Analyze: box model issues, flexbox/grid…
Debug this API 500 error: Endpoint: [ENDPOINT] Request: [REQUEST DETAILS] Response: [ERROR RESPONSE] Stack trace: [TRACE] Server logs: [LOG SNIPPET]…
Debug this slow database query: ```sql [QUERY] ``` Table sizes: [SIZES]. Indexes: [INDEXES]. Execution plan: [EXPLAIN OUTPUT]. Analyze: full table…
Debug this JavaScript issue: Symptom: [DESCRIPTION] Code: ``` [CODE] ``` Analyze: scope issues, hoisting, 'this' binding, async/await misuse, event loop…