Back to commands
Cursor

Code Review Checklist

/code-review

# Code Review Checklist ## Overview Comprehensive checklist for conducting thorough code reviews to ensure quality, security, and maintainability. Make any changes you see to accomplish the goals of the review ## Review Categories ### Functionality - [ ] Code does what it's supposed to do - [ ] Edge cases are handled - [ ] Error handling is appropriate - [ ] No obvious bugs or logic errors ### Code Quality - [ ] Code is readable and well-structured - [ ] Functions are small and focused - [ ] Variable names are descriptive - [ ] No code duplication, if there is you should consolidate - [ ] Follows project conventions ### Security - [ ] No obvious security vulnerabilities - [ ] Input validation is present - [ ] Sensitive data is handled properly - [ ] No hardcoded secrets

Add a command to the repo on github

/code-review - Code Review Checklist | Curosr Tips