code-reviewer
✓Reviews pull requests and code changes for quality, security, and best practices. Use when user asks for code review, PR review, or mentions reviewing changes.
Installation
SKILL.md
A comprehensive code review skill that analyzes pull requests and code changes for quality, security, maintainability, and best practices.
| Hardcoded secrets | const APIKEY = "sk-" | Use environment variables | | SQL injection | \"SELECT FROM...\" + userinput | Use parameterized queries | | XSS vulnerability | innerHTML = userinput | Sanitize or use textContent | | Missing auth check | New endpoint without @RequireAuth | Add authentication middleware |
| N+1 query | Loop with database call | Use eager loading or batch queries | | Unnecessary re-render | Missing dependencies in useEffect | Fix dependency array | | Memory leak | Event listener not removed | Add cleanup in useEffect return | | Inefficient loop | Nested loops O(n²) | Consider hash map or different algorithm |
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/charon-fan/agent-playbook --skill code-reviewer- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is code-reviewer?
Reviews pull requests and code changes for quality, security, and best practices. Use when user asks for code review, PR review, or mentions reviewing changes. Source: charon-fan/agent-playbook.
How do I install code-reviewer?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/charon-fan/agent-playbook --skill code-reviewer Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code or Cursor
Where is the source repository?
https://github.com/charon-fan/agent-playbook
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01