
Code Review
- 1 installs
- 27 repo stars
- Updated April 25, 2026
- girijashankarj/cursor-handbook
Structured code-review workflow covering context, high-level assessment, and a security review checklist for secrets, input validation, and authorization.
About
Provides a structured code-review workflow spanning context understanding, high-level assessment, and security checks. A developer uses it to review code, a PR, or specific files thoroughly.
- High-level review checks goal fit, approach, and architecture conformance
- Security pass covers secrets, PII, input validation, and parameterized queries
Code Review by the numbers
- 1 all-time installs (skills.sh)
- Ranked #984 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
- Data as of Jul 22, 2026 (Skillselion catalog sync)
npx skills add https://github.com/girijashankarj/cursor-handbook --skill code-reviewAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 27 |
| Last updated | April 25, 2026 |
| Repository | girijashankarj/cursor-handbook ↗ |
What it does
Structured code-review workflow covering context, high-level assessment, and a security review checklist for secrets, input validation, and authorization.
Files
Skill: Code Review Workflow
Trigger
When the user asks to review code, a PR, or specific files.
Steps
Step 1: Understand Context
- [ ] Read the PR description or user's explanation
- [ ] Identify the type of change (feature, bug fix, refactor, test)
- [ ] Check which files are modified
Step 2: High-Level Review
- [ ] Does the change accomplish its stated goal?
- [ ] Is the approach appropriate for the problem?
- [ ] Are there simpler alternatives?
- [ ] Does it follow project architecture patterns?
Step 3: Security Review
- [ ] No hardcoded secrets or credentials
- [ ] No PII in logs or error messages
- [ ] Input validation on all external inputs
- [ ] Parameterized database queries
- [ ] Proper authentication/authorization checks
- [ ] No sensitive data in URLs or headers
Step 4: Code Quality Review
- [ ] Functions are single-responsibility and < 30 lines
- [ ] Naming is clear and consistent
- [ ] No code duplication
- [ ] Error handling is comprehensive
- [ ] Logging includes correlationId
- [ ] Import order follows conventions
Step 5: Testing Review
- [ ] Tests exist for new/changed code
- [ ] Success and error paths tested
- [ ] Edge cases covered
- [ ] Mocks are appropriate (not over-mocking)
- [ ] Test names are descriptive
Step 6: Performance Review
- [ ] No N+1 database queries
- [ ] Appropriate use of indexes
- [ ] No unnecessary data loading
- [ ] Caching where appropriate
- [ ] No memory leaks
Step 7: Provide Feedback
Use this format:
- 🔴 Critical: Must fix before merge
- 🟡 Suggestion: Should improve
- 🟢 Nitpick: Optional improvement
- 👍 Positive: Things done well
Completion
Review is complete with actionable feedback categorized by priority.