Browse Problems
151 problems found
Generate API endpoint names that follow REST conventions
You want to add 'get user's active subscriptions'. Need endpoint name that follows REST: GET /users/:id/subscriptions?status=active. Not: GET /getUserActiveSubscriptions.
Detect code smells in PRs before they become technical debt
PR adds 300-line function, hardcodes API keys, uses nested loops. Need automated review that flags: 'Function too long', 'Hardcoded secret', 'O(n²) complexity'. Catch issues before merge.
Generate database migration rollback plans before deploying
You're adding a column. Migration fails in production. Need rollback plan: (1) what to run, (2) what data to backup first, (3) what to verify after. Don't figure this out during an outage.
Write commit messages that explain WHY, not just WHAT
Bad commit: 'Update user model'. Good commit: 'Add email verification to user model to prevent fake signups'. Need prompts that generate commits explaining the motivation, not just the change.
Generate test cases from bug reports automatically
Bug report: 'Export fails when date range spans multiple years'. Need test cases: (1) single year, (2) span 2 years, (3) span 3+ years, (4) leap year boundary, (5) timezone edge cases.
Generate PR descriptions from Git diffs that reviewers can actually understand
Git diff shows 500 lines changed. Reviewer needs: 'What changed?', 'Why?', 'What to test?'. Need prompts that analyze diffs and generate: summary, motivation, testing steps, breaking changes.
Rewrite technical documentation for non-technical users
Docs say: 'Configure the webhook endpoint to receive POST requests with HMAC-SHA256 signatures'. User needs: 'Copy this URL into your Stripe dashboard under Webhooks'.
Generate onboarding email sequences that reduce time-to-value
User signs up. Day 1: welcome + quick win. Day 3: key feature. Day 7: advanced tip. Need sequences that get users to 'aha moment' fast, not generic 'Here's what we do' emails.
Summarize privacy policies into plain-language bullet points
Privacy policy is 5,000 words of legal text. Users need: 'We collect your email and usage data. We don't sell it. We use it to improve the product.' 5 bullets max.
Generate help article titles that match how users actually search
You write: 'Configuring OAuth 2.0 Authentication'. Users search: 'How do I connect my Google account'. Need titles that match user language, not technical jargon.