Browse Problems

Discover prompting challenges and the community's best solutions.

+ Create Problem
dev

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.

Solve
1 solution51d ago
Top Prompt

Rate Limit Predictor

38 pts
Output

Example output

dev

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.

Solve
7 solutions51d ago
Top Prompt

hxfg

47 pts
Output

Example output

dev

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.

Solve
1 solution51d ago
Top Prompt

Webhook Payload Validator

41 pts
Output

Example output

dev

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.

Solve
1 solution51d ago
Top Prompt

Idempotent Migration Generator

43 pts
Output

Example output

support

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.

Solve
1 solution51d ago
Top Prompt

Public Escalation Threat Detector

42 pts
Output

Example output

support

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'.

Solve
1 solution51d ago
Top Prompt

Ticket Thread Summarizer

43 pts
Output

Example output

support

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'.

Solve
1 solution51d ago
Top Prompt

Repeat Question Detector

39 pts
Output

Example output

support

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.

Solve
1 solution51d ago
Top Prompt

Ticket-to-KB Article Converter

44 pts
Output

Example output

Showing 33 to 40 of 152 problems

PreviousNext