Browse Problems
151 problems found
Write refund emails that prevent chargeback escalation
Customer requests refund. If you just say 'Refund processed', they might still file a chargeback. Need emails that: (1) confirm refund, (2) explain timeline, (3) ask them NOT to file chargeback, (4) stay friendly.
Generate product descriptions that highlight benefits, not features
Feature: 'Real-time sync'. Benefit: 'Your team always sees the latest data, no refresh needed'. Need prompts that convert feature lists into benefit-driven copy that answers: 'So what?'
Adapt blog posts for Twitter threads without losing the key points
You wrote a 1,500-word blog post. Need to turn it into a 10-tweet thread that: (1) hooks in tweet 1, (2) covers key points, (3) ends with CTA, (4) doesn't feel like a summary.
Generate changelog entries from Git commits that users actually care about
Git commits: 'fix typo', 'refactor utils', 'update deps'. Users don't care. Need changelog: 'Fixed: Export button now works in Safari', 'Improved: Reports load 2x faster'. Focus on user impact, not code changes.
Rewrite technical error messages for end users without losing accuracy
Error: 'PostgreSQL connection pool exhausted'. User sees: 'Our database is temporarily busy. Try again in 30 seconds.' Need to translate technical errors into user-friendly language without lying.
Generate SEO meta descriptions that include target keywords naturally
Need meta descriptions for SaaS landing pages that: (1) include target keyword, (2) stay under 160 chars, (3) don't sound keyword-stuffed, (4) include a call-to-action. Generic descriptions don't rank.
Parse and validate complex JSON schemas with helpful error messages
API expects nested JSON with 20 fields. User sends invalid data. Need validation that says: 'Field "items[2].price" must be number, got string "free"' - not just 'Invalid JSON'.
Generate retry logic with exponential backoff for flaky APIs
Third-party API fails randomly. Need retry logic: 1st retry after 1s, 2nd after 2s, 3rd after 4s, then give up. Include: max retries, timeout, which errors to retry, which to fail immediately.
Detect breaking changes in API responses before deploying
You changed the API response structure. Will it break existing clients? Need to compare old vs new response schemas and flag: 'Removed field "user.email" - BREAKING CHANGE'.
Generate OpenAPI specs from existing API code automatically
You built an API without docs. Now you need OpenAPI/Swagger specs. Need to scan the code and generate: endpoints, parameters, request/response schemas, auth requirements.