Browse Problems
151 problems found
Convert Postman collections to integration tests automatically
You have 50 API requests in Postman. Need to turn them into automated tests with assertions: 'POST /users should return 201', 'GET /users/:id should include email field', etc.
Generate API error messages that developers can actually debug
Generic 'Invalid request' doesn't help. Need: 'Field "email" is required but missing' or 'Amount must be positive integer, got -500'. Error messages should tell developers exactly what to fix.
Detect API rate limit patterns before hitting the limit
Stripe allows 100 requests/second. You're at 87/second and climbing. Need to predict: 'At current rate, you'll hit the limit in 3 minutes' and throttle proactively.
Generate SQL queries from natural language that won't cause N+1 problems
User asks: 'Show me all customers and their orders'. Naive query causes N+1. Need prompts that generate: proper JOINs, eager loading, and explain the performance implications.
Validate webhook payloads before processing to prevent bad data
Stripe sends a webhook. Before processing, need to verify: signature is valid, required fields exist, amounts are reasonable, timestamp is recent. One bad webhook can corrupt your database.
Generate idempotent database migrations that won't break on retry
Migration fails halfway through. Need to re-run it without creating duplicate columns or breaking existing data. Need prompts that generate: 'IF NOT EXISTS' checks, rollback logic, and safe retry patterns.
Flag tickets where the customer is about to escalate publicly
Customer says 'If this isn't fixed by tomorrow, I'm posting on Twitter'. That's a red flag. Need to detect escalation threats and route to senior support immediately.
Summarize long ticket threads for handoffs between support agents
Ticket has 15 messages over 3 days. New agent needs to get up to speed in 30 seconds. Need summary: 'Customer can't export reports. Tried X, Y, Z. Still broken. Waiting on engineering to check database'.
Detect when customers are asking the same question repeatedly
Customer asked about API rate limits 3 times in 2 weeks. Either they didn't understand the answer, or the docs are unclear. Need to flag: 'This customer keeps asking about X - escalate or improve docs'.
Generate knowledge base articles from resolved ticket threads
Support agent solved a tricky issue over 8 messages. Now turn that thread into a KB article: clear problem statement, step-by-step solution, no back-and-forth confusion.