CO

Code Review Standards

Review practices for human and AI-generated code with security focus

Details

Language / Topic
_UUniversal
Category
Git Workflow

Rules

balanced
- Review behavior, not just syntax — verify logic correctness, edge cases, and error handling.
- Provide specific, actionable feedback — suggest fixes, not just point out problems.
- Focus reviews on logic, edge cases, and security — don't nitpick style if you have automated formatters and linters.
- Review AI-generated code with the same (or higher) scrutiny as human-written code.
- Check for security anti-patterns: SQL injection, XSS, hardcoded secrets, missing auth checks.
- Verify test coverage for new code — reject PRs that add functionality without tests.