Description
Comprehensive code review prompts that analyze your code for bugs, security issues, performance optimizations, and best practices. Supports multiple programming languages.
Preview
Example Input
Review this Python function: def get_user(id): return db.query("SELECT * FROM users WHERE id=" + id)
Example Output
## Code Review Results ### Critical Issues: 1. **SQL Injection Vulnerability** (Line 2) - Risk: High - The query uses string concatenation, allowing SQL injection attacks - Fix: Use parameterized queries ### Suggested Fix: ```python def get_user(id): return db.query("SELECT * FROM users WHERE id = ?", [id]) ```
Reviews (0)
No reviews yet
FREE with subscription
Learn More →- Instant download after purchase
- Lifetime access
- 30-day money-back guarantee
About the Seller
Marcus Johnson
Member since Aug 4, 2025
Full-stack developer turned prompt engineer. Expert in coding and technical prompts. Building AI-powered solutions since 2019.