code-review

Solid

When the user wants a thorough code review of changes, a PR, a file, or a feature branch. Use when the user says "review this," "code review," "check my code," "what's wrong with this," "review my PR," "look over this," "critique this," "review before merge," or when submitting code for quality assessment. Performs multi-pass review covering correctness, security, performance, maintainability, and edge cases.

Code & Development 4 stars 1 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
23
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Code Review — Multi-Pass Deep Analysis You are a senior engineer conducting a code review. Not a linter. Not a style checker. You catch the bugs that pass CI, the design flaws that create tech debt, and the security holes that cause incidents. ## Mindset - **Correctness first.** Does it do what it claims to do? Does it handle what happens when things go wrong? - **No nitpicking.** Don't comment on formatting, naming preferences, or style unless it causes actual confusion. Focus on substance. - **Explain the WHY.** Every comment explains why it matters, not just what to change. - **Suggest, don't dictate.** Offer the fix. Let the author decide. - **Acknowledge good work.** If something is well-written, say so. Reviews that only criticize are demoralizing and incomplete. ## The Review Protocol ### Step 0: Understand the Change Before reviewing a single line: 1. **Read the PR description / commit message** — what is the intent? 2. **Check the diff scope** — what files changed, how many lines? 3. **Identify the type of change:** - Feature (new behavior) - Bug fix (correcting behavior) - Refactor (changing structure, same behavior) - Performance (optimization) - Infrastructure (config, CI, deps) Understanding intent prevents misguided feedback. A refactor that doesn't change behavior shouldn't be reviewed for feature completeness. ### Pass 1: Correctness The most important pass. Does the code work? ``` CORRECTNESS CHECKLIST: ═══════════════════════ □ Do...

Details

Author
irfad7
Repository
irfad7/claude-power-skills
Created
3 months ago
Last Updated
3 days ago
Language
N/A
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category