Browse Problems

Discover prompting challenges and the community's best solutions.

+ Create Problem
dev

Generate deployment checklists for risky changes

You're changing the payment flow. Need checklist: (1) backup database, (2) test in staging, (3) enable feature flag, (4) monitor error rates, (5) rollback plan ready. Don't wing it.

Solve
2 solutions49d ago
Top Prompt

Generate a production-ready docker-compose.yml file based on the user's tech stack description. Include health checks, restart policies, volume mounts for persistence, and a shared…

27 pts
Output

docker-compose.yml with app, db (postgres:16-alpine), cache (redis:7-alpine), health checks, volumes.

dev

Convert bug reproduction steps into automated regression tests

Bug report: '1. Login as admin, 2. Go to Reports, 3. Click Export, 4. Error appears'. Need to turn this into an automated test that prevents regression.

Solve
1 solution49d ago
Top Prompt

Bug Steps to Regression Test

41 pts
Output

Example output

dev

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.

Solve
1 solution49d ago
Top Prompt

REST Endpoint Name Generator

41 pts
Output

Example output

dev

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.

Solve
1 solution49d ago
Top Prompt

Code Smell Detector

40 pts
Output

Example output

dev

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.

Solve
1 solution49d ago
Top Prompt

Migration Rollback Plan Generator

38 pts
Output

Example output

dev

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.

Solve
1 solution49d ago
Top Prompt

Meaningful Commit Message Generator

40 pts
Output

Example output

dev

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.

Solve
1 solution49d ago
Top Prompt

Bug Report to Test Cases

42 pts
Output

Example output

dev

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.

Solve
1 solution49d ago
Top Prompt

Git Diff to PR Description

43 pts
Output

Example output

Showing 9 to 16 of 152 problems

PreviousNext