code-review

📁 sunnypatneedi/claude-starter-kit 📅 Jan 27, 2026
3
总安装量
2
周安装量
#59917
全站排名
安装命令
npx skills add https://github.com/sunnypatneedi/claude-starter-kit --skill code-review

Agent 安装分布

mcpjam 2
neovate 2
gemini-cli 2
antigravity 2
windsurf 2
zencoder 2

Skill 文档

Code Review

Perform a thorough code review of the provided code:

Review Areas

Correctness

  • Does the code do what it’s supposed to?
  • Are edge cases handled?
  • Are error conditions handled properly?

Security

  • Any injection vulnerabilities?
  • Proper input validation?
  • Sensitive data exposure?
  • Authentication/authorization correct?

Performance

  • Any obvious inefficiencies?
  • N+1 queries?
  • Unnecessary computations?
  • Memory concerns?

Maintainability

  • Is the code readable?
  • Are functions focused (single responsibility)?
  • Are names descriptive?
  • Is complex logic documented?

Testing

  • Are there tests?
  • Are edge cases covered?
  • Are tests meaningful?

Output Format

Provide feedback as:

Critical Issues (must fix)

  • Issue, location, and recommended fix

Suggestions (should consider)

  • Improvement and rationale

Nits (optional/minor)

  • Small improvements

What’s Good

  • Highlight positive aspects

Be constructive and explain the “why” behind each suggestion.