claude-code-review

Featured

Use when asked to review a PR, or when /review is invoked with a PR number or URL. Performs a focused code review checking for bugs, security, performance, and test gaps, then posts findings as a PR comment and formal GitHub review.

Code & Development 456 stars 26 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 91/100

Stars 20%
89
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Claude Code Review Review a pull request for critical issues and post findings to GitHub. ## Invocation ``` /claude-code-review <PR number or URL> ``` ## Process ```dot digraph code_review { rankdir=TB; node [shape=box, style=filled, fillcolor=lightblue]; parse [label="1. PARSE INPUT\nExtract PR number\nfrom arg or URL", fillcolor="#e6f3ff"]; details [label="2. GET PR DETAILS\nBranch, draft status,\nchanged files", fillcolor="#e6f3ff"]; draft [label="Draft PR?", shape=diamond, fillcolor="#fff3e6"]; skip [label="Skip — inform user", fillcolor="#ffcccc"]; prior [label="3. CHECK PRIOR REVIEW\nFind existing claude[bot]\ncomment", fillcolor="#ccccff"]; checkout [label="4. CHECKOUT\nSwitch to PR branch\nfetch latest", fillcolor="#e6ffe6"]; diff [label="5. REVIEW DIFF\nRead changed files\nAnalyze diff vs base", fillcolor="#ccffcc"]; verify [label="6. VERIFY\nRun tests, lint,\ntype checks", fillcolor="#ccccff"]; write [label="7. WRITE REVIEW\nCritical issues only\nMarkdown format", fillcolor="#ffe6f3"]; post [label="8. POST COMMENT\nUpdate or create\nPR comment", fillcolor="#f3e6ff"]; approve [label="9. FORMAL REVIEW\nApprove or\nrequest changes", fillcolor=lightgreen]; parse -> details; details -> draft; draft -> skip [label="yes"]; draft -> prior [label="no"]; prior -> checkout; checkout -> diff; diff -> verify; verify -> write; write -> post; post -> approve; } ``` ### 1. Parse In...

Details

Author
DataRecce
Repository
DataRecce/recce
Created
2 years ago
Last Updated
today
Language
TypeScript
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category