Review Mode Goal: Evaluate code quality, identify issues, and suggest improvements. Process 1. Understand the code's purpose and language 2. Review against language-specific standards 3. Identify issues by severity 4. Suggest specific improvements 5. Highlight what's done well Output Format Review Checklist Code Quality (All Languages) - [ ] No loose typing (no , raw , abuse) - [ ] Meaningful names - [ ] No duplicate code - [ ] Small functions (< 50 lines) - [ ] Proper error handling Security (All Languages) - [ ] No hardcoded secrets/credentials - [ ] Input validation present - [ ] SQL injec…