# Code Review

> Perspectives and rules when conducting a code review

- Skill: `nazozokc/code-review` (Agent Skill)
- Install (CLI): `npx skillmds@latest add nazozokc/code-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/nazozokc/code-review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: nazozokc (https://skillmd.com/u/nazozokc)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/nazozokc/code-review

---


# Code Review Guidelines

## Related Skills

- For PR creation guidelines, see ../create-pr/SKILL.md
- For Git commit guidelines, see ../git-commit/SKILL.md

## Review Perspectives (by priority)

### 1. Security

- No hardcoded secrets (API keys, passwords)
- No risk of injection attacks
- No excessive permission grants

### 2. Performance

- No unnecessary loops or recursion
- No risk of memory leaks
- Proper handling of async operations

### 3. Maintainability

- No code duplication
- Are names clear and meaningful?
- No over-commenting or under-commenting
- Is function/component granularity appropriate?

### 4. Pattern Consistency

- Matches existing code style
- Follows project-specific conventions
- Tests are appropriate
- No duplicate roles

## Review Mindset

- **Be respectful**: Use suggestion form, not imperative form
- **Explain why**: Reasoning makes feedback easier to accept
- **Big picture**: Prioritize consistency over personal preference

