code-review
✓Perform thorough code reviews focusing on security, performance, best practices, and maintainability. Use when reviewing PRs, checking code quality, or auditing existing code.
Installation
SKILL.md
Systematic code review methodology for identifying issues, security vulnerabilities, and optimization opportunities.
\\\`javascript // BAD: No validation app.post('/user', (req, res) => { db.query(\SELECT FROM users WHERE id = \${req.body.id}\); });
// GOOD: Parameterized + validated app.post('/user', (req, res) => { const schema = z.object({ id: z.number().positive() }); const { id } = schema.parse(req.body); db.query('SELECT FROM users WHERE id = ?', [id]); }); \\\`
Perform thorough code reviews focusing on security, performance, best practices, and maintainability. Use when reviewing PRs, checking code quality, or auditing existing code. Source: vapvarun/claude-backup.
Facts (cite-ready)
Stable fields and commands for AI/search citations.
- Install command
npx skills add https://github.com/vapvarun/claude-backup --skill code-review- Source
- vapvarun/claude-backup
- Category
- </>Dev Tools
- Verified
- ✓
- First Seen
- 2026-02-01
- Updated
- 2026-02-18
Quick answers
What is code-review?
Perform thorough code reviews focusing on security, performance, best practices, and maintainability. Use when reviewing PRs, checking code quality, or auditing existing code. Source: vapvarun/claude-backup.
How do I install code-review?
Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/vapvarun/claude-backup --skill code-review 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/vapvarun/claude-backup
Details
- Category
- </>Dev Tools
- Source
- skills.sh
- First Seen
- 2026-02-01