| name | code-review |
| description | Review code for quality, bugs, security, and improvements. Use when self-reviewing before commit, reviewing PRs, or debugging issues. |
Code Review
Systematically review code for quality, bugs, and security.
Checklist
| Priority | Check |
|---|
| 🔴 Critical | Security (no secrets, injection) |
| 🔴 Critical | Correctness (logic, edge cases) |
| 🟡 Important | Performance (N+1, loops) |
| 🟡 Important | Error handling |
| 🟢 Nice-to-have | Readability, DRY, style |
Process
- Context - Read requirement/design
- High-level - Architecture check
- Line-by-line - Detailed inspection
- Tests - Check coverage
- Document - Summarize findings
Output Format
## Code Review: [Name]
### Summary
[Approved / Changes Requested]
### Issues
- 🔴 [file:line] Problem → Suggestion
- 🟡 [file:line] Problem → Suggestion
### Good Patterns 👍
- [What was done well]
Common Issues
password = "hardcoded"
password = os.environ["PASS"]
f"SELECT * WHERE id={id}"
"SELECT * WHERE id=%s", (id,)
Tips
- Be constructive
- Explain the "why"
- Acknowledge good patterns